/* 기본 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, "Noto Sans KR", sans-serif;
    background-color: #f7f9f8;
    color: #111111;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================
   상단 메뉴
========================= */

.header {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #eeeeee;
}

.header-inner {
    max-width: 1200px;
    height: 82px;
    margin: 0 auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}

.nav {
    display: flex;
    gap: 38px;
    margin-left: auto;
    margin-right: 40px;
}

.nav a {
    font-size: 15px;
    font-weight: 600;
    color: #444444;
    transition: 0.2s;
}

.nav a:hover {
    color: #19a463;
}

.header-button {
    background-color: #111111;
    color: white;

    padding: 13px 22px;
    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.2s;
}

.header-button:hover {
    background-color: #19a463;
}


/* =========================
   메인 화면
========================= */

.hero {
    max-width: 1200px;
    min-height: calc(100vh - 82px);

    margin: 0 auto;
    padding: 80px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 80px;
}


/* 왼쪽 문구 */

.hero-content {
    flex: 1;
}

.hero-label {
    display: inline-block;

    margin-bottom: 25px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;

    color: #19a463;
}

.hero h1 {
    font-size: 66px;
    line-height: 1.12;
    letter-spacing: -3px;

    margin-bottom: 30px;
}

.hero-description {
    max-width: 580px;

    font-size: 19px;
    line-height: 1.8;

    color: #666666;
}


/* 버튼 */

.hero-buttons {
    display: flex;
    gap: 12px;

    margin-top: 40px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 17px 27px;

    border-radius: 12px;

    font-size: 16px;
    font-weight: 700;

    transition: 0.2s;
}

.primary-button {
    background-color: #19a463;
    color: white;
}

.primary-button:hover {
    transform: translateY(-2px);
}

.secondary-button {
    background-color: white;
    color: #111111;

    border: 1px solid #dddddd;
}

.secondary-button:hover {
    border-color: #111111;
}


/* =========================
   오른쪽 카드
========================= */

.hero-visual {
    width: 420px;
    min-width: 420px;

    padding: 45px;

    background-color: #e8f8ef;

    border-radius: 32px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.visual-card {
    width: 100%;

    background-color: white;

    padding: 28px;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
}

.visual-card span {
    display: block;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;

    color: #19a463;

    margin-bottom: 12px;
}

.visual-card strong {
    display: block;

    font-size: 22px;

    margin-bottom: 8px;
}

.visual-card p {
    font-size: 14px;
    color: #777777;
}

.connection {
    font-size: 32px;
    font-weight: 900;

    color: #19a463;

    padding: 18px;
}


/* =========================
   모바일
========================= */

@media (max-width: 1050px) {

    .nav {
        display: none;
    }

    .header-button {
        margin-left: auto;
    }

    .hero {
        flex-direction: column;

        align-items: flex-start;

        padding-top: 60px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-description br {
        display: none;
    }

    .hero-visual {
        width: 100%;
        min-width: 0;
    }

}


@media (max-width: 520px) {

    .header-inner {
        padding: 0 20px;
    }

    .hero {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero h1 {
        font-size: 39px;
        letter-spacing: -2px;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-visual {
        padding: 25px;
    }

}/* =========================
   UpToad 소개
========================= */

.about {
    background-color: #ffffff;
    padding: 130px 30px;
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 70px;
}

.section-label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #19a463;
    margin-bottom: 22px;
}

.section-heading h2 {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -2.5px;
    word-break: keep-all;
    margin-bottom: 28px;
}

.section-description {
    font-size: 18px;
    line-height: 1.9;
    color: #666666;
    word-break: keep-all;
}


/* 서비스 카드 */

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    min-height: 300px;
    padding: 38px;

    background-color: #f7f9f8;

    border: 1px solid #eeeeee;
    border-radius: 24px;

    transition: 0.25s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.service-number {
    display: block;

    font-size: 13px;
    font-weight: 800;

    color: #19a463;

    margin-bottom: 70px;
}

.service-card h3 {
    font-size: 25px;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    word-break: keep-all;
}


/* 소개 영역 반응형 */

@media (max-width: 900px) {

    .about {
        padding: 90px 28px;
    }

    .section-heading h2 {
        font-size: 40px;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 230px;
    }

    .service-number {
        margin-bottom: 45px;
    }

}


@media (max-width: 520px) {

    .about {
        padding: 75px 20px;
    }

    .section-heading h2 {
        font-size: 34px;
        letter-spacing: -2px;
    }

    .section-description {
        font-size: 16px;
    }

}/* =========================
   광고 진행 과정
========================= */

.process {
    padding: 130px 30px;
    background-color: #111111;
    color: #ffffff;
}

.process-inner {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
}

.process-heading {
    position: sticky;
    top: 120px;
    align-self: start;
}

.process-heading .section-label {
    color: #31d986;
}

.process-heading h2 {
    font-size: 54px;
    line-height: 1.15;
    letter-spacing: -2.5px;
    word-break: keep-all;

    margin-bottom: 28px;
}

.process-heading > p:last-child {
    max-width: 420px;

    font-size: 17px;
    line-height: 1.8;

    color: #aaaaaa;
    word-break: keep-all;
}


/* 진행 단계 */

.process-list {
    border-top: 1px solid #333333;
}

.process-item {
    display: grid;
    grid-template-columns: 80px 1fr;

    gap: 25px;

    padding: 45px 0;

    border-bottom: 1px solid #333333;
}

.process-item > span {
    font-size: 14px;
    font-weight: 800;

    color: #31d986;
}

.process-item h3 {
    font-size: 27px;
    margin-bottom: 13px;
}

.process-item p {
    max-width: 500px;

    font-size: 16px;
    line-height: 1.8;

    color: #aaaaaa;

    word-break: keep-all;
}


/* 진행 과정 반응형 */

@media (max-width: 900px) {

    .process {
        padding: 90px 28px;
    }

    .process-inner {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .process-heading {
        position: static;
    }

    .process-heading h2 {
        font-size: 42px;
    }

}


@media (max-width: 520px) {

    .process {
        padding: 75px 20px;
    }

    .process-heading h2 {
        font-size: 35px;
    }

    .process-item {
        grid-template-columns: 50px 1fr;
        gap: 15px;
    }

}/* =========================
   광고주 / 인플루언서 선택
========================= */

.start-section {
    padding: 130px 30px;
    background-color: #ffffff;
}

.start-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.start-heading {
    margin-bottom: 65px;
}

.start-heading h2 {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -2.5px;
    word-break: keep-all;
}


/* 카드 */

.start-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.start-card {
    min-height: 480px;

    padding: 48px;

    border-radius: 28px;

    display: flex;
    flex-direction: column;

    transition: 0.25s;
}

.start-card:hover {
    transform: translateY(-5px);
}


/* 광고주 카드 */

.brand-card {
    background-color: #19a463;
    color: #ffffff;
}


/* 인플루언서 카드 */

.influencer-card {
    background-color: #f1f4f2;
    color: #111111;
}


.start-type {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;

    margin-bottom: 70px;
}

.brand-card .start-type {
    color: #c9f3dd;
}

.influencer-card .start-type {
    color: #19a463;
}


.start-card h3 {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -2px;
    word-break: keep-all;

    margin-bottom: 25px;
}

.start-card p {
    max-width: 400px;

    font-size: 17px;
    line-height: 1.8;

    word-break: keep-all;

    margin-bottom: 45px;
}

.brand-card p {
    color: rgba(255, 255, 255, 0.8);
}

.influencer-card p {
    color: #666666;
}


.start-link {
    margin-top: auto;

    width: fit-content;

    font-size: 17px;
    font-weight: 800;

    padding-bottom: 5px;

    border-bottom: 1px solid currentColor;
}


/* 반응형 */

@media (max-width: 800px) {

    .start-section {
        padding: 90px 28px;
    }

    .start-heading h2 {
        font-size: 40px;
    }

    .start-cards {
        grid-template-columns: 1fr;
    }

    .start-card {
        min-height: 400px;
    }

}


@media (max-width: 520px) {

    .start-section {
        padding: 75px 20px;
    }

    .start-heading h2 {
        font-size: 34px;
    }

    .start-card {
        padding: 35px;
    }

    .start-card h3 {
        font-size: 32px;
    }

}/* =========================
   고객 후기
========================= */

.reviews-preview {
    padding: 130px 30px;
    background-color: #f7f9f8;
}

.reviews-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 30px;

    margin-bottom: 65px;
}

.reviews-heading h2 {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -2.5px;
    word-break: keep-all;
}

.reviews-more {
    flex-shrink: 0;

    font-size: 16px;
    font-weight: 800;

    padding-bottom: 5px;

    border-bottom: 1px solid #111111;
}


/* 후기 카드 */

.review-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    min-height: 360px;

    padding: 35px;

    background-color: #ffffff;

    border: 1px solid #e8e8e8;
    border-radius: 24px;

    display: flex;
    flex-direction: column;

    transition: 0.25s;
}

.review-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}


.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 45px;
}

.review-category {
    font-size: 12px;
    font-weight: 800;

    color: #19a463;

    letter-spacing: 1px;
}

.review-stars {
    font-size: 13px;
    letter-spacing: 2px;

    color: #19a463;
}


.review-text {
    font-size: 18px;
    line-height: 1.8;

    color: #333333;

    word-break: keep-all;
}


.review-company {
    margin-top: auto;

    padding-top: 35px;

    border-top: 1px solid #eeeeee;
}

.review-company strong {
    display: block;

    font-size: 15px;

    margin-bottom: 7px;
}

.review-company span {
    font-size: 13px;
    color: #888888;
}


/* 후기 반응형 */

@media (max-width: 900px) {

    .reviews-preview {
        padding: 90px 28px;
    }

    .reviews-heading h2 {
        font-size: 40px;
    }

    .review-cards {
        grid-template-columns: 1fr;
    }

    .review-card {
        min-height: 300px;
    }

}


@media (max-width: 520px) {

    .reviews-preview {
        padding: 75px 20px;
    }

    .reviews-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-heading h2 {
        font-size: 34px;
    }

}/* =========================
   마지막 CTA
========================= */

.final-cta {
    padding: 150px 30px;
    background-color: #19a463;
    color: #ffffff;
}

.final-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.final-cta .section-label {
    color: #c9f3dd;
}

.final-cta h2 {
    max-width: 800px;

    font-size: 68px;
    line-height: 1.1;
    letter-spacing: -3px;

    margin-bottom: 30px;

    word-break: keep-all;
}

.final-cta-description {
    max-width: 500px;

    font-size: 19px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.8);

    margin-bottom: 45px;

    word-break: keep-all;
}

.final-cta-button {
    display: inline-flex;

    padding: 18px 28px;

    background-color: #111111;
    color: #ffffff;

    border-radius: 12px;

    font-size: 16px;
    font-weight: 800;

    transition: 0.2s;
}

.final-cta-button:hover {
    transform: translateY(-3px);
}


/* =========================
   Footer
========================= */

.footer {
    background-color: #111111;
    color: #ffffff;

    padding: 80px 30px 35px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;

    gap: 80px;

    padding-bottom: 70px;
}

.footer-logo {
    display: inline-block;

    font-size: 32px;
    font-weight: 800;

    margin-bottom: 22px;
}

.footer-slogan {
    font-size: 15px;
    line-height: 1.8;

    color: #888888;
}


/* Footer 메뉴 */

.footer-menu {
    display: flex;
    gap: 90px;
}

.footer-menu > div {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-menu strong {
    font-size: 11px;
    letter-spacing: 2px;

    color: #666666;

    margin-bottom: 10px;
}

.footer-menu a {
    font-size: 14px;
    color: #cccccc;
}

.footer-menu a:hover {
    color: #ffffff;
}


/* Footer 하단 */

.footer-bottom {
    border-top: 1px solid #2d2d2d;

    padding-top: 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 12px;
    color: #666666;
}

.footer-bottom div {
    display: flex;
    gap: 25px;
}


/* =========================
   CTA / Footer 반응형
========================= */

@media (max-width: 800px) {

    .final-cta {
        padding: 100px 28px;
    }

    .final-cta h2 {
        font-size: 48px;
    }

    .footer-top {
        flex-direction: column;
    }

}


@media (max-width: 520px) {

    .final-cta {
        padding: 80px 20px;
    }

    .final-cta h2 {
        font-size: 38px;
        letter-spacing: -2px;
    }

    .footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-menu {
        gap: 50px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

}/* =========================
   광고 문의 페이지
========================= */

.contact-page {
    min-height: calc(100vh - 82px);
    padding: 110px 30px 130px;
    background-color: #f7f9f8;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
}


/* 왼쪽 */

.contact-intro {
    padding-top: 20px;
}

.contact-intro h1 {
    font-size: 54px;
    line-height: 1.15;
    letter-spacing: -2.5px;

    margin-bottom: 30px;

    word-break: keep-all;
}

.contact-intro > p:last-child {
    max-width: 420px;

    font-size: 17px;
    line-height: 1.9;

    color: #666666;

    word-break: keep-all;
}


/* 신청서 */

.contact-form-wrap {
    background-color: #ffffff;

    padding: 50px;

    border-radius: 28px;

    border: 1px solid #eeeeee;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 16px 17px;

    border: 1px solid #dddddd;
    border-radius: 10px;

    background-color: #ffffff;

    font-family: inherit;
    font-size: 15px;

    outline: none;

    transition: 0.2s;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #19a463;

    box-shadow: 0 0 0 3px rgba(25, 164, 99, 0.08);
}


/* 개인정보 */

.privacy-check {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 13px;
    color: #666666;

    cursor: pointer;
}

.privacy-check input {
    width: 17px;
    height: 17px;

    accent-color: #19a463;
}


/* 전송 버튼 */

.form-submit {
    width: 100%;

    border: 0;

    padding: 19px;

    background-color: #19a463;
    color: #ffffff;

    border-radius: 12px;

    font-size: 16px;
    font-weight: 800;

    cursor: pointer;

    transition: 0.2s;
}

.form-submit:hover {
    background-color: #138a52;

    transform: translateY(-2px);
}


/* 광고 문의 반응형 */

@media (max-width: 900px) {

    .contact-page {
        padding: 80px 28px 100px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-intro h1 {
        font-size: 43px;
    }

}


@media (max-width: 520px) {

    .contact-page {
        padding: 65px 20px 80px;
    }

    .contact-intro h1 {
        font-size: 36px;
    }

    .contact-form-wrap {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

}/* =========================
   인플루언서 신청 페이지
========================= */

.influencer-page {
    min-height: calc(100vh - 82px);

    padding: 110px 30px 130px;

    background-color: #eef8f2;
}

.influencer-form-inner {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;
}

.influencer-intro {
    padding-top: 20px;
}

.influencer-intro h1 {
    font-size: 54px;
    line-height: 1.15;

    letter-spacing: -2.5px;

    margin-bottom: 30px;

    word-break: keep-all;
}

.influencer-intro > p:last-child {
    max-width: 420px;

    font-size: 17px;
    line-height: 1.9;

    color: #666666;

    word-break: keep-all;
}


@media (max-width: 900px) {

    .influencer-page {
        padding: 80px 28px 100px;
    }

    .influencer-form-inner {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .influencer-intro h1 {
        font-size: 43px;
    }

}


@media (max-width: 520px) {

    .influencer-page {
        padding: 65px 20px 80px;
    }

    .influencer-intro h1 {
        font-size: 36px;
    }

}/* =========================
   후기 게시판 페이지
========================= */

.reviews-page {
    min-height: calc(100vh - 82px);

    padding: 110px 30px 130px;

    background-color: #f7f9f8;
}

.reviews-page-inner {
    max-width: 1200px;
    margin: 0 auto;
}


/* 페이지 제목 */

.reviews-page-heading {
    max-width: 760px;

    margin-bottom: 80px;
}

.reviews-page-heading h1 {
    font-size: 58px;
    line-height: 1.15;

    letter-spacing: -2.5px;

    margin-bottom: 28px;

    word-break: keep-all;
}

.reviews-page-heading > p:last-child {
    font-size: 18px;
    line-height: 1.8;

    color: #666666;

    word-break: keep-all;
}


/* 게시판 상단 */

.review-board-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;

    margin-bottom: 25px;
}

.review-filter {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.filter-button {
    border: 1px solid #dddddd;

    background-color: #ffffff;

    padding: 10px 17px;

    border-radius: 100px;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
}

.filter-button.active {
    background-color: #111111;
    color: #ffffff;

    border-color: #111111;
}

.review-write-button {
    flex-shrink: 0;

    padding: 13px 20px;

    background-color: #19a463;
    color: #ffffff;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 800;
}


/* 후기 목록 */

.review-board {
    border-top: 2px solid #111111;
}

.review-list-item {
    display: grid;

    grid-template-columns: 80px 1fr 120px;

    gap: 25px;

    align-items: center;

    padding: 35px 15px;

    border-bottom: 1px solid #dddddd;

    transition: 0.2s;
}

.review-list-item:hover {
    background-color: #ffffff;
}

.review-list-number {
    font-size: 13px;
    font-weight: 800;

    color: #999999;
}

.review-list-meta {
    display: flex;
    gap: 18px;

    margin-bottom: 10px;
}

.review-list-meta span {
    font-size: 12px;
    font-weight: 800;

    color: #19a463;
}

.review-list-content h2 {
    font-size: 21px;

    margin-bottom: 10px;

    word-break: keep-all;
}

.review-list-content > p {
    font-size: 13px;

    color: #888888;
}

.review-list-date {
    text-align: right;

    font-size: 13px;

    color: #999999;
}


/* 후기 게시판 모바일 */

@media (max-width: 700px) {

    .reviews-page {
        padding: 80px 20px 100px;
    }

    .reviews-page-heading h1 {
        font-size: 42px;
    }

    .review-board-top {
        align-items: flex-start;

        flex-direction: column;
    }

    .review-list-item {
        grid-template-columns: 45px 1fr;
    }

    .review-list-date {
        display: none;
    }

}


@media (max-width: 520px) {

    .reviews-page-heading h1 {
        font-size: 35px;
    }

    .review-list-content h2 {
        font-size: 18px;
    }

}/* =========================
   후기 상세보기
========================= */

.review-detail-page {
    min-height: calc(100vh - 82px);
    padding: 100px 30px 130px;
    background-color: #ffffff;
}

.review-detail-inner {
    max-width: 900px;
    margin: 0 auto;
}


/* 목록으로 */

.review-back {
    display: inline-block;

    margin-bottom: 55px;

    font-size: 14px;
    font-weight: 700;

    color: #666666;
}


/* 후기 제목 */

.review-detail-heading {
    padding-bottom: 45px;

    border-bottom: 1px solid #dddddd;
}

.review-detail-meta {
    display: flex;
    gap: 18px;

    margin-bottom: 20px;
}

.review-detail-meta span {
    font-size: 13px;
    font-weight: 800;

    color: #19a463;
}

.review-detail-heading h1 {
    font-size: 42px;
    line-height: 1.3;

    letter-spacing: -2px;

    margin-bottom: 25px;

    word-break: keep-all;
}

.review-detail-info {
    display: flex;
    gap: 20px;

    font-size: 13px;

    color: #888888;
}


/* 후기 본문 */

.review-detail-content {
    padding: 60px 0;
}

.review-detail-content p {
    font-size: 18px;
    line-height: 2;

    color: #444444;

    margin-bottom: 25px;

    word-break: keep-all;
}


/* 하단 */

.review-detail-bottom {
    padding-top: 35px;

    border-top: 1px solid #dddddd;
}

.review-list-button {
    display: inline-flex;

    padding: 14px 22px;

    border: 1px solid #dddddd;
    border-radius: 10px;

    font-size: 14px;
    font-weight: 800;

    background-color: #ffffff;
}

.review-list-button:hover {
    border-color: #111111;
}


/* 모바일 */

@media (max-width: 520px) {

    .review-detail-page {
        padding: 70px 20px 90px;
    }

    .review-detail-heading h1 {
        font-size: 30px;
    }

    .review-detail-content p {
        font-size: 16px;
    }

}/* =========================
   후기 작성 페이지
========================= */

.review-write-page {
    min-height: calc(100vh - 82px);

    padding: 110px 30px 130px;

    background-color: #f7f9f8;
}

.review-write-inner {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;
}

.review-write-intro {
    padding-top: 20px;
}

.review-write-intro h1 {
    font-size: 54px;
    line-height: 1.15;

    letter-spacing: -2.5px;

    margin-bottom: 30px;

    word-break: keep-all;
}

.review-write-intro > p:last-child {
    max-width: 420px;

    font-size: 17px;
    line-height: 1.9;

    color: #666666;

    word-break: keep-all;
}


@media (max-width: 900px) {

    .review-write-page {
        padding: 80px 28px 100px;
    }

    .review-write-inner {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .review-write-intro h1 {
        font-size: 43px;
    }

}


@media (max-width: 520px) {

    .review-write-page {
        padding: 65px 20px 80px;
    }

    .review-write-intro h1 {
        font-size: 36px;
    }

}/* =========================
   문의 완료 페이지
========================= */

.success-page {
    min-height: 100vh;

    padding: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #f7f9f8;
}

.success-box {
    width: 100%;
    max-width: 620px;

    padding: 70px 60px;

    background-color: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 30px;

    text-align: center;
}

.success-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: #19a463;
    color: #ffffff;

    font-size: 30px;
    font-weight: 800;
}

.success-box h1 {
    font-size: 46px;
    line-height: 1.2;

    letter-spacing: -2px;

    margin-bottom: 25px;

    word-break: keep-all;
}

.success-box > p:not(.section-label) {
    font-size: 17px;
    line-height: 1.8;

    color: #666666;

    margin-bottom: 40px;
}


@media (max-width: 520px) {

    .success-page {
        padding: 20px;
    }

    .success-box {
        padding: 50px 25px;
    }

    .success-box h1 {
        font-size: 34px;
    }

}#detail-content {
    white-space: pre-line;
}/* =========================
   관리자 페이지
========================= */

.admin-header-label {
    margin-left: auto;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    color: #19a463;
}


.admin-page {
    min-height: 100vh;

    padding: 100px 30px 130px;

    background-color: #f7f9f8;
}


.admin-inner {
    max-width: 1100px;

    margin: 0 auto;
}


.admin-heading {
    margin-bottom: 60px;
}


.admin-heading h1 {
    font-size: 52px;

    letter-spacing: -2px;

    margin-bottom: 18px;
}


.admin-heading > p:last-child {
    color: #666666;

    line-height: 1.8;
}


/* 통계 */

.admin-stats {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

    margin-bottom: 45px;
}


.admin-stat-card {
    padding: 28px;

    background-color: #ffffff;

    border: 1px solid #e8e8e8;

    border-radius: 18px;
}


.admin-stat-card span {
    display: block;

    font-size: 13px;

    color: #777777;

    margin-bottom: 15px;
}


.admin-stat-card strong {
    font-size: 32px;
}


/* 필터 */

.admin-filter {
    display: flex;

    gap: 8px;

    margin-bottom: 20px;
}


.admin-filter-button {
    padding: 10px 17px;

    border: 1px solid #dddddd;

    border-radius: 100px;

    background-color: #ffffff;

    font-weight: 700;

    cursor: pointer;
}


.admin-filter-button.active {
    background-color: #111111;
    color: #ffffff;

    border-color: #111111;
}


/* 후기 */

.admin-review-list {
    display: flex;

    flex-direction: column;

    gap: 15px;
}


.admin-review-item {
    padding: 32px;

    background-color: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 20px;
}


.admin-review-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;
}


.admin-status {
    padding: 7px 11px;

    border-radius: 100px;

    font-size: 11px;
    font-weight: 800;
}


.admin-status.pending {
    background-color: #fff4d8;
    color: #9c6800;
}


.admin-status.approved {
    background-color: #dcf7e8;
    color: #138a52;
}


.admin-review-id {
    font-size: 12px;

    color: #999999;
}


.admin-review-meta {
    display: flex;

    gap: 15px;

    color: #19a463;

    font-size: 12px;
    font-weight: 800;

    margin-bottom: 12px;
}


.admin-review-item h2 {
    font-size: 23px;

    margin-bottom: 10px;
}


.admin-review-company {
    font-size: 13px;

    color: #888888;

    margin-bottom: 25px;
}


.admin-review-content {
    padding: 22px 0;

    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;

    font-size: 15px;

    line-height: 1.8;

    color: #555555;

    white-space: pre-line;
}


.admin-review-actions {
    display: flex;

    gap: 8px;

    margin-top: 22px;
}


.admin-review-actions button {
    padding: 11px 18px;

    border: 0;

    border-radius: 9px;

    font-weight: 800;

    cursor: pointer;
}


.admin-approve-button {
    background-color: #19a463;

    color: #ffffff;
}


.admin-delete-button {
    background-color: #eeeeee;

    color: #333333;
}


.admin-empty {
    padding: 70px 20px;

    text-align: center;

    color: #777777;

    background-color: #ffffff;

    border-radius: 20px;
}


@media (max-width: 650px) {

    .admin-page {
        padding: 70px 20px;
    }


    .admin-heading h1 {
        font-size: 40px;
    }


    .admin-stats {
        grid-template-columns: 1fr;
    }

}/* =========================
   관리자 로그인
========================= */

.admin-login-page {
    min-height: 100vh;

    padding: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #f7f9f8;
}


.admin-login-box {
    width: 100%;
    max-width: 480px;

    padding: 55px;

    background-color: #ffffff;

    border: 1px solid #e8e8e8;
    border-radius: 28px;
}


.admin-login-logo {
    display: inline-block;

    font-size: 27px;
    font-weight: 800;

    margin-bottom: 45px;
}


.admin-login-box h1 {
    font-size: 38px;

    letter-spacing: -2px;

    margin-bottom: 12px;
}


.admin-login-description {
    color: #777777;

    margin-bottom: 35px;
}


.admin-login-form {
    display: flex;
    flex-direction: column;

    gap: 22px;
}


.admin-login-error {
    display: none;

    padding: 13px 15px;

    margin-bottom: 25px;

    background-color: #fff1f1;
    color: #c93c3c;

    border-radius: 9px;

    font-size: 13px;
}


.admin-login-error.show {
    display: block;
}


.admin-back-home {
    display: inline-block;

    margin-top: 30px;

    font-size: 13px;
    color: #777777;
}


@media (max-width: 520px) {

    .admin-login-page {
        padding: 20px;
    }

    .admin-login-box {
        padding: 40px 25px;
    }

}.admin-logout-form {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 18px;
}


.admin-logout-button {
    padding: 10px 15px;

    border: 1px solid #dddddd;
    border-radius: 9px;

    background-color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;
}


.admin-logout-button:hover {
    border-color: #111111;
}/* =========================
   관리자 메인 메뉴
========================= */

.admin-main-tabs {
    display: flex;
    gap: 8px;

    margin-bottom: 40px;

    padding-bottom: 20px;

    border-bottom: 1px solid #dddddd;
}


.admin-main-tab {
    padding: 12px 20px;

    border: 1px solid #dddddd;
    border-radius: 10px;

    background-color: #ffffff;

    font-size: 14px;
    font-weight: 800;

    cursor: pointer;
}


.admin-main-tab.active {
    background-color: #111111;
    color: #ffffff;

    border-color: #111111;
}


.admin-hidden {
    display: none;
}


/* =========================
   관리자 광고 문의
========================= */

.admin-contact-heading {
    margin-bottom: 30px;
}


.admin-contact-heading h2 {
    font-size: 28px;

    margin-bottom: 8px;
}


.admin-contact-heading p {
    color: #777777;
}


.admin-contact-list {
    display: flex;

    flex-direction: column;

    gap: 15px;
}


.admin-contact-item {
    padding: 32px;

    background-color: #ffffff;

    border: 1px solid #e5e5e5;
    border-radius: 20px;
}


.admin-contact-top {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    gap: 30px;

    margin-bottom: 28px;
}


.admin-contact-number {
    display: block;

    font-size: 11px;
    font-weight: 800;

    color: #19a463;

    margin-bottom: 8px;
}


.admin-contact-top h2 {
    font-size: 24px;
}


.admin-contact-date {
    font-size: 12px;

    color: #999999;
}


.admin-contact-info {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;

    padding: 25px 0;

    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}


.admin-contact-info div {
    display: flex;

    flex-direction: column;

    gap: 7px;
}


.admin-contact-info span,
.admin-contact-message > span {
    font-size: 11px;
    font-weight: 700;

    color: #999999;
}


.admin-contact-info strong {
    font-size: 14px;

    word-break: break-all;
}


.admin-contact-message {
    padding-top: 25px;
}


.admin-contact-message p {
    margin-top: 10px;

    font-size: 15px;
    line-height: 1.8;

    color: #555555;

    white-space: pre-line;
}


.admin-contact-delete {
    background-color: #eeeeee;

    color: #333333;
}


@media (max-width: 650px) {

    .admin-contact-info {
        grid-template-columns: 1fr;
    }

}.admin-influencer-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.admin-influencer-delete {
    background-color: #eeeeee;
    color: #333333;
}.admin-channel-link {
    color: #19a463;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.admin-channel-link:hover {
    color: #138a52;
}/* 인플루언서 관리자 상태 */

.influencer-admin-stats {
    grid-template-columns: repeat(4, 1fr);
}


.influencer-filter-button {
    padding: 10px 17px;

    border: 1px solid #dddddd;
    border-radius: 100px;

    background-color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
}


.influencer-filter-button.active {
    background-color: #111111;
    color: #ffffff;

    border-color: #111111;
}


.admin-status.rejected {
    background-color: #ffe5e5;
    color: #c63d3d;
}


.admin-influencer-approve {
    background-color: #19a463;
    color: #ffffff;
}


.admin-influencer-reject {
    background-color: #fff0f0;
    color: #c63d3d;
}


.admin-influencer-delete {
    background-color: #eeeeee;
    color: #333333;
}


@media (max-width: 800px) {

    .influencer-admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 520px) {

    .influencer-admin-stats {
        grid-template-columns: 1fr;
    }

}/* =========================
   광고 문의 상태 관리
========================= */

.contact-admin-stats {
    grid-template-columns: repeat(4, 1fr);
}


.contact-filter-button {
    padding: 10px 17px;

    border: 1px solid #dddddd;
    border-radius: 100px;

    background-color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
}


.contact-filter-button.active {
    background-color: #111111;
    color: #ffffff;

    border-color: #111111;
}


.contact-status {
    display: inline-block;

    padding: 7px 11px;

    margin-bottom: 8px;

    border-radius: 100px;

    font-size: 11px;
    font-weight: 800;
}


.contact-status.new {
    background-color: #e8f5ff;
    color: #2976a8;
}


.contact-status.progress {
    background-color: #fff4d8;
    color: #9c6800;
}


.contact-status.completed {
    background-color: #dcf7e8;
    color: #138a52;
}


.admin-contact-progress {
    background-color: #111111;
    color: #ffffff;
}


.admin-contact-complete {
    background-color: #19a463;
    color: #ffffff;
}


@media (max-width: 800px) {

    .contact-admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 520px) {

    .contact-admin-stats {
        grid-template-columns: 1fr;
    }

}/* =========================
   관리자 대시보드
========================= */

.admin-dashboard-heading {
    margin-bottom: 30px;
}


.admin-dashboard-heading h2 {
    font-size: 30px;
    margin-bottom: 8px;
}


.admin-dashboard-heading p {
    color: #777777;
}


.admin-dashboard-stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

    margin-bottom: 35px;
}


.admin-dashboard-recent {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}


.admin-dashboard-panel {
    min-height: 270px;

    padding: 28px;

    background-color: #ffffff;

    border: 1px solid #e5e5e5;
    border-radius: 20px;
}


.admin-dashboard-panel-title {
    padding-bottom: 18px;
    margin-bottom: 18px;

    border-bottom: 1px solid #eeeeee;
}


.admin-dashboard-panel-title h3 {
    font-size: 18px;
}


.admin-dashboard-loading {
    font-size: 13px;

    color: #999999;

    line-height: 1.7;
}


@media (max-width: 900px) {

    .admin-dashboard-recent {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 700px) {

    .admin-dashboard-stats {
        grid-template-columns: 1fr;
    }

}/* 대시보드 최근 활동 */

.dashboard-recent-item {
    padding: 16px 0;

    border-bottom: 1px solid #eeeeee;
}


.dashboard-recent-item:last-child {
    border-bottom: 0;
}


.dashboard-recent-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-bottom: 8px;
}


.dashboard-recent-top span {
    font-size: 11px;
    font-weight: 800;

    color: #19a463;
}


.dashboard-recent-top small {
    font-size: 11px;

    color: #aaaaaa;
}


.dashboard-recent-item strong {
    display: block;

    font-size: 15px;

    margin-bottom: 5px;
}


.dashboard-recent-item p {
    margin: 0;

    font-size: 12px;

    color: #777777;
}/* 대시보드 최근 항목 클릭 효과 */

.dashboard-recent-item[data-admin-page] {
    cursor: pointer;
    transition:
        transform 0.15s ease,
        opacity 0.15s ease;
}

.dashboard-recent-item[data-admin-page]:hover {
    transform: translateX(4px);
    opacity: 0.75;
}