/* =========================================================
   VOTA
   MODEL PAGE
========================================================= */

.model-page {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: #fff;
    color: #111;
}

.model-page *,
.model-page *::before,
.model-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   HERO
========================================================= */

.model-hero {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
    background: #0d0d0d;
}

.model-hero-cover {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    transform: scale(1.03);
    filter: brightness(.48);
}

.model-hero-cover::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.62) 38%,
            rgba(0,0,0,.30) 72%,
            rgba(0,0,0,.42) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.78) 0%,
            rgba(0,0,0,.05) 65%
        );
}

.model-hero-cover-empty {
    background:
        radial-gradient(
            circle at 75% 25%,
            #343434 0,
            #1b1b1b 38%,
            #090909 100%
        );
}


/* =========================================================
   HERO INNER
========================================================= */

.model-hero-inner {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-end;

    gap: 46px;

    width: min(1260px, calc(100% - 84px));
    min-height: 600px;

    margin: 0 auto;
    padding: 90px 0 76px;
}


/* =========================================================
   PROFILE IMAGE
========================================================= */

.model-profile-image {
    position: relative;

    flex: 0 0 300px;

    width: 300px;
    height: 390px;

    overflow: hidden;

    background: #1b1b1b;

    border: 1px solid rgba(255,255,255,.22);

    box-shadow:
        0 30px 80px rgba(0,0,0,.48);

    isolation: isolate;
}

.model-profile-image::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    pointer-events: none;

    border: 1px solid rgba(255,255,255,.08);
}

.model-profile-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.model-profile-image:hover img {
    transform: scale(1.035);
}


/* =========================================================
   PROFILE INFO
========================================================= */

.model-profile-info {
    flex: 1;
    min-width: 0;

    padding-bottom: 6px;

    color: #fff;
}


.model-profile-name {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;

    gap: 16px;

    margin-bottom: 15px;
}

.model-profile-name h1 {
    max-width: 100%;

    margin: 0;

    color: #fff;

    font-size: clamp(48px, 5.5vw, 78px);
    line-height: .92;

    font-weight: 800;
    letter-spacing: -.055em;

    word-break: keep-all;
}

.model-profile-name span {
    color: rgba(255,255,255,.55);

    font-size: 16px;
    line-height: 1;

    font-weight: 500;
}


/* =========================================================
   META
========================================================= */

.model-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 0;

    margin-bottom: 23px;
}

.model-meta span {
    position: relative;

    color: rgba(255,255,255,.76);

    font-size: 13px;
    line-height: 1.4;
}

.model-meta span + span {
    margin-left: 13px;
    padding-left: 13px;
}

.model-meta span + span::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: rgba(255,255,255,.4);

    transform: translateY(-50%);
}


/* =========================================================
   SHORT DESCRIPTION
========================================================= */

.model-short-description {
    max-width: 650px;

    margin: 0 0 35px;

    color: rgba(255,255,255,.78);

    font-size: 16px;
    line-height: 1.75;

    letter-spacing: -.018em;

    word-break: keep-all;
}


/* =========================================================
   PROFILE ACTIONS
========================================================= */

.model-profile-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 17px;
}


/* =========================================================
   VOTE BUTTON
========================================================= */

.model-vote-button {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 230px;
    min-height: 56px;

    padding: 0 27px;

    border: 0;
    border-radius: 0;

    background: #fff;
    color: #111;

    font-family: inherit;
    font-size: 12px;
    font-weight: 800;

    letter-spacing: .035em;

    cursor: pointer;

    overflow: hidden;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.model-vote-button::after {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: rgba(255,255,255,.12);

    transition: left .35s ease;
}

.model-vote-button span {
    position: relative;
    z-index: 2;

    font-size: 18px;
}

.model-vote-button {
    z-index: 1;
}

.model-vote-button:hover {
    background: #ff2d7d;
    color: #fff;

    transform: translateY(-2px);
}

.model-vote-button:hover::after {
    left: 100%;
}


/* =========================================================
   SOCIAL
========================================================= */

.model-social {
    display: flex;
    align-items: center;
    gap: 7px;
}

.model-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 43px;
    height: 43px;

    padding: 0 11px;

    border: 1px solid rgba(255,255,255,.23);

    color: rgba(255,255,255,.78);

    font-size: 10px;
    line-height: 1;

    font-weight: 700;

    text-decoration: none;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.model-social a:hover {
    border-color: #fff;

    background: rgba(255,255,255,.1);

    color: #fff;

    transform: translateY(-2px);
}


/* =========================================================
   CONTENT
========================================================= */

.model-content {
    width: min(1260px, calc(100% - 84px));

    margin: 0 auto;

    padding: 112px 0 150px;
}


/* =========================================================
   SECTION
========================================================= */

.model-section {
    position: relative;

    margin-bottom: 115px;
}

.model-section:last-child {
    margin-bottom: 0;
}


.model-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 38px;
}


.model-section-eyebrow {
    display: block;

    margin-bottom: 11px;

    color: #999;

    font-size: 10px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: .18em;
}


.model-section-header h2 {
    margin: 0;

    color: #111;

    font-size: 39px;
    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -.045em;
}

.model-section-header p {
    margin: 13px 0 0;

    color: #888;

    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   RANKING
========================================================= */

.model-ranking-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border-top: 2px solid #111;
    border-bottom: 1px solid #ddd;
}


.model-ranking-card {
    position: relative;

    min-height: 255px;

    padding: 34px 31px 32px;

    background: #fff;

    border-right: 1px solid #e4e4e4;

    transition:
        background .25s ease,
        transform .25s ease;
}

.model-ranking-card:last-child {
    border-right: 0;
}

.model-ranking-card:hover {
    background: #f8f8f8;
}


/* label */

.model-ranking-label {
    display: block;

    margin-bottom: 31px;

    color: #888;

    font-size: 10px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: .16em;
}


/* rank */

.model-ranking-number {
    display: block;

    margin: 0 0 12px;

    color: #111;

    font-size: clamp(48px, 5vw, 70px);
    line-height: .86;

    font-weight: 800;

    letter-spacing: -.065em;
}


/* votes */

.model-ranking-votes {
    display: block;

    color: #777;

    font-size: 12px;
    line-height: 1.3;

    font-weight: 500;
}

.model-ranking-votes strong {
    color: #111;
}


/* change */

.model-ranking-change {
    position: absolute;

    left: 31px;
    bottom: 31px;

    display: inline-flex;
    align-items: center;

    min-height: 24px;

    font-size: 12px;
    line-height: 1;

    font-weight: 800;
}


/* 상승 */

.model-ranking-change.up {
    color: #168a55;
}


/* 하락 */

.model-ranking-change.down {
    color: #d84d4d;
}


/* 동일 */

.model-ranking-change.same {
    color: #aaa;
}


/* =========================================================
   SEASON CARD
========================================================= */

.model-ranking-card-season {
    background: #111;

    color: #fff;

    border-right: 0;
}

.model-ranking-card-season:hover {
    background: #171717;
}

.model-ranking-card-season .model-ranking-label {
    color: rgba(255,255,255,.48);
}

.model-ranking-card-season .model-ranking-number {
    color: #fff;
}

.model-ranking-card-season .model-ranking-votes {
    color: rgba(255,255,255,.68);
}

.model-ranking-card-season .model-ranking-change.up {
    color: #63dda0;
}

.model-ranking-card-season .model-ranking-change.down {
    color: #ff7777;
}

.model-ranking-card-season .model-ranking-change.same {
    color: rgba(255,255,255,.4);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.model-description {
    max-width: 920px;

    padding-top: 2px;

    color: #444;

    font-size: 16px;
    line-height: 2;

    letter-spacing: -.018em;

    word-break: keep-all;
}


/* =========================================================
   TAGS
========================================================= */

.model-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;
}


.model-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 39px;

    padding: 0 16px;

    border: 1px solid #ddd;

    background: #fff;

    color: #555;

    font-size: 12px;
    line-height: 1;

    font-weight: 600;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.model-tag:hover {
    border-color: #111;

    background: #111;

    color: #fff;
}


/* =========================================================
   GALLERY
========================================================= */

.model-gallery {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;
}


.model-gallery-item {
    position: relative;

    display: block;

    width: 100%;
    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #f1f1f1;

    text-decoration: none;
}

.model-gallery-item::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 65%,
            rgba(0,0,0,.22)
        );

    opacity: 0;

    transition: opacity .35s ease;
}

.model-gallery-item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .55s cubic-bezier(.2,.7,.2,1);
}

.model-gallery-item:hover img {
    transform: scale(1.045);
}

.model-gallery-item:hover::after {
    opacity: 1;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .model-hero-inner {
        width: calc(100% - 56px);

        gap: 32px;
    }

    .model-profile-image {
        flex-basis: 250px;

        width: 250px;
        height: 330px;
    }

    .model-profile-name h1 {
        font-size: 56px;
    }

    .model-content {
        width: calc(100% - 56px);
    }

    .model-ranking-card {
        padding-left: 24px;
        padding-right: 24px;
    }

    .model-ranking-change {
        left: 24px;
    }

}


/* =========================================================
   TABLET / SMALL
========================================================= */

@media (max-width: 900px) {

    .model-hero {
        min-height: 520px;
    }

    .model-hero-inner {
        min-height: 520px;

        padding-top: 65px;
        padding-bottom: 55px;
    }

    .model-profile-image {
        flex-basis: 210px;

        width: 210px;
        height: 285px;
    }

    .model-profile-name h1 {
        font-size: 48px;
    }

    .model-short-description {
        font-size: 14px;
    }

    .model-content {
        padding-top: 85px;
        padding-bottom: 110px;
    }

    .model-section {
        margin-bottom: 85px;
    }

    .model-section-header h2 {
        font-size: 33px;
    }

    .model-ranking-card {
        min-height: 225px;
    }

    .model-ranking-number {
        font-size: 52px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .model-page {
        width: 100%;
        overflow-x: hidden;
    }


    /* HERO */

    .model-hero {
        min-height: auto;
    }

    .model-hero-cover {
        min-height: 100%;
    }

    .model-hero-cover::after {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,.28) 0%,
                rgba(0,0,0,.62) 48%,
                rgba(0,0,0,.95) 100%
            );
    }


    .model-hero-inner {
        display: block;

        width: calc(100% - 36px);
        min-height: auto;

        padding: 90px 0 55px;
    }


    /* PROFILE IMAGE */

    .model-profile-image {
        width: 155px;
        height: 198px;

        margin-bottom: 28px;
    }


    /* NAME */

    .model-profile-name {
        display: block;

        margin-bottom: 14px;
    }

    .model-profile-name h1 {
        margin-bottom: 9px;

        font-size: 43px;
        line-height: .92;
    }

    .model-profile-name span {
        font-size: 13px;
    }


    /* META */

    .model-meta {
        margin-bottom: 19px;
    }

    .model-meta span {
        font-size: 12px;
    }


    /* DESCRIPTION */

    .model-short-description {
        max-width: 100%;

        margin-bottom: 27px;

        font-size: 13px;
        line-height: 1.7;
    }


    /* ACTION */

    .model-profile-actions {
        display: block;
    }


    .model-vote-button {
        width: 100%;
        min-width: 0;
        min-height: 54px;

        margin-bottom: 12px;
    }


    .model-social {
        display: flex;

        width: 100%;
    }

    .model-social a {
        flex: 1;

        min-width: 0;
        height: 41px;
    }


    /* CONTENT */

    .model-content {
        width: calc(100% - 36px);

        padding: 67px 0 85px;
    }


    /* SECTION */

    .model-section {
        margin-bottom: 72px;
    }


    .model-section-header {
        display: block;

        margin-bottom: 26px;
    }

    .model-section-eyebrow {
        margin-bottom: 9px;

        font-size: 9px;
    }

    .model-section-header h2 {
        font-size: 30px;
        line-height: 1.05;
    }

    .model-section-header p {
        margin-top: 10px;

        font-size: 12px;
    }


    /* RANKING */

    .model-ranking-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        border-top-width: 2px;
    }


    .model-ranking-card {
        min-height: 190px;

        padding: 22px 17px;
    }


    .model-ranking-card:nth-child(2) {
        border-right: 0;
    }

    .model-ranking-card:nth-child(1),
    .model-ranking-card:nth-child(2) {
        border-bottom: 1px solid #e4e4e4;
    }


    .model-ranking-label {
        margin-bottom: 23px;

        font-size: 9px;
    }


    .model-ranking-number {
        margin-bottom: 10px;

        font-size: 43px;
    }


    .model-ranking-votes {
        font-size: 10px;
    }


    .model-ranking-change {
        left: 17px;
        bottom: 19px;

        min-height: 20px;

        font-size: 11px;
    }


    /* SEASON */

    .model-ranking-card-season {
        border-bottom: 0;
    }


    /* DESCRIPTION */

    .model-description {
        font-size: 14px;
        line-height: 1.9;
    }


    /* TAGS */

    .model-tags {
        gap: 7px;
    }

    .model-tag {
        min-height: 35px;

        padding: 0 12px;

        font-size: 11px;
    }


    /* GALLERY */

    .model-gallery {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 8px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .model-hero-inner {
        width: calc(100% - 28px);

        padding-top: 75px;
    }

    .model-content {
        width: calc(100% - 28px);
    }


    .model-profile-image {
        width: 135px;
        height: 173px;

        margin-bottom: 24px;
    }


    .model-profile-name h1 {
        font-size: 38px;
    }


    .model-short-description {
        font-size: 12px;
    }


    .model-ranking-card {
        min-height: 175px;

        padding: 20px 14px;
    }


    .model-ranking-number {
        font-size: 39px;
    }


    .model-ranking-change {
        left: 14px;
        bottom: 17px;

        font-size: 10px;
    }


    .model-section-header h2 {
        font-size: 28px;
    }

}

/* =========================================================
   IMAGE MODAL
========================================================= */

.model-gallery-item {
    display: block;

    width: 100%;
    padding: 0;

    border: 0;

    font: inherit;

    cursor: zoom-in;
}

.model-image-modal {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    visibility: hidden;
    opacity: 0;

    pointer-events: none;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.model-image-modal.active {
    visibility: visible;
    opacity: 1;

    pointer-events: auto;
}


/* 딤드 */

.model-image-modal-bg {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.88);

    cursor: zoom-out;
}


/* 이미지 영역 */

.model-image-modal-inner {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    max-width: 92vw;
    max-height: 92vh;
}


/* 원본 이미지 */

.model-image-modal-image {
    display: block;

    max-width: 92vw;
    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 30px 100px rgba(0,0,0,.55);
}


/* 닫기 */

.model-image-modal-close {
    position: absolute;

    top: -48px;
    right: 0;

    width: 38px;
    height: 38px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #fff;

    font-family: Arial, sans-serif;
    font-size: 34px;
    font-weight: 300;
    line-height: 38px;

    cursor: pointer;

    opacity: .8;

    transition:
        opacity .2s ease,
        transform .2s ease;
}

.model-image-modal-close:hover {
    opacity: 1;

    transform: rotate(90deg);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .model-image-modal {
        padding: 20px;
    }

    .model-image-modal-inner {
        max-width: 100%;
        max-height: 90vh;
    }

    .model-image-modal-image {
        max-width: calc(100vw - 40px);
        max-height: 82vh;
    }

    .model-image-modal-close {
        top: -45px;
        right: 0;

        width: 34px;
        height: 34px;

        font-size: 30px;
    }

}


/* =========================================================
   GALLERY MORE
========================================================= */

.model-gallery-more {
    display: flex;

    justify-content: center;

    margin-top: 46px;
}


.model-gallery-more-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    min-width: 150px;
    height: 52px;

    padding: 0 22px;

    border: 1px solid #ddd;

    background: #fff;

    color: #111;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: .18em;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        opacity .25s ease;
}


.model-gallery-more-button span {
    font-size: 16px;

    line-height: 1;

    letter-spacing: 0;
}


.model-gallery-more-button:hover {
    border-color: #111;

    background: #111;

    color: #fff;
}


.model-gallery-more-button.is-loading {
    cursor: wait;

    opacity: .45;
}


.model-gallery-more-button:disabled {
    cursor: wait;

}

.model-ranking-change {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.model-ranking-change.up {
    color: #ff2d7d;
}

.model-ranking-change.down {
    color: #6bb7e8;
}

.model-ranking-change.same {
    color: #999;
}

/* =========================================================
   MODEL COMMENTS
========================================================= */

.model-comments-section {
    width: 100%;
}


/* =========================================================
   HEADER
========================================================= */

.model-comments-section .model-section-header {
    margin-bottom: 32px;
}


/* =========================================================
   COMMENT WRITE
========================================================= */

.model-comment-write {
    width: 100%;
    margin-bottom: 42px;

    border: 1px solid #e5e5e5;
    border-radius: 14px;

    background: #fff;

    overflow: hidden;
}


.model-comment-input {
    display: block;

    width: 100%;
    min-height: 120px;

    padding: 20px 22px;

    border: 0;
    outline: 0;

    background: #fff;

    color: #111;

    font-family: inherit;
    font-size: 14px;
    line-height: 1.7;

    resize: vertical;

    box-sizing: border-box;
}


.model-comment-input::placeholder {
    color: #aaa;
}


/* =========================================================
   WRITE BOTTOM
========================================================= */

.model-comment-write-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 13px 16px 13px 22px;

    border-top: 1px solid #eee;

    background: #fafafa;
}


.model-comment-write-bottom span {
    color: #aaa;

    font-size: 11px;
}


.model-comment-write-bottom button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 72px;
    height: 38px;

    padding: 0 18px;

    border: 0;
    border-radius: 20px;

    background: #ff2d7d;

    color: #fff;

    font-family: inherit;
    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


.model-comment-write-bottom button:hover {
    transform: translateY(-2px);
}


.model-comment-write-bottom button:disabled {
    opacity: 0.45;

    cursor: default;

    transform: none;
}


/* =========================================================
   LOGIN
========================================================= */

.model-comment-login {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 74px;

    margin-bottom: 42px;

    border: 1px solid #e5e5e5;
    border-radius: 14px;

    background: #fafafa;

    color: #777;

    font-family: inherit;
    font-size: 13px;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}


.model-comment-login:hover {
    border-color: #ff2d7d;

    background: #fff8fb;

    color: #111;
}


/* =========================================================
   COMMENT LIST
========================================================= */

.model-comments-list {
    width: 100%;
}


.model-comment {
    position: relative;

    padding: 24px 0;

    border-bottom: 1px solid #eee;
}


.model-comment:first-child {
    padding-top: 0;
}


.model-comment:last-child {
    border-bottom: 0;
}


/* =========================================================
   COMMENT HEAD
========================================================= */

.model-comment-head {
    display: flex;

    align-items: center;

    margin-bottom: 10px;
}


.model-comment-head strong {
    color: #111;

    font-size: 13px;
    font-weight: 700;
}


.model-comment-head time {
    margin-left: 10px;

    color: #aaa;

    font-size: 10px;
}


/* =========================================================
   COMMENT CONTENT
========================================================= */

.model-comment-content {
    margin: 0;

    padding-right: 70px;

    color: #555;

    font-size: 13px;
    line-height: 1.7;

    word-break: break-word;
}


/* =========================================================
   DELETE
========================================================= */

.model-comment-delete {
    position: absolute;

    top: 24px;
    right: 0;

    padding: 0;

    border: 0;

    background: transparent;

    color: #aaa;

    font-family: inherit;
    font-size: 10px;

    cursor: pointer;
}


.model-comment-delete:hover {
    color: #ff2d7d;
}


/* =========================================================
   EMPTY
========================================================= */

.model-comments-empty {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 140px;

    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;

    color: #aaa;

    font-size: 12px;
}


/* =========================================================
   MORE COMMENTS
========================================================= */

.model-comments-more {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 52px;

    margin-top: 18px;

    border: 1px solid #ddd;
    border-radius: 10px;

    background: #fff;

    color: #777;

    font-family: inherit;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.12em;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}


.model-comments-more:hover {
    border-color: #ff2d7d;

    background: #fff8fb;

    color: #111;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .model-comments-section .model-section-header {
        margin-bottom: 24px;
    }


    .model-comment-write {
        margin-bottom: 30px;

        border-radius: 12px;
    }


    .model-comment-input {
        min-height: 110px;

        padding: 16px;

        font-size: 13px;
    }


    .model-comment-write-bottom {
        padding: 11px 12px 11px 16px;
    }


    .model-comment-write-bottom button {
        min-width: 64px;
        height: 34px;

        padding: 0 15px;

        font-size: 11px;
    }


    .model-comment {
        padding: 20px 0;
    }


    .model-comment:first-child {
        padding-top: 0;
    }


    .model-comment-head {
        margin-bottom: 8px;
    }


    .model-comment-head strong {
        font-size: 12px;
    }


    .model-comment-head time {
        font-size: 9px;
    }


    .model-comment-content {
        padding-right: 45px;

        font-size: 12px;
        line-height: 1.65;
    }


    .model-comment-delete {
        top: 20px;

        font-size: 9px;
    }


    .model-comments-more {
        height: 48px;

        margin-top: 14px;
    }

}


/* =========================================================
   COMMUNITY
========================================================= */

.model-community-grid {

    display: grid;

     grid-template-columns: 1fr 1fr;

    gap: 60px;

    width: 100%;

    padding-top: 100px;

    border-top: 1px solid #111;

    box-sizing: border-box;

}

/* =========================================================
   COMMON
========================================================= */

.model-community-grid .model-section {

    width: 100%;

    min-width: 0;

    margin: 0;

    padding: 0;

    border: 0;
}


/* =========================================================
   HEADER
========================================================= */

.model-community-grid .model-section-header {

    margin-bottom: 32px;
}


.model-community-grid .model-section-eyebrow {

    display: block;

    margin-bottom: 12px;

    color: #888;

    font-size: 10px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: .16em;
}


.model-community-grid .model-section-header h2 {

    margin: 0;

    color: #111;

    font-size: clamp(34px, 3vw, 48px);

    line-height: .95;

    font-weight: 800;

    letter-spacing: -.055em;
}


.model-community-grid .model-section-header p {

    margin: 16px 0 0;

    color: #999;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   RANKING
========================================================= */

.model-ranking-grid {

    display: grid;

     grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    width: 100%;

    border: 1px solid #ddd;

    background: #ddd;
}


.model-ranking-card {
    position: relative;

    min-width: 0;

    height: 150px;

    padding: 22px;

    box-sizing: border-box;

    background: #fff;
}



.model-ranking-card-season {

    background: #111;

}


.model-ranking-label {

    display: block;

    margin-bottom: 25px;

    color: #999;

    font-size: 9px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: .16em;
}


.model-ranking-card-season .model-ranking-label {

    color: rgba(255,255,255,.45);
}


.model-ranking-number {

    display: block;

    margin: 0 0 13px;

    color: #111;

    font-size: clamp(48px, 5vw, 68px);

    line-height: .86;

    font-weight: 800;

    letter-spacing: -.065em;
}


.model-ranking-card-season .model-ranking-number {

    color: #fff;
}


.model-ranking-votes {

    display: block;

    color: #999;

    font-size: 11px;

    line-height: 1.4;
}


.model-ranking-votes strong {

    color: #111;

    font-weight: 700;
}


.model-ranking-card-season .model-ranking-votes {

    color: rgba(255,255,255,.55);
}


.model-ranking-card-season .model-ranking-votes strong {

    color: #fff;
}


.model-ranking-change {

    position: absolute;

    left: 30px;

    bottom: 30px;

    font-size: 11px;

    line-height: 1;

    font-weight: 800;
}


.model-ranking-change.up {

    color: #ff2d86;
}


.model-ranking-change.down {

    color: #5790d9;
}


.model-ranking-change.same {

    color: #aaa;
}


.model-ranking-card-season .model-ranking-change.up {

    color: #ff6fa9;
}


.model-ranking-card-season .model-ranking-change.down {

    color: #70a7ec;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .model-community-grid {

        display: block;

        padding-top: 65px;
    }


    .model-comments-section {

        margin-bottom: 70px !important;
    }


    .model-community-grid .model-section-header {

        margin-bottom: 25px;
    }


    .model-community-grid .model-section-header h2 {

        font-size: 34px;
    }


    .model-ranking-grid {

        grid-template-columns: 1fr 1fr;
    }


    .model-ranking-card {

        min-height: 210px;

        padding: 24px;
    }


    .model-ranking-number {

        font-size: 48px;
    }


    .model-ranking-change {

        left: 24px;

        bottom: 24px;
    }

}


.model-section {margin-top:80px;}


/* =========================================================
   CURRENT RANKING
========================================================= */

.model-ranking-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    width: 100%;

    border: 1px solid #ddd;

    background: #ddd;

}


.model-ranking-card {

    position: relative;

    min-width: 0;

    height: 220px;

    padding: 30px;

    box-sizing: border-box;

    background: #fff;

}


.model-ranking-card:nth-child(1),
.model-ranking-card:nth-child(2) {

    border-bottom: 1px solid #ddd;

}


.model-ranking-card:nth-child(odd) {

    border-right: 1px solid #ddd;

}


/* SEASON */

.model-ranking-card-season {

    background: #111;

}


.model-ranking-label {

    display: block;

    margin-bottom: 28px;

    color: #999;

    font-size: 9px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: .16em;

}


.model-ranking-card-season .model-ranking-label {

    color: rgba(255,255,255,.45);

}


.model-ranking-number {

    display: block;

    margin: 0 0 12px;

    color: #111;

    font-size: 58px;

    line-height: .9;

    font-weight: 800;

    letter-spacing: -.06em;

}


.model-ranking-card-season .model-ranking-number {

    color: #fff;

}


.model-ranking-votes {

    display: block;

    color: #999;

    font-size: 10px;

    line-height: 1.4;

}


.model-ranking-card-season .model-ranking-votes {

    color: rgba(255,255,255,.55);

}


/* 증감 */

.model-ranking-change {

    position: absolute;

    left: 30px;

    bottom: 30px;

    font-size: 10px;

    line-height: 1;

    font-weight: 800;

}


.model-ranking-change.up {

    color: #ff2d86;

}


.model-ranking-change.down {

    color: #5790d9;

}


.model-ranking-change.same {

    color: #aaa;

}


.model-ranking-card-season .model-ranking-change.up {

    color: #ff6fa9;

}


.model-ranking-card-season .model-ranking-change.down {

    color: #70a7ec;

}


.model-ranking-card-season .model-ranking-change.same {

    color: rgba(255,255,255,.4);

}

@media (max-width: 767px) {

    .model-community-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        gap: 0 !important;
    }

    .model-ranking-section {
        width: 100% !important;
    }

    .model-comments-section {
        width: 100% !important;
        margin-top: 60px !important;
    }

}

/* =========================================================
   COMMENT WRITE
========================================================= */

.model-comment-write {
    width: 100%;
    border: 1px solid #e1e1e1;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}


/* textarea */

.model-comment-write textarea {
    display: block;
    width: 100%;
    height: 65px;

    padding: 15px 15px;

    border: 0;
    outline: 0;
    resize: vertical;

    background: #fff;

    font-family: inherit;
    font-size: 14px;
    line-height: 1.7;
    color: #111;

    box-sizing: border-box;
}

.model-comment-write textarea::placeholder {
    color: #b8b8b8;
    opacity: 1;
}


/* 하단 */

.model-comment-write-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 58px;
    padding: 0 18px 0 24px;

    border-top: 1px solid #eeeeee;
    background: #fafafa;
}

.model-comment-write-bottom span {
    font-size: 11px;
    color: #a5a5a5;
    letter-spacing: .02em;
}


/* 등록 버튼 */

.model-comment-write-bottom button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 38px;

    padding: 0;

    border: 0;
    border-radius: 20px;

    background: #ff2d7d;
    color: #fff;

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
    transition: opacity .2s ease;
}

.model-comment-write-bottom button:hover {
    opacity: .85;
}

.model-comment-write-bottom button:disabled {
    opacity: .4;
    cursor: default;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .model-comment-write {
        border-radius: 12px;
    }

    .model-comment-write textarea {
        height: 125px;
        padding: 18px;
        font-size: 13px;
    }

    .model-comment-write-bottom {
        min-height: 54px;
        padding: 0 14px 0 18px;
    }

    .model-comment-write-bottom button {
        width: 58px;
        height: 34px;
        font-size: 12px;
    }


}


/* =========================================================
   ABOUT
========================================================= */

.model-about {
    width: 100%;
    padding: 70px 0 75px;

    border-top: 1px solid #111;
    border-bottom: 1px solid #e5e5e5;
}

.model-about-label {
    margin-bottom: 14px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    color: #888;
}

.model-about-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
}

.model-about-content h2 {
    flex: 0 0 42%;

    margin: 0;

    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -.04em;
    color: #111;
}

.model-description {
    flex: 1;

    max-width: 650px;

    padding-top: 5px;

    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.model-description br {
    display: block;
    content: "";
    margin-bottom: 6px;
}

.model-comment-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    margin-left: 8px;
    padding: 0;

    border: 0;
    background: transparent;

    color: #aaa;

    cursor: pointer;
}

.model-comment-delete svg {
    width: 15px;
    height: 15px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.model-comment-delete:hover {
    color: #111;
}

.model-comments-list {
    max-height: 260px;
    overflow-y: auto;
    padding-right: 8px;

    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

.model-comments-list::-webkit-scrollbar {
    width: 4px;
}

.model-comments-list::-webkit-scrollbar-track {
    background: transparent;
}

.model-comments-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.model-comments-list::-webkit-scrollbar-thumb:hover {
    background: #999;
}


@media (max-width: 767px) {

    .model-comments-list {
        max-height: 250px;
        padding-right: 5px;
    }

}