/* =========================================================
   CREATOR
========================================================= */

.creator-page {
    width: 100%;
    overflow: hidden;
    background: #fff;
    color: #111;
}

.creator-page * {
    box-sizing: border-box;
}


/* =========================================================
   COMMON
========================================================= */

.creator-eyebrow {
    display: block;
    margin-bottom: 22px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    line-height: 1.4;
    color: #777;
}

.creator-section-inner {
    width: min(1400px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.creator-hero {
    position: relative;
    min-height: 760px;
    padding: 90px 0 100px;

    background: #f5f4f1;
}

.creator-hero-inner {
    width: min(1400px, calc(100% - 80px));
    min-height: 570px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 70px;
}


/* =========================================================
   HERO COPY
========================================================= */

.creator-hero-copy {
    position: relative;
    z-index: 5;

    flex: 0 0 42%;
}

.creator-hero-title {
    margin: 0;

    font-size: clamp(54px, 5.5vw, 88px);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: .95;
}

.creator-hero-title em {
    display: inline-block;

    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -.045em;
}

.creator-hero-description {
    margin: 34px 0 38px;

    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #666;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.creator-primary-button {
    width: 230px;
    height: 58px;

    padding: 0 22px 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    background: #111;
    color: #fff;

    text-decoration: none;

    transition:
        background .25s ease,
        transform .25s ease;
}

.creator-primary-button span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
}

.creator-primary-button i {
    font-size: 18px;
    font-style: normal;
    line-height: 1;

    transition: transform .25s ease;
}

.creator-primary-button:hover {
    background: #333;
    transform: translateY(-2px);
}

.creator-primary-button:hover i {
    transform: translateX(5px);
}

.creator-login-guide {
    margin: 15px 0 0;

    font-size: 12px;
    color: #999;
}

.creator-login-guide a {
    margin-left: 5px;

    color: #222;
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* =========================================================
   HERO MODEL AREA
========================================================= */

.creator-hero-models {
    position: relative;

    flex: 1;
    min-width: 0;

    height: 570px;
}


/* =========================================================
   MODEL CARD
========================================================= */

.creator-hero-model {
    position: absolute;

    display: block;

    overflow: hidden;

    background: #ddd;

    color: #111;
    text-decoration: none;
}

.creator-hero-model-image {
    position: absolute;
    inset: 0;

    overflow: hidden;
}

.creator-hero-model-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.creator-hero-model:hover
.creator-hero-model-image img {
    transform: scale(1.04);
}


/* =========================================================
   MODEL INFO
========================================================= */

.creator-hero-model-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    padding: 55px 18px 18px;

    color: #fff;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0),
            rgba(0,0,0,.65)
        );
}

.creator-hero-model-info strong {
    display: block;

    margin-bottom: 4px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: .05em;
}

.creator-hero-model-info span {
    display: block;

    font-size: 10px;
    color: rgba(255,255,255,.75);
}


/* =========================================================
   COLLAGE POSITIONS
========================================================= */

/*
 * 01 : MAIN
 */

.creator-hero-model-1 {
    top: 0;
    left: 10%;

    width: 42%;
    height: 570px;

    z-index: 3;
}


/*
 * 02 : SIDE
 */

.creator-hero-model-2 {
    top: 60px;
    right: 3%;

    width: 29%;
    height: 390px;

    z-index: 2;
}


/*
 * 03
 */

.creator-hero-model-3 {
    left: 0;
    bottom: 0;

    width: 24%;
    height: 210px;

    z-index: 4;
}


/*
 * 04
 */

.creator-hero-model-4 {
    right: 25%;
    bottom: 0;

    width: 21%;
    height: 180px;

    z-index: 4;
}


/*
 * 05
 */

.creator-hero-model-5 {
    right: 0;
    bottom: 0;

    width: 22%;
    height: 150px;

    z-index: 4;
}


/* =========================================================
   HERO DECORATIVE TEXT
========================================================= */

.creator-hero-side-copy {
    position: absolute;

    right: 0;
    top: 5px;

    z-index: 5;

    pointer-events: none;
}

.creator-hero-side-copy span {
    display: block;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 13px;
    font-style: italic;
    line-height: 1.2;

    color: #777;

    text-align: right;
}


.creator-hero-vertical-copy {
    position: absolute;

    left: -32px;
    top: 50%;

    z-index: 5;

    display: flex;
    flex-direction: column;
    gap: 4px;

    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;

    pointer-events: none;
}

.creator-hero-vertical-copy span {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .18em;
    color: #aaa;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.creator-how {
    padding: 150px 0 160px;

    background: #fff;
}

.creator-section-heading {
    max-width: 700px;

    margin-bottom: 80px;
}

.creator-section-heading h2 {
    margin: 0;

    font-size: clamp(34px, 4vw, 58px);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: 1.15;
}


/* =========================================================
   STEPS
========================================================= */

.creator-steps {
    display: flex;
    align-items: stretch;
}

.creator-step {
    flex: 1;

    min-height: 230px;

    padding: 0 45px;

    border-left: 1px solid #ddd;
}

.creator-step:first-child {
    padding-left: 0;
    border-left: 0;
}

.creator-step-number {
    margin-bottom: 45px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;

    color: #999;
}

.creator-step-content h3 {
    margin: 0 0 20px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
}

.creator-step-content p {
    margin: 0;

    font-size: 14px;
    line-height: 1.8;
    color: #777;
}

.creator-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 45px;

    font-size: 22px;
    color: #bbb;
}


/* =========================================================
   FEATURE
========================================================= */

.creator-feature {
    display: flex;

    min-height: 650px;

    background: #f4f3f0;
}

.creator-feature-image {
    width: 50%;

    min-height: 650px;

    overflow: hidden;
}

.creator-feature-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.creator-feature-content {
    width: 50%;

    padding: 100px 8%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.creator-feature-content h2 {
    margin: 0 0 35px;

    font-size: clamp(38px, 4vw, 62px);
    font-weight: 500;
    letter-spacing: -.05em;
    line-height: 1.1;
}

.creator-feature-content p {
    margin: 0;

    font-size: 15px;
    line-height: 1.9;
    color: #777;
}


/* =========================================================
   FINAL CTA
========================================================= */

.creator-final-cta {
    padding: 170px 20px;

    background: #111;
    color: #fff;

    text-align: center;
}

.creator-final-cta .creator-eyebrow {
    color: #888;
}

.creator-final-cta-inner {
    max-width: 900px;

    margin: 0 auto;
}

.creator-final-cta h2 {
    margin: 0;

    font-size: clamp(44px, 5vw, 76px);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: 1.08;
}

.creator-final-cta p {
    margin: 30px 0 42px;

    font-size: 14px;
    line-height: 1.7;

    color: #999;
}

.creator-final-button {
    width: 240px;
    height: 60px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    background: #fff;
    color: #111;

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease;
}

.creator-final-button span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
}

.creator-final-button i {
    font-size: 18px;
    font-style: normal;
    transition: transform .25s ease;
}

.creator-final-button:hover {
    transform: translateY(-3px);
}

.creator-final-button:hover i {
    transform: translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .creator-hero-inner {
        gap: 40px;
    }

    .creator-hero-copy {
        flex-basis: 40%;
    }

    .creator-hero-model-1 {
        left: 5%;
        width: 45%;
    }

    .creator-hero-model-2 {
        right: 0;
        width: 32%;
    }

    .creator-hero-model-3 {
        width: 27%;
    }

    .creator-hero-model-4 {
        right: 27%;
    }

    .creator-hero-model-5 {
        width: 25%;
    }

    .creator-step {
        padding: 0 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {


    /* -----------------------------------------------------
       COMMON
    ----------------------------------------------------- */

    .creator-section-inner {
        width: calc(100% - 40px);
    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .creator-hero {
        min-height: auto;

        padding: 65px 0 55px;
    }

    .creator-hero-inner {
        width: calc(100% - 40px);

        min-height: auto;

        display: block;
    }


    .creator-hero-copy {
        width: 100%;

        margin-bottom: 55px;
    }

    .creator-eyebrow {
        margin-bottom: 17px;

        font-size: 9px;
    }

    .creator-hero-title {
        font-size: clamp(48px, 14vw, 72px);
        line-height: .94;
    }

    .creator-hero-description {
        margin: 25px 0 30px;

        font-size: 14px;
        line-height: 1.75;
    }

    .creator-primary-button {
        width: 210px;
        height: 54px;
    }


    /* -----------------------------------------------------
       HERO COLLAGE
    ----------------------------------------------------- */

    .creator-hero-models {
        width: 100%;

        height: 500px;
    }


    /*
     * 모바일에서는 5장 콜라주를
     * 화면 안쪽에 확실히 들어오도록 재배치
     */

    .creator-hero-model-1 {
        top: 0;
        left: 0;

        width: 57%;
        height: 310px;
    }

    .creator-hero-model-2 {
        top: 35px;
        right: 0;

        width: 37%;
        height: 260px;
    }

    .creator-hero-model-3 {
        left: 0;
        bottom: 0;

        width: 31%;
        height: 160px;
    }

    .creator-hero-model-4 {
        right: 35%;
        bottom: 0;

        width: 29%;
        height: 145px;
    }

    .creator-hero-model-5 {
        right: 0;
        bottom: 0;

        width: 31%;
        height: 130px;
    }


    .creator-hero-model-info {
        padding: 35px 12px 12px;
    }

    .creator-hero-model-info strong {
        font-size: 10px;
    }

    .creator-hero-model-info span {
        font-size: 8px;
    }


    .creator-hero-side-copy {
        right: 0;
        top: -20px;
    }

    .creator-hero-side-copy span {
        font-size: 10px;
    }

    .creator-hero-vertical-copy {
        display: none;
    }


    /* -----------------------------------------------------
       HOW IT WORKS
    ----------------------------------------------------- */

    .creator-how {
        padding: 90px 0;
    }

    .creator-section-heading {
        margin-bottom: 55px;
    }

    .creator-section-heading h2 {
        font-size: 34px;
        line-height: 1.2;
    }

    .creator-steps {
        display: block;
    }

    .creator-step {
        min-height: auto;

        padding: 30px 0 35px;

        border-left: 0;
        border-top: 1px solid #ddd;
    }

    .creator-step:first-child {
        padding-top: 0;

        border-top: 0;
    }

    .creator-step-number {
        margin-bottom: 25px;
    }

    .creator-step-content h3 {
        margin-bottom: 12px;
    }

    .creator-step-content p {
        font-size: 13px;
    }

    .creator-step-arrow {
        display: none;
    }


    /* -----------------------------------------------------
       FEATURE
    ----------------------------------------------------- */

    .creator-feature {
        display: block;

        min-height: auto;
    }

    .creator-feature-image {
        width: 100%;

        height: 420px;
        min-height: 0;
    }

    .creator-feature-content {
        width: 100%;

        padding: 75px 20px 85px;
    }

    .creator-feature-content h2 {
        margin-bottom: 25px;

        font-size: 38px;
    }

    .creator-feature-content p {
        font-size: 13px;
        line-height: 1.8;
    }


    /* -----------------------------------------------------
       FINAL CTA
    ----------------------------------------------------- */

    .creator-final-cta {
        padding: 100px 20px;
    }

    .creator-final-cta h2 {
        font-size: 42px;
    }

    .creator-final-cta p {
        margin: 25px 0 35px;

        font-size: 13px;
    }

    .creator-final-button {
        width: 220px;
        height: 55px;
    }

}

/* =========================================================
   CREATOR INTERACTION
========================================================= */


/* =========================================================
   HERO INITIAL MOTION
========================================================= */

.creator-hero-copy {
    opacity: 0;
    transform: translateY(25px);

    animation:
        creatorHeroCopyIn .8s cubic-bezier(.2,.7,.2,1) .1s forwards;
}

.creator-hero-model {
    opacity: 0;
    transform: translateY(30px);
}

.creator-hero-model-1 {
    animation:
        creatorHeroModelIn .8s cubic-bezier(.2,.7,.2,1) .2s forwards;
}

.creator-hero-model-2 {
    animation:
        creatorHeroModelIn .8s cubic-bezier(.2,.7,.2,1) .32s forwards;
}

.creator-hero-model-3 {
    animation:
        creatorHeroModelIn .8s cubic-bezier(.2,.7,.2,1) .44s forwards;
}

.creator-hero-model-4 {
    animation:
        creatorHeroModelIn .8s cubic-bezier(.2,.7,.2,1) .56s forwards;
}

.creator-hero-model-5 {
    animation:
        creatorHeroModelIn .8s cubic-bezier(.2,.7,.2,1) .68s forwards;
}


@keyframes creatorHeroCopyIn {

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes creatorHeroModelIn {

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   MODEL HOVER
========================================================= */

.creator-hero-model {
    transition:
        transform .5s cubic-bezier(.2,.7,.2,1),
        box-shadow .5s ease;
}

.creator-hero-model {
    position: absolute;
    display: block;
    overflow: hidden;

    background: #ddd;
    color: #111;
    text-decoration: none;

    transition:
        box-shadow .5s ease;
}

.creator-hero-model:hover {
    z-index: 20;
    box-shadow:
        0 25px 50px rgba(0,0,0,.15);
}

.creator-hero-model-image img {
    transition:
        transform .8s cubic-bezier(.2,.7,.2,1),
        filter .5s ease;
}

.creator-hero-model:hover
.creator-hero-model-image img {
    transform: scale(1.07);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.creator-hero-model-image::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0) 45%,
            rgba(0,0,0,.65) 100%
        );

    opacity: .55;

    transition:
        opacity .5s ease;
}

.creator-hero-model:hover
.creator-hero-model-image::after {
    opacity: .85;
}


/* =========================================================
   MODEL INFO
========================================================= */

.creator-hero-model-info {
    transform: translateY(10px);

    opacity: .75;

    transition:
        transform .5s cubic-bezier(.2,.7,.2,1),
        opacity .5s ease;
}

.creator-hero-model:hover
.creator-hero-model-info {
    transform: translateY(0);

    opacity: 1;
}


/* =========================================================
   MODEL INFO ARROW
========================================================= */

.creator-hero-model-info::after {
    content: "↗";

    position: absolute;

    right: 18px;
    bottom: 18px;

    font-size: 15px;

    opacity: 0;
    transform: translate(-5px, 5px);

    transition:
        opacity .35s ease,
        transform .35s ease;
}

.creator-hero-model:hover
.creator-hero-model-info::after {
    opacity: 1;
    transform: translate(0, 0);
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.creator-primary-button {
    position: relative;

    overflow: hidden;
}

.creator-primary-button::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: rgba(255,255,255,.08);

    transition:
        left .45s cubic-bezier(.2,.7,.2,1);
}

.creator-primary-button:hover::before {
    left: 100%;
}


/* =========================================================
   SIDE COPY
========================================================= */

.creator-hero-side-copy {
    transition:
        transform .7s cubic-bezier(.2,.7,.2,1);
}

.creator-hero-models:hover
.creator-hero-side-copy {
    transform: translateX(-8px);
}


/* =========================================================
   VERTICAL COPY
========================================================= */

.creator-hero-vertical-copy {
    transition:
        opacity .5s ease;
}

.creator-hero-models:hover
.creator-hero-vertical-copy {
    opacity: .5;
}


/* =========================================================
   STEP HOVER
========================================================= */

.creator-step {
    position: relative;

    transition:
        transform .4s ease;
}

.creator-step::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #111;

    transition:
        width .45s cubic-bezier(.2,.7,.2,1);
}

.creator-step:hover {
    transform: translateY(-5px);
}

.creator-step:hover::after {
    width: 70px;
}

.creator-step-number {
    transition:
        color .3s ease;
}

.creator-step:hover
.creator-step-number {
    color: #111;
}

.creator-step-arrow {
    transition:
        transform .4s ease,
        color .4s ease;
}

.creator-steps:hover
.creator-step-arrow {
    color: #111;
}

.creator-step:hover
+ .creator-step-arrow {
    transform: translateX(7px);
}


/* =========================================================
   FEATURE IMAGE
========================================================= */

.creator-feature-image {
    overflow: hidden;
}

.creator-feature-image img {
    transform: scale(1.01);

    transition:
        transform 1.2s cubic-bezier(.2,.7,.2,1);
}

.creator-feature:hover
.creator-feature-image img {
    transform: scale(1.06);
}


/* =========================================================
   FEATURE CONTENT
========================================================= */

.creator-feature-content {
    transition:
        transform .7s cubic-bezier(.2,.7,.2,1);
}

.creator-feature:hover
.creator-feature-content {
    transform: translateX(8px);
}


/* =========================================================
   FINAL CTA
========================================================= */

.creator-final-cta {
    position: relative;

    overflow: hidden;
}

.creator-final-cta::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: 50%;
    top: 50%;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;

    transform:
        translate(-50%, -50%)
        scale(.8);

    transition:
        transform 1.2s cubic-bezier(.2,.7,.2,1),
        opacity 1.2s ease;

    opacity: .4;

    pointer-events: none;
}

.creator-final-cta:hover::before {
    transform:
        translate(-50%, -50%)
        scale(1.35);

    opacity: .8;
}

.creator-final-cta-inner {
    position: relative;
    z-index: 2;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .creator-hero-copy,
    .creator-hero-model {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .creator-hero-model,
    .creator-hero-model-image img,
    .creator-step,
    .creator-feature-image img,
    .creator-feature-content {
        transition: none;
    }

}







/* =========================================================
   CREATOR LAYOUT
========================================================= */

.creator-layout {
    display: flex;
    width: 100%;
    min-height: calc(100vh - 80px);
    background: #fff;
}


/* =========================================================
   CREATOR SIDEBAR
========================================================= */

.creator-sidebar {
    position: sticky;
    top: 80px;

    width: 250px;
    min-width: 250px;
    height: calc(100vh - 80px);

    padding: 32px 22px;

    display: flex;
    flex-direction: column;

    background: #f8f8f7;
    border-right: 1px solid #e9e9e7;

    overflow-y: auto;
}


/* =========================================================
   CREATE MODEL BUTTON
========================================================= */

.creator-create-button {
    position: relative;

    width: 100%;
    height: 52px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    gap: 11px;

    box-sizing: border-box;

    background: #111;
    color: #fff;

    text-decoration: none;

    transition:
        background .25s ease,
        transform .25s ease;
}

.creator-create-button span {
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
}

.creator-create-button strong {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
}

.creator-create-button:hover {
    background: #292929;
    transform: translateY(-1px);
}


/* =========================================================
   SIDE NAV
========================================================= */

.creator-side-nav {
    margin-top: 34px;
}


.creator-side-nav a {
    position: relative;

    height: 48px;

    padding: 0 15px;

    display: flex;
    align-items: center;
    gap: 14px;

    box-sizing: border-box;

    color: #888;
    text-decoration: none;

    font-size: 12px;
    font-weight: 500;

    transition:
        color .2s ease,
        background .2s ease;
}


.creator-side-nav a:hover {
    color: #111;
    background: rgba(255,255,255,.65);
}


.creator-side-nav a.active {
    color: #111;

    background: #fff;

    font-weight: 700;
}


/* active left line */

.creator-side-nav a.active::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 2px;
    height: 20px;

    background: #111;

    transform: translateY(-50%);
}


/* =========================================================
   FONT AWESOME ICON
========================================================= */

.creator-nav-icon {
    position: relative;

    width: 18px;
    height: 18px;

    flex: 0 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 0;
    color: #a2a2a2;
}


/*
 * 현재 HTML의 문자
 * ▣ ◇ ▧ ♡ ☆ ⚙
 * 는 숨기고 CSS에서 아이콘 출력
 */

.creator-nav-icon::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    font-size: 14px;

    line-height: 1;

    transition:
        color .2s ease,
        transform .2s ease;
}


/* Dashboard */

.creator-side-nav a:nth-child(1)
.creator-nav-icon::before {
    content: "\f00a";
}


/* My Models */

.creator-side-nav a:nth-child(2)
.creator-nav-icon::before {
    content: "\f007";
}


/* Image */

.creator-side-nav a:nth-child(3)
.creator-nav-icon::before {
    content: "\f03e";
}


/* Votes */

.creator-side-nav a:nth-child(4)
.creator-nav-icon::before {
    content: "\f201";
}


/* Favorites */

.creator-side-nav a:nth-child(5)
.creator-nav-icon::before {
    content: "\f004";
}


/* Settings */

.creator-side-nav a:nth-child(6)
.creator-nav-icon::before {
    content: "\f013";
}


/* hover / active */

.creator-side-nav a:hover
.creator-nav-icon::before,

.creator-side-nav a.active
.creator-nav-icon::before {
    color: #111;
}


/* =========================================================
   CREATE BUTTON PLUS
========================================================= */

.creator-create-button span {
    font-family: Arial, sans-serif;
}


/* =========================================================
   SIDEBAR DIVIDER
========================================================= */

.creator-sidebar-help {
    margin-top: auto;

    padding: 28px 14px 4px;

    border-top: 1px solid #dededb;
}


.creator-sidebar-help strong {
    display: block;

    margin-bottom: 10px;

    color: #333;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
}


.creator-sidebar-help p {
    margin: 0 0 18px;

    color: #999;

    font-size: 11px;
    line-height: 1.7;
}


.creator-sidebar-help a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #555;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;

    transition: color .2s ease;
}


.creator-sidebar-help a span {
    font-size: 16px;

    transition:
        transform .25s ease;
}


.creator-sidebar-help a:hover {
    color: #111;
}


.creator-sidebar-help a:hover span {
    transform: translateX(4px);
}


/* =========================================================
   CONTENT
========================================================= */

.creator-content {
    flex: 1;
    min-width: 0;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .creator-layout {
        display: block;
        min-height: auto;
    }


    .creator-sidebar {
        position: relative;
        top: auto;

        width: 100%;
        min-width: 0;
        height: auto;

        padding: 15px 20px;

        border-right: 0;
        border-bottom: 1px solid #e8e8e6;

        overflow: visible;
    }


    .creator-create-button {
        height: 50px;
    }


    .creator-side-nav {
        margin-top: 12px;

        display: flex;

        overflow-x: auto;
        overflow-y: hidden;

        margin-right: -20px;
        padding-right: 20px;
    }


    .creator-side-nav a {
        flex: 0 0 auto;

        height: 44px;
        padding: 0 14px;

        white-space: nowrap;
    }


    .creator-side-nav a.active::before {
        top: auto;
        bottom: 0;

        left: 50%;

        width: 18px;
        height: 2px;

        transform: translateX(-50%);
    }


    .creator-sidebar-help {
        display: none;
    }

}


/* =========================================================
   CREATOR
========================================================= */

.creator-layout {
    display: flex;
    width: 100%;
    min-height: calc(100vh - 80px);
    background: #fff;
}


/* =========================================================
   SIDEBAR
========================================================= */

.creator-sidebar {
    position: sticky;
    top: 80px;

    width: 250px;
    min-width: 250px;
    height: calc(100vh - 80px);

    padding: 32px 22px;

    display: flex;
    flex-direction: column;

    box-sizing: border-box;

    background: #f7f7f5;
    border-right: 1px solid #e8e8e5;

    overflow-y: auto;
}


/* =========================================================
   CREATE BUTTON
========================================================= */

.creator-create-button {
    width: 100%;
    height: 52px;

    padding: 0 17px;

    display: flex;
    align-items: center;
    gap: 11px;

    box-sizing: border-box;

    background: #111;
    color: #fff;

    text-decoration: none;

    transition:
        background .25s ease,
        transform .25s ease;
}

.creator-create-button:hover {
    background: #292929;
    transform: translateY(-1px);
}

.creator-create-button span {
    font-family: Arial, sans-serif;
    font-size: 21px;
    font-weight: 300;
    line-height: 1;
}

.creator-create-button strong {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
}


/* =========================================================
   SIDE NAV
========================================================= */

.creator-side-nav {
    margin-top: 32px;
}

.creator-side-nav a {
    position: relative;

    width: 100%;
    height: 48px;

    padding: 0 15px;

    display: flex;
    align-items: center;
    gap: 14px;

    box-sizing: border-box;

    color: #858585;
    text-decoration: none;

    font-size: 12px;
    font-weight: 500;

    transition:
        color .2s ease,
        background .2s ease;
}

.creator-side-nav a:hover {
    color: #111;
    background: rgba(255,255,255,.65);
}

.creator-side-nav a.active {
    color: #111;
    background: #fff;
    font-weight: 700;
}

.creator-side-nav a.active::before {
    content: "";

    position: absolute;
    left: 0;
    top: 50%;

    width: 2px;
    height: 20px;

    background: #111;

    transform: translateY(-50%);
}


/* =========================================================
   FONT AWESOME ICON
========================================================= */

.creator-nav-icon {
    width: 18px;
    height: 18px;

    flex: 0 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 0;
    color: #a3a3a3;
}

.creator-nav-icon::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    line-height: 1;

    transition: color .2s ease;
}


/* Dashboard */

.creator-side-nav a:nth-child(1) .creator-nav-icon::before {
    content: "\f00a";
}


/* My Model */

.creator-side-nav a:nth-child(2) .creator-nav-icon::before {
    content: "\f007";
}


/* Images */

.creator-side-nav a:nth-child(3) .creator-nav-icon::before {
    content: "\f03e";
}


/* Votes */

.creator-side-nav a:nth-child(4) .creator-nav-icon::before {
    content: "\f201";
}


.creator-side-nav a:hover .creator-nav-icon::before,
.creator-side-nav a.active .creator-nav-icon::before {
    color: #111;
}


/* =========================================================
   SIDEBAR HELP
========================================================= */

.creator-sidebar-help {
    margin-top: auto;

    padding: 28px 14px 4px;

    border-top: 1px solid #dededb;
}

.creator-sidebar-help strong {
    display: block;

    margin-bottom: 10px;

    color: #333;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
}

.creator-sidebar-help p {
    margin: 0 0 18px;

    color: #999;

    font-size: 11px;
    line-height: 1.7;
}

.creator-sidebar-help a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #555;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;

    transition: color .2s ease;
}

.creator-sidebar-help a:hover {
    color: #111;
}

.creator-sidebar-help a span {
    font-size: 16px;

    transition: transform .25s ease;
}

.creator-sidebar-help a:hover span {
    transform: translateX(4px);
}


/* =========================================================
   CONTENT
========================================================= */

.creator-content {
    flex: 1;
    min-width: 0;

    background: #fff;
}


/* =========================================================
   DASHBOARD
========================================================= */

.creator-dashboard {
    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
    padding: 60px 60px 100px;

    box-sizing: border-box;
}


/* =========================================================
   DASHBOARD HEADER
========================================================= */

.creator-dashboard-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 38px;
}

.creator-dashboard-heading {
    min-width: 0;
}

.creator-dashboard-eyebrow {
    display: block;

    margin-bottom: 12px;

    color: #999;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
}

.creator-dashboard-heading h1 {
    margin: 0;

    color: #111;

    font-size: 32px;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1.2;
}

.creator-dashboard-heading p {
    margin: 12px 0 0;

    color: #888;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   CREATE BUTTON
========================================================= */

.creator-dashboard-create {
    height: 48px;

    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    flex: 0 0 auto;

    box-sizing: border-box;

    background: #111;
    color: #fff;

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background .25s ease,
        transform .25s ease;
}

.creator-dashboard-create:hover {
    background: #292929;
    transform: translateY(-2px);
}

.creator-dashboard-create span {
    font-size: 18px;
    font-weight: 300;
}


/* =========================================================
   SEASON BAR
========================================================= */

.creator-season-bar {
    min-height: 66px;

    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    box-sizing: border-box;

    background: #f7f7f5;
    border: 1px solid #ededeb;

    margin-bottom: 16px;
}

.creator-season-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.creator-season-label {
    color: #999;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
}

.creator-season-info strong {
    color: #222;

    font-size: 13px;
    font-weight: 700;
}

.creator-season-date {
    color: #999;

    font-size: 11px;
}


/* =========================================================
   STATS
========================================================= */

.creator-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 16px;

    margin-bottom: 16px;
}

.creator-stat-card {
    min-height: 145px;

    padding: 22px;

    box-sizing: border-box;

    background: #fff;
    border: 1px solid #e8e8e6;

    transition:
        transform .25s ease,
        border-color .25s ease;
}

.creator-stat-card:hover {
    transform: translateY(-3px);
    border-color: #d7d7d4;
}

.creator-stat-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.creator-stat-label {
    color: #999;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
}

.creator-stat-icon {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #777;

    background: #f6f6f4;

    font-size: 12px;
}

.creator-stat-number {
    display: block;

    margin-top: 20px;

    color: #111;

    font-size: 30px;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1;
}

.creator-stat-description {
    display: block;

    margin-top: 9px;

    color: #aaa;

    font-size: 10px;
}


/* =========================================================
   MAIN GRID
========================================================= */

.creator-dashboard-grid {
    display: grid;

    grid-template-columns: minmax(0, 1.45fr) minmax(320px, .8fr);

    gap: 16px;

    margin-bottom: 16px;
}


/* =========================================================
   PANEL
========================================================= */

.creator-dashboard-panel {
    background: #fff;
    border: 1px solid #e8e8e6;

    box-sizing: border-box;
}

.creator-panel-header {
    min-height: 82px;

    padding: 20px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    box-sizing: border-box;

    border-bottom: 1px solid #eeeeec;
}

.creator-panel-eyebrow {
    display: block;

    margin-bottom: 7px;

    color: #aaa;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
}

.creator-panel-header h2 {
    margin: 0;

    color: #111;

    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.03em;
}

.creator-panel-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #777;

    font-size: 10px;
    font-weight: 600;

    text-decoration: none;
}

.creator-panel-more:hover {
    color: #111;
}

.creator-panel-more span {
    font-size: 14px;

    transition: transform .2s ease;
}

.creator-panel-more:hover span {
    transform: translateX(4px);
}


/* =========================================================
   MODEL LIST
========================================================= */

.creator-model-list {
    padding: 8px 0;
}

.creator-model-item {
    position: relative;

    min-height: 86px;

    padding: 12px 24px;

    display: flex;
    align-items: center;
    gap: 15px;

    box-sizing: border-box;

    color: #111;
    text-decoration: none;

    transition: background .2s ease;
}

.creator-model-item:hover {
    background: #fafaf9;
}

.creator-model-thumb {
    width: 60px;
    height: 60px;

    flex: 0 0 60px;

    overflow: hidden;

    background: #f2f2f0;
}

.creator-model-thumb img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .35s ease;
}

.creator-model-item:hover .creator-model-thumb img {
    transform: scale(1.05);
}

.creator-model-info {
    min-width: 0;
    flex: 1;
}

.creator-model-info > strong {
    display: block;

    margin-bottom: 6px;

    color: #111;

    font-size: 13px;
    font-weight: 700;
}

.creator-model-status {
    display: inline-flex;

    padding: 4px 7px;

    color: #888;

    background: #f4f4f2;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: .04em;
}

.creator-model-status.status-approved {
    color: #444;
    background: #ededeb;
}

.creator-model-status.status-pending {
    color: #999;
    background: #f5f5f3;
}

.creator-model-status.status-rejected {
    color: #777;
    background: #eee;
}

.creator-model-meta {
    margin-top: 8px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #999;

    font-size: 9px;
}

.creator-model-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.creator-model-meta i {
    font-size: 9px;
}

.creator-model-arrow {
    color: #aaa;

    font-size: 16px;

    transition:
        color .2s ease,
        transform .2s ease;
}

.creator-model-item:hover .creator-model-arrow {
    color: #111;
    transform: translateX(3px);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.creator-empty-state {
    min-height: 270px;

    padding: 35px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    box-sizing: border-box;
}

.creator-empty-icon {
    width: 48px;
    height: 48px;

    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #999;

    background: #f5f5f3;

    font-size: 16px;
}

.creator-empty-state strong {
    color: #333;

    font-size: 13px;
}

.creator-empty-state p {
    margin: 9px 0 18px;

    color: #aaa;

    font-size: 10px;
    line-height: 1.7;
}

.creator-empty-button {
    height: 38px;

    padding: 0 15px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    box-sizing: border-box;

    color: #111;
    border: 1px solid #ddd;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background .2s ease,
        border-color .2s ease;
}

.creator-empty-button:hover {
    background: #f7f7f5;
    border-color: #bbb;
}

.creator-empty-button span {
    font-size: 14px;
}


/* =========================================================
   QUICK ACTION
========================================================= */

.creator-quick-list {
    padding: 8px 0;
}

.creator-quick-item {
    min-height: 80px;

    padding: 12px 24px;

    display: flex;
    align-items: center;
    gap: 14px;

    box-sizing: border-box;

    color: #111;
    text-decoration: none;

    transition: background .2s ease;
}

.creator-quick-item:hover {
    background: #fafaf9;
}

.creator-quick-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #555;

    background: #f5f5f3;

    font-size: 12px;
}

.creator-quick-text {
    min-width: 0;
    flex: 1;
}

.creator-quick-text strong {
    display: block;

    margin-bottom: 5px;

    font-size: 11px;
    font-weight: 700;
}

.creator-quick-text small {
    display: block;

    color: #aaa;

    font-size: 9px;
    line-height: 1.5;
}

.creator-quick-arrow {
    color: #aaa;

    font-size: 15px;

    transition:
        color .2s ease,
        transform .2s ease;
}

.creator-quick-item:hover .creator-quick-arrow {
    color: #111;
    transform: translateX(4px);
}


/* =========================================================
   ACTIVITY
========================================================= */

.creator-activity-panel {
    margin-top: 0;
}

.creator-activity-list {
    padding: 8px 0;
}

.creator-activity-item {
    min-height: 64px;

    padding: 10px 24px;

    display: flex;
    align-items: center;
    gap: 13px;

    box-sizing: border-box;
}

.creator-activity-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #888;

    background: #f5f5f3;

    font-size: 11px;
}

.creator-activity-info {
    min-width: 0;
    flex: 1;
}

.creator-activity-info strong {
    display: inline-block;

    margin-right: 5px;

    color: #333;

    font-size: 11px;
}

.creator-activity-info span {
    color: #999;

    font-size: 10px;
}

.creator-activity-item time {
    color: #aaa;

    font-size: 9px;
}

.creator-activity-empty {
    min-height: 130px;

    padding: 25px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    box-sizing: border-box;
}

.creator-activity-empty-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 38px;

    color: #aaa;
    background: #f5f5f3;

    font-size: 12px;
}

.creator-activity-empty strong {
    display: block;

    color: #555;

    font-size: 11px;
}

.creator-activity-empty p {
    margin: 6px 0 0;

    color: #aaa;

    font-size: 9px;
    line-height: 1.6;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .creator-dashboard {
        padding: 45px 35px 80px;
    }

    .creator-dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .creator-dashboard-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .creator-layout {
        display: block;
        min-height: auto;
    }


    .creator-sidebar {
        position: relative;
        top: auto;

        width: 100%;
        min-width: 0;
        height: auto;

        padding: 15px 20px;

        border-right: 0;
        border-bottom: 1px solid #e8e8e6;

        overflow: visible;
    }


    .creator-create-button {
        height: 50px;
    }


    .creator-side-nav {
        margin-top: 12px;

        display: flex;

        overflow-x: auto;
        overflow-y: hidden;

        margin-right: -20px;
        padding-right: 20px;
    }


    .creator-side-nav a {
        width: auto;
        flex: 0 0 auto;

        height: 44px;

        padding: 0 14px;

        white-space: nowrap;
    }


    .creator-side-nav a.active::before {
        left: 50%;
        top: auto;
        bottom: 0;

        width: 18px;
        height: 2px;

        transform: translateX(-50%);
    }


    .creator-sidebar-help {
        display: none;
    }


    .creator-dashboard {
        padding: 35px 20px 60px;
    }


    .creator-dashboard-header {
        display: block;

        margin-bottom: 28px;
    }


    .creator-dashboard-heading h1 {
        font-size: 27px;
    }


    .creator-dashboard-heading p {
        font-size: 11px;
    }


    .creator-dashboard-create {
        width: 100%;

        margin-top: 22px;

        justify-content: center;
    }


    .creator-season-bar {
        padding: 16px;

        display: block;
    }


    .creator-season-info {
        display: block;
    }


    .creator-season-label {
        display: block;

        margin-bottom: 7px;
    }


    .creator-season-date {
        margin-top: 7px;

        font-size: 9px;
    }


    .creator-dashboard-stats {
        grid-template-columns: repeat(2, 1fr);

        gap: 10px;
    }


    .creator-stat-card {
        min-height: 125px;

        padding: 17px;
    }


    .creator-stat-number {
        margin-top: 16px;

        font-size: 25px;
    }


    .creator-stat-description {
        font-size: 9px;
    }


    .creator-dashboard-grid {
        display: block;
    }


    .creator-dashboard-panel {
        margin-bottom: 10px;
    }


    .creator-panel-header {
        min-height: 72px;

        padding: 17px;
    }


    .creator-model-item {
        padding: 11px 17px;
    }


    .creator-quick-item {
        padding: 11px 17px;
    }


    .creator-activity-item {
        padding: 10px 17px;
    }

}

.creator-stat-icon {
    transition: transform .25s ease;
}