/* =========================================================
   一覧画面共通デザイン (list-v2)
   recommended / new / vtuber / creator_list
   ========================================================= */

body.list-v2 {
    background:
        radial-gradient(1100px 520px at 12% -10%, rgba(210, 235, 255, 0.9), rgba(255,255,255,0) 60%),
        radial-gradient(900px 480px at 92% 8%, rgba(210, 245, 220, 0.55), rgba(255,255,255,0) 55%),
        linear-gradient(180deg, #eef6ff 0%, #f5f7fb 42%, #f7f8fa 100%) !important;
    background-size: auto !important;
    color: #2C3E50;
}

body.list-v2 .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 24px 64px;
    min-height: auto;
}

body.list-v2 .title,
body.list-v2 h2 {
    text-align: left;
    font-size: 24px;
    font-weight: 800;
    color: #1f2a37;
    margin: 0 0 18px;
    padding: 0 0 12px 10px;
    border-bottom: 2px solid rgba(76, 175, 80, 0.25);
    position: relative;
}

body.list-v2 .title::before,
body.list-v2 h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 4px;
    height: 1.1em;
    border-radius: 999px;
    background: #4CAF50;
}

body.list-v2 .sort-dropdown {
    margin: 0 0 14px;
    text-align: right;
}

body.list-v2 .sort-dropdown select {
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid rgba(44, 62, 80, 0.14);
    border-radius: 10px;
    background: #fff;
    color: #2C3E50;
    font-family: inherit;
    font-weight: 700;
    font-size: 13px;
}

body.list-v2 .icon-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    color: #5b6b7c;
}

body.list-v2 .icon-hint img {
    width: 18px;
    height: 18px;
}

body.list-v2 .card-container {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    max-width: none;
    margin: 0;
    justify-content: stretch;
}

/* カード見た目は creator_card_renew.css に集約 */
body.list-v2 .card {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

body.list-v2 .star-rating-review {
    font-size: 12px;
    color: #F5A623;
}

body.list-v2 .star-rating-review .empty-star {
    color: #D5DBE3;
}

@media screen and (max-width: 980px) {
    body.list-v2 .card-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media screen and (max-width: 768px) {
    body.list-v2 .container {
        padding: 18px 14px 48px;
    }

    body.list-v2 .title,
    body.list-v2 h2 {
        font-size: 20px;
    }

    body.list-v2 .card-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 480px) {
    body.list-v2 .card-container {
        grid-template-columns: 1fr;
    }
}
