/**
 * 口コミ集約アーカイブページのスタイル
 */

.archive-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.archive-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.archive-description {
    font-size: 1.1rem;
    color: #666;
}

/* グリッドレイアウト */
.review-aggregates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* カードスタイル */
.review-aggregate-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.review-aggregate-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.card-link {
    display: block;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
}

/* ロゴ */
.card-logo {
    height: 60px;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.card-logo img {
    max-height: 100%;
    max-width: 200px;
    object-fit: contain;
}

/* コンテンツ */
.card-content {
    flex: 1;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
    line-height: 1.4;
}

.company-name {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.75rem;
}

/* 評価情報 */
.rating-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.rating-score {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ff9800;
}

.review-count {
    font-size: 0.9rem;
    color: #666;
}

/* サブ商品タグ */
.product-type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #f5f5f5;
    color: #666;
    font-size: 0.8rem;
    border-radius: 4px;
    margin-top: 0.5rem;
}

/* 矢印 */
.card-arrow {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.5rem;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .review-aggregates-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .archive-title {
        font-size: 1.5rem;
    }
    
    .card-link {
        padding: 1rem;
    }
}