/* =====================================================
   와와학습코칭센터
   수강후기 reviews.css
===================================================== */


/* =========================
   기본 설정
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        "SUIT",
        "Noto Sans KR",
        Arial,
        sans-serif;

    color: #222222;
    background: #ffffff;

    word-break: keep-all;
}

a {
    color: inherit;
}


:root {
    --orange: #FF7A00;
    --orange-dark: #E96B00;
    --orange-light: #FFF0DF;
    --cream: #FFF8F1;
    --black: #222222;
    --gray: #707070;
}


/* =====================================================
   상단 헤더
===================================================== */

.header {
    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;
}


.header-inner {
    width: 100%;
    max-width: 1380px;

    min-height: 96px;

    margin: 0 auto;
    padding: 18px 32px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 30px;
}


/* 로고 */

.logo {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;

    text-decoration: none;

    white-space: nowrap;
}


.logo-mark {
    display: block;

    width: 72px;
    height: auto;

    max-height: 38px;

    object-fit: contain;
}


.logo-text {
    display: block;

    color: var(--orange);

    font-size: 27px;
    font-weight: 850;

    line-height: 1;

    letter-spacing: -0.8px;
}


/* 메뉴 */

.nav {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 25px;

    flex-wrap: nowrap;
}


.nav a {
    position: relative;

    color: #222222;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition:
        color 0.2s,
        transform 0.2s;
}


.nav a:hover {
    color: var(--orange);

    transform: translateY(-1px);
}


.nav a.active {
    color: var(--orange);
}


.nav a.active::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -11px;

    width: 6px;
    height: 6px;

    transform: translateX(-50%);

    background: var(--orange);

    border-radius: 50%;
}


/* =====================================================
   HERO
===================================================== */

.reviews-hero {
    position: relative;

    min-height: 670px;

    padding: 100px 24px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(255, 248, 241, 0.98) 0%,
            rgba(255, 248, 241, 0.95) 35%,
            rgba(255, 248, 241, 0.76) 55%,
            rgba(255, 248, 241, 0.30) 78%,
            rgba(255, 248, 241, 0.08) 100%
        ),
        url("images/reviews1.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}

.reviews-hero-inner {
    position: relative;

    z-index: 3;

    width: 100%;
    max-width: 1120px;

    margin: 0 auto;
}


/* 장식 */

.hero-circle {
    position: absolute;

    pointer-events: none;

    border-radius: 50%;
}


.circle-one {
    width: 500px;
    height: 500px;

    right: -130px;
    top: -170px;

    border:
        100px solid
        rgba(255, 122, 0, 0.06);
}


.circle-two {
    width: 190px;
    height: 190px;

    right: 27%;
    bottom: -90px;

    background:
        rgba(255, 122, 0, 0.07);
}


/* 영어 */

.eyebrow {
    margin: 0 0 20px;

    color: var(--orange);

    font-size: 14px;
    font-weight: 900;

    letter-spacing: 2.5px;
}


/* 제목 */

.reviews-hero h1 {
    max-width: 900px;

    margin: 0;

    color: #222222;

    font-size: 64px;
    font-weight: 850;

    line-height: 1.18;

    letter-spacing: -2.8px;
}


.reviews-hero h1 span {
    color: var(--orange);
}


/* 설명 */

.hero-description {
    max-width: 670px;

    margin: 29px 0 0;

    color: #686868;

    font-size: 19px;

    line-height: 1.85;
}


/* 버튼 */

.hero-buttons {
    margin-top: 40px;

    display: flex;

    gap: 12px;
}


.button {
    display: inline-block;

    min-width: 175px;

    padding: 16px 27px;

    border-radius: 12px;

    text-align: center;

    font-size: 16px;
    font-weight: 800;

    text-decoration: none;

    transition:
        transform 0.2s,
        background 0.2s,
        border-color 0.2s;
}


.button:hover {
    transform: translateY(-2px);
}


.button-orange {
    color: #ffffff;

    background: var(--orange);

    border:
        2px solid var(--orange);
}


.button-orange:hover {
    background: var(--orange-dark);

    border-color: var(--orange-dark);
}


.button-white {
    color: var(--orange);

    background: #ffffff;

    border:
        2px solid #FFD4AD;
}


.button-white:hover {
    border-color: var(--orange);
}


/* =====================================================
   공통 SECTION
===================================================== */

.section-inner {
    width: 100%;
    max-width: 1120px;

    margin: 0 auto;
}


.section-heading {
    margin-bottom: 50px;
}


.center-heading {
    text-align: center;
}


.section-heading > p {
    margin: 0 0 11px;

    color: var(--orange);

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 2px;
}


.section-heading h2 {
    margin: 0;

    color: #222222;

    font-size: 43px;
    font-weight: 850;

    line-height: 1.35;

    letter-spacing: -1.7px;
}


.section-heading > span {
    display: block;

    margin-top: 14px;

    color: #777777;

    font-size: 17px;

    line-height: 1.7;
}


/* =====================================================
   학습 경험
===================================================== */

.change-section {
    padding: 120px 25px;

    background: #ffffff;
}


.change-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.change-card {
    position: relative;

    min-height: 360px;

    padding: 35px 31px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 24px;

    transition:
        transform 0.25s,
        box-shadow 0.25s;
}


.change-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.07);
}


.change-card.featured {
    color: #ffffff;

    background: var(--orange);

    border-color: var(--orange);
}


.change-number {
    position: absolute;

    right: 22px;
    top: 17px;

    color:
        rgba(255, 122, 0, 0.10);

    font-size: 70px;
    font-weight: 900;
}


.change-card.featured .change-number {
    color:
        rgba(255, 255, 255, 0.15);
}


.change-icon {
    width: 54px;
    height: 54px;

    margin-bottom: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: var(--orange);

    border-radius: 15px;

    font-size: 21px;
    font-weight: 900;
}


.change-card.featured .change-icon {
    color: var(--orange);

    background: #ffffff;
}


.change-card h3 {
    margin: 0 0 16px;

    font-size: 26px;
    font-weight: 850;

    letter-spacing: -0.8px;
}


.change-card p {
    margin: 0;

    color: #707070;

    font-size: 16px;

    line-height: 1.8;
}


.change-card.featured p {
    color:
        rgba(255, 255, 255, 0.92);
}


/* =====================================================
   검은 메시지
===================================================== */

.story-message {
    padding: 140px 25px;

    color: #ffffff;

    background: #222222;
}


.story-message-inner {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;
}


.story-message-inner > p:first-child {
    margin: 0 0 23px;

    color: var(--orange);

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 2px;
}


.story-message h2 {
    margin: 0;

    font-size: 54px;
    font-weight: 850;

    line-height: 1.35;

    letter-spacing: -2px;
}


.story-message h2 span {
    color: #FF942D;
}


.message-line {
    width: 67px;
    height: 4px;

    margin: 40px 0;

    background: var(--orange);

    border-radius: 30px;
}


.message-description {
    max-width: 760px;

    margin: 0;

    color: #bdbdbd;

    font-size: 18px;

    line-height: 1.9;
}


/* =====================================================
   네이버 블로그
===================================================== */

.blog-section {
    padding: 120px 25px;

    background: #FFF8F1;
}


.blog-card {
    display: block;

    max-width: 930px;

    margin: 0 auto;

    overflow: hidden;

    color: #222222;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 28px;

    text-decoration: none;

    box-shadow:
        0 18px 50px
        rgba(0, 0, 0, 0.055);

    transition:
        transform 0.25s,
        border-color 0.25s,
        box-shadow 0.25s;
}


.blog-card:hover {
    transform: translateY(-6px);

    border-color: #FFB777;

    box-shadow:
        0 25px 60px
        rgba(255, 122, 0, 0.11);
}


/* 위 */

.blog-top {
    padding: 22px 32px;

    display: flex;

    align-items: center;

    gap: 12px;

    border-bottom:
        1px solid #eeeeee;
}


.naver-icon {
    flex-shrink: 0;

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: #03C75A;

    border-radius: 9px;

    font-size: 17px;
    font-weight: 900;
}


.blog-top > div:last-child {
    display: flex;

    flex-direction: column;

    gap: 3px;
}


.blog-top strong {
    color: #333333;

    font-size: 13px;
    font-weight: 850;

    letter-spacing: 0.8px;
}


.blog-top span {
    color: #888888;

    font-size: 12px;
}


/* 가운데 */

.blog-content {
    min-height: 330px;

    padding: 48px 42px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 35px;
}


.blog-category {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--orange);

    font-size: 13px;
    font-weight: 850;
}


.blog-text h3 {
    max-width: 660px;

    margin: 0;

    color: #222222;

    font-size: 35px;
    font-weight: 850;

    line-height: 1.4;

    letter-spacing: -1.3px;
}


.blog-text p {
    max-width: 630px;

    margin: 19px 0 0;

    color: #777777;

    font-size: 16px;

    line-height: 1.8;
}


.blog-arrow {
    flex-shrink: 0;

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: var(--orange);

    border-radius: 50%;

    font-size: 28px;

    transition:
        transform 0.25s;
}


.blog-card:hover .blog-arrow {
    transform: translateX(5px);
}


/* 아래 */

.blog-bottom {
    padding: 18px 32px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #777777;

    background: #FAFAFA;

    font-size: 13px;
}


.blog-bottom strong {
    color: var(--orange);

    font-weight: 800;
}


/* =====================================================
   마지막 CTA
===================================================== */

.reviews-cta {
    padding: 110px 25px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #FF8615,
            #EF6900
        );
}


.reviews-cta-inner {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}


.reviews-cta-inner > p {
    margin: 0 0 15px;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 2px;
}


.reviews-cta h2 {
    margin: 0;

    font-size: 46px;
    font-weight: 850;

    line-height: 1.35;

    letter-spacing: -1.8px;
}


.reviews-cta-inner > span {
    display: block;

    margin-top: 18px;

    color:
        rgba(255, 255, 255, 0.90);

    font-size: 17px;

    line-height: 1.7;
}


.cta-buttons {
    margin-top: 36px;

    display: flex;

    justify-content: center;

    gap: 11px;
}


.cta-buttons a {
    min-width: 180px;

    padding: 16px 26px;

    border-radius: 12px;

    font-size: 16px;
    font-weight: 850;

    text-decoration: none;

    transition:
        transform 0.2s;
}


.cta-buttons a:hover {
    transform: translateY(-2px);
}


.cta-white {
    color: var(--orange);

    background: #ffffff;
}


.cta-dark {
    color: #ffffff;

    background: #222222;
}


/* =====================================================
   중간 화면
===================================================== */

@media (max-width: 1150px) {

    .header-inner {
        padding: 16px 22px;

        gap: 20px;
    }


    .logo-mark {
        width: 62px;

        max-height: 34px;
    }


    .logo-text {
        font-size: 23px;
    }


    .nav {
        gap: 16px;
    }


    .nav a {
        font-size: 14px;
    }

}


/* =====================================================
   태블릿
===================================================== */

@media (max-width: 900px) {

    .header-inner {
        flex-direction: column;

        justify-content: center;

        gap: 18px;
    }


    .nav {
        width: 100%;

        justify-content: center;

        flex-wrap: wrap;

        gap: 15px 20px;
    }


    .change-grid {
        grid-template-columns: 1fr;

        max-width: 650px;

        margin: 0 auto;
    }


    .change-card {
        min-height: auto;
    }

}


/* =====================================================
   모바일
===================================================== */

@media (max-width: 768px) {

    .header-inner {
        min-height: auto;

        padding: 17px 15px;

        flex-direction: column;

        gap: 17px;
    }


    .logo {
        justify-content: center;

        gap: 10px;
    }


    .logo-mark {
        width: 58px;

        max-height: 30px;
    }


    .logo-text {
        font-size: 22px;
    }


    .nav {
        width: 100%;

        justify-content: center;

        flex-wrap: wrap;

        gap: 13px 16px;
    }


    .nav a {
        font-size: 14px;
    }


    .nav a.active::after {
        bottom: -8px;
    }


    /* HERO */

    .reviews-hero {
        min-height: 600px;

        padding: 85px 20px;
    }


    .reviews-hero h1 {
        font-size: 43px;

        letter-spacing: -1.7px;
    }


    .hero-description {
        font-size: 16px;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }


    .button {
        width: 100%;

        max-width: 320px;
    }


    /* 섹션 */

    .change-section,
    .blog-section {
        padding: 85px 20px;
    }


    .section-heading h2 {
        font-size: 34px;
    }


    /* 검은 영역 */

    .story-message {
        padding: 90px 20px;
    }


    .story-message h2 {
        font-size: 38px;
    }


    .message-description {
        font-size: 16px;
    }


    /* 블로그 카드 */

    .blog-content {
        min-height: auto;

        padding: 34px 27px;

        align-items: flex-end;
    }


    .blog-text h3 {
        font-size: 27px;
    }


    .blog-text p {
        font-size: 15px;
    }


    .blog-arrow {
        width: 49px;
        height: 49px;

        font-size: 21px;
    }


    .blog-bottom {
        padding: 17px 25px;

        flex-direction: column;

        gap: 5px;
    }


    /* CTA */

    .reviews-cta {
        padding: 85px 20px;
    }


    .reviews-cta h2 {
        font-size: 35px;
    }


    .cta-buttons {
        flex-direction: column;

        align-items: center;
    }


    .cta-buttons a {
        width: 100%;

        max-width: 310px;
    }

}


/* =====================================================
   아주 작은 휴대폰
===================================================== */

@media (max-width: 430px) {

    .logo-mark {
        width: 52px;
    }


    .logo-text {
        font-size: 20px;
    }


    .nav {
        gap: 11px 13px;
    }


    .nav a {
        font-size: 13px;
    }


    .reviews-hero h1 {
        font-size: 36px;
    }


    .blog-content {
        display: block;
    }


    .blog-arrow {
        margin-top: 25px;
    }


    .blog-text h3 {
        font-size: 24px;
    }


    .reviews-cta h2 {
        font-size: 31px;
    }

}

/* 수강후기 HERO 기존 원형 장식 숨김 */

.reviews-hero::before,
.reviews-hero::after {
    opacity: 0;
}

@media (max-width: 768px) {

    .reviews-hero {
        min-height: 620px;

        padding: 80px 20px;

        background-position: 65% center;

        background-image:
            linear-gradient(
                90deg,
                rgba(255, 248, 241, 0.98) 0%,
                rgba(255, 248, 241, 0.92) 60%,
                rgba(255, 248, 241, 0.55) 100%
            ),
            url("images/reviews1.png");
    }

}

/* =====================================================
   MOBILE PHOTO FIX - REVIEWS
===================================================== */

@media (max-width: 768px) {

    .reviews-hero {
        min-height: 680px;

        padding:
            310px 20px
            75px;

        align-items: flex-start;

        background-color: #FFF8F1;

        background-image:
            linear-gradient(
                180deg,
                rgba(255, 248, 241, 0.02) 0%,
                rgba(255, 248, 241, 0.10) 42%,
                rgba(255, 248, 241, 0.92) 68%,
                #FFF8F1 100%
            ),
            url("images/reviews1.png");

        background-size:
            100% auto;

        background-position:
            top center;

        background-repeat:
            no-repeat;
    }

}