@charset "UTF-8";

/* =========================================================
   Gappunhan Doctors Page
   File: doctors.css
   Scope: 의료진 소개 페이지 전용
========================================================= */

:root {
    --gph-black: #111;
    --gph-gray-900: #222;
    --gph-gray-700: #555;
    --gph-gray-500: #777;
    --gph-gray-300: #dcdcdc;
    --gph-gray-200: #eeeeee;
    --gph-gray-100: #f7f7f7;
    --gph-white: #fff;
    --gph-container: 1180px;
    --gph-radius-lg: 18px;
    --gph-radius-md: 12px;
    --gph-shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.06);
}

/* =========================================================
   Hero
========================================================= */

.gph-doctor-hero {
    overflow: hidden;
    background-color: #fbfbfb;
}

/* =========================================
   Doctors Hero Mobile Image
========================================= */

.gph-doctor-hero__mobile-image {
    display: none;
}

.gph-doctor-hero__line {
    display: none;
}

.gph-doctor-hero__inner {
    position: relative;
    width: min(var(--gph-container), calc(100% - 40px));
    min-height: 480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background-image: url('/uploads/doctors/doctors-hero-line.webp');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto 92%;
}

.gph-doctor-hero__text {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 28px;
}

    .gph-doctor-hero__text h1 {
        margin: 0 0 34px;
        font-size: clamp(34px, 4vw, 54px);
        line-height: 1.38;
        letter-spacing: -0.08em;
    }

    .gph-doctor-hero__text p {
        margin: 0 0 12px;
        color: #333;
        font-size: 16px;
        line-height: 1.9;
        letter-spacing: -0.045em;
    }

/* =========================================================
   Main
========================================================= */

.gph-doctor-main {
    width: min(var(--gph-container), calc(100% - 40px));
    margin: 0 auto;
    padding: 54px 0 0;
}

.gph-doctor-section-head {
    margin-bottom: 30px;
    text-align: center;
}

    .gph-doctor-section-head h2 {
        margin: 0 0 12px;
        font-size: 36px;
        line-height: 1.25;
        letter-spacing: -0.08em;
    }

    .gph-doctor-section-head p {
        margin: 0;
        color: #555;
        font-size: 15px;
        line-height: 1.7;
        letter-spacing: -0.045em;
    }

/* =========================================================
   Doctor Tabs
========================================================= */

.gph-doctor-tabs {
    display: grid;
    grid-template-columns: repeat(var(--doctor-cols, 5), 1fr);
    gap: 10px;
    margin-bottom: 26px;
}

.gph-doctor-tab {
    position: relative;
    min-height: 178px;
    padding: 24px 18px 20px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

    .gph-doctor-tab:hover {
        transform: translateY(-3px);
        border-color: #111;
        box-shadow: var(--gph-shadow-soft);
    }

    .gph-doctor-tab.is-active {
        border-color: #111;
        box-shadow: 0 0 0 1px #111 inset;
    }

.gph-doctor-tab__check {
    position: absolute;
    top: 12px;
    right: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: #fff;
    background: #111;
    font-size: 14px;
}

.gph-doctor-tab.is-active .gph-doctor-tab__check {
    display: flex;
}

.gph-doctor-tab__photo {
    display: block;
    width: 92px;
    height: 92px;
    margin: 0 auto 14px;
    overflow: hidden;
    border-radius: 50%;
    background: #f0f0f0;
}

    .gph-doctor-tab__photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.gph-doctor-tab__name {
    display: block;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.08em;
}

/* =========================================================
   Doctor Detail
========================================================= */

.gph-doctor-detail-wrap {
    position: relative;
}

.gph-doctor-detail {
    display: none;
    grid-template-columns: 455px 1fr;
    min-height: 475px;
    overflow: hidden;
    border: 1px solid #dedede;
    border-radius: 8px;
    background: #fff;
}

    .gph-doctor-detail.is-active {
        display: grid;
        animation: gphDoctorFade 0.35s ease both;
    }

@keyframes gphDoctorFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gph-doctor-detail__photo {
    min-height: 475px;
    background: #f2f2f2;
}

    .gph-doctor-detail__photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.gph-doctor-detail__content {
    padding: 42px 42px 32px;
}

.gph-doctor-detail__position {
    margin: 0 0 18px;
    font-size: 13px;
    letter-spacing: -0.04em;
}

.gph-doctor-detail__content h3 {
    margin: 0 0 16px;
    font-size: 35px;
    line-height: 1.25;
    letter-spacing: 0.08em;
}

.gph-doctor-detail__specialty {
    margin: 0 0 28px;
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -0.05em;
}

.gph-doctor-info-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #dfdfdf;
    border-radius: 8px;
    overflow: hidden;
}

.gph-doctor-info-box__col {
    padding: 28px 30px;
}

    .gph-doctor-info-box__col + .gph-doctor-info-box__col {
        border-left: 1px solid #e5e5e5;
    }

.gph-doctor-info-box h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 20px;
    font-size: 15px;
    letter-spacing: -0.04em;
}

.gph-icon {
    display: inline-flex;
    width: 19px;
    height: 19px;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.gph-schedule-list {
    margin: 0 0 24px;
}

    .gph-schedule-list div {
        display: grid;
        grid-template-columns: 110px 1fr;
        gap: 12px;
        margin-bottom: 11px;
        font-size: 15px;
        line-height: 1.4;
        letter-spacing: -0.045em;
    }

    .gph-schedule-list dt {
        color: #333;
    }

    .gph-schedule-list dd {
        margin: 0;
        color: #222;
    }

.gph-detail-reserve-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 46px;
    padding: 0 22px;
    color: #fff;
    background: #080808;
    border-radius: 3px;
    font-size: 14px;
    letter-spacing: -0.04em;
}

.gph-career-list {
    margin: 0;
    padding: 0 0 0 17px;
}

    .gph-career-list li {
        margin-bottom: 12px;
        color: #222;
        font-size: 15px;
        line-height: 1.55;
        letter-spacing: -0.045em;
    }

.gph-doctor-notice {
    margin: 18px 0 0;
    color: #777;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: -0.04em;
}

/* =========================================================
   Standard Section
========================================================= */

.gph-standard-section {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 28px;
    margin-top: 56px;
    padding: 32px 0 36px;
    border-bottom: 1px solid #e2e2e2;
}

.gph-standard-section__title h2 {
    margin: 0;
    font-size: 31px;
    line-height: 1.45;
    letter-spacing: -0.08em;
}

.gph-standard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.gph-standard-card {
    min-height: 152px;
    padding: 0 28px;
    text-align: center;
    border-left: 1px solid #e5e5e5;
}

.gph-standard-card__icon {
    margin-bottom: 14px;
    font-size: 42px;
    line-height: 1;
}

.gph-standard-card h3 {
    margin: 0 0 13px;
    font-size: 17px;
    letter-spacing: -0.05em;
}

.gph-standard-card p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: -0.045em;
}

/* =========================================================
   CTA
========================================================= */
.gph-doctor-cta {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 205px;
    margin: 0 0 34px;
    padding: 28px 50px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    background-color: #f9f9f9;
    background-image: url('/uploads/doctors/doctor-cta-line.webp');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 100%;
}

.gph-doctor-cta__text {
    position: relative;
    z-index: 2;
    width: 48%;
}

    .gph-doctor-cta__text h2 {
        margin: 0 0 25px;
        font-size: 31px;
        line-height: 1.55;
        font-weight: 500;
        letter-spacing: -0.07em;
    }


.gph-doctor-cta__mobile-image {
    display: none;
}
/* =========================================
   CTA Buttons
========================================= */

.gph-doctor-cta__buttons {
    display: flex;
    gap: 12px;
}

.gph-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 136px;
    height: 48px;
    padding: 0 25px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.04em;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

    .gph-btn:hover {
        transform: translateY(-1px);
    }

.gph-btn--black {
    color: #fff;
    background: #080808;
    border: 1px solid #080808;
}

    .gph-btn--black:hover {
        background: #222;
        border-color: #222;
    }

.gph-btn--line {
    color: #111;
    background: #fff;
    border: 1px solid #111;
}

    .gph-btn--line:hover {
        color: #fff;
        background: #111;
    }


/* =========================================================
   CTA Line Drawing
========================================================= */

.gph-line-drawing {
    position: relative;
    width: 390px;
    max-width: 100%;
    height: 130px;
    opacity: 0.82;
}

    .gph-line-drawing::before {
        content: "";
        position: absolute;
        left: 10px;
        bottom: 18px;
        width: 330px;
        height: 70px;
        border: 2px solid #111;
        border-top-color: transparent;
        border-radius: 50%;
        transform: rotate(-4deg);
    }

.gph-line-drawing__bowl {
    position: absolute;
    left: 92px;
    bottom: 35px;
    width: 88px;
    height: 52px;
    border: 3px solid #111;
    border-top: 0;
    border-radius: 0 0 60px 60px;
}

    .gph-line-drawing__bowl::before {
        content: "";
        position: absolute;
        left: 38px;
        top: -52px;
        width: 11px;
        height: 80px;
        border: 3px solid #111;
        border-radius: 999px;
        transform: rotate(-18deg);
        background: #fff;
    }

.gph-line-drawing__pillow {
    position: absolute;
    left: 200px;
    bottom: 50px;
    width: 142px;
    height: 58px;
    border: 2px solid #111;
    border-radius: 50% 45% 45% 50%;
    transform: rotate(-7deg);
}

.gph-line-drawing__leaf {
    position: absolute;
    left: 34px;
    bottom: 94px;
    width: 30px;
    height: 14px;
    border: 2px solid #111;
    border-right: 0;
    border-bottom: 0;
    border-radius: 80% 0 0 0;
    transform: rotate(35deg);
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1180px) {
    .gph-doctor-hero__inner {
        background-size: auto 86%;
    }

    .gph-doctor-hero__text {
        width: 46%;
    }

    .gph-doctor-detail {
        grid-template-columns: 400px 1fr;
    }

    .gph-doctor-detail__content {
        padding: 36px 32px 30px;
    }
}

@media (max-width: 1024px) {
    .gph-doctor-hero__inner {
        min-height: 560px;
        padding: 60px 0 0;
        align-items: flex-start;
        background-position: center bottom;
        background-size: auto 58%;
    }

    .gph-doctor-hero__text {
        width: 100%;
        padding-top: 0;
        text-align: center;
    }

    .gph-doctor-tabs {
        grid-template-columns: repeat(3, 1fr);
    }

    .gph-doctor-detail {
        grid-template-columns: 1fr;
    }

    .gph-doctor-detail__photo {
        min-height: 420px;
    }

    .gph-doctor-info-box {
        grid-template-columns: 1fr;
    }

    .gph-doctor-info-box__col + .gph-doctor-info-box__col {
        border-left: 0;
        border-top: 1px solid #e5e5e5;
    }

    .gph-standard-section {
        grid-template-columns: 1fr;
    }

    .gph-standard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 0;
    }

    .gph-doctor-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gph-line-drawing {
        margin: 0 auto;
    }

    .gph-doctor-cta__buttons {
        justify-content: center;
    }
}

/* =========================================
   Doctors Page Mobile
   780px 이하부터 적용
========================================= */

@media (max-width: 780px) {
    .gph-doctor-hero {
        padding: 0;
        background: #fff;
    }

    .gph-doctor-hero__inner {
        width: min(100% - 40px, 720px);
        margin: 0 auto;
        display: block;
        background:none;
    }

    .gph-doctor-hero__text {
        width: 100%;
        max-width: none;
        text-align: center;
    }

        .gph-doctor-hero__text h1 {
            margin: 0;
            color: #111;
            font-size: clamp(2.05rem, 7vw, 3rem);
            line-height: 1.28;
            font-weight: 900;
            letter-spacing: -0.075em;
        }

    .gph-doctor-hero__line {
        display: block;
        width: 42px;
        height: 2px;
        margin: 24px auto;
        background: #111;
    }

    .gph-doctor-hero__text p {
        margin: 0;
        color: #222;
        font-size: 1rem;
        line-height: 1.8;
        font-weight: 400;
        letter-spacing: -0.045em;
        word-break: keep-all;
    }

    .gph-doctor-hero__mobile-image {
        display: block;
        width: 100%;
        margin: 34px auto 0;
    }

        .gph-doctor-hero__mobile-image img {
            width: 100%;
            max-width: 680px;
            height: auto;
            margin: 0 auto;
            display: block;
            object-fit: contain;
        }

    /* 모바일에서는 '가뿐한 의료진 소개' 섹션 헤드 숨김 */
    .gph-doctor-section-head {
        display: none;
    }

    .gph-doctor-main {
        padding-top: 48px;
    }

    .gph-doctor-tabs {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        margin: 0 auto 28px;
    }

    .gph-doctor-tab {
        min-height: 112px;
        padding: 12px 6px 10px;
        border-radius: 8px;
    }

    .gph-doctor-tab__photo {
        width: 58px;
        height: 58px;
        margin: 0 auto 8px;
    }

        .gph-doctor-tab__photo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

    .gph-doctor-tab__name {
        font-size: 0.9rem;
        line-height: 1.25;
        font-weight: 800;
        letter-spacing: -0.04em;
    }

    .gph-doctor-tab__check {
        top: 8px;
        right: 8px;
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
        line-height: 22px;
    }



    .gph-doctor-detail-wrap {
        width: min(100% - 32px, 620px);
        margin: 0 auto;
    }

    .gph-doctor-detail {
        display: none;
        border: 1px solid #e5e1da;
        border-radius: 12px;
        background: #fff;
        overflow: hidden;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.04);
    }

        .gph-doctor-detail.is-active {
            display: block;
        }

    /* 상단 이미지 영역 */
    .gph-doctor-detail__photo {
        width: 100%;
        height: 320px;
        padding: 0;
        background: #fff;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        border-bottom: 1px solid #efefef;
        overflow: hidden;
    }

        .gph-doctor-detail__photo img {
            width: auto;
            height: 100%;
            max-width: 100%;
            object-fit: contain;
            object-position: center bottom;
            display: block;
        }

    /* 텍스트 영역 */
    .gph-doctor-detail__content {
        padding: 30px 28px 26px;
    }

    .gph-doctor-detail__position {
        margin: 0 0 10px;
        color: #333;
        font-size: 0.95rem;
        line-height: 1.4;
        font-weight: 500;
        letter-spacing: -0.04em;
    }

    .gph-doctor-detail__content h3 {
        margin: 0 0 14px;
        color: #111;
        font-size: 2rem;
        line-height: 1.25;
        font-weight: 900;
        letter-spacing: -0.065em;
    }

    .gph-doctor-detail__specialty {
        margin: 0 0 24px;
        color: #333;
        font-size: 1rem;
        line-height: 1.6;
        letter-spacing: -0.04em;
        word-break: keep-all;
    }

    /* 진료현황 / 주요약력 박스 */
    .gph-doctor-info-box {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        border: 0;
        background: transparent;
        padding: 0;
    }

    .gph-doctor-info-box__col {
        padding: 22px 22px 20px;
        border: 1px solid #e5e1da;
        border-radius: 10px;
        background: #fff;
    }

        .gph-doctor-info-box__col h4 {
            margin: 0 0 16px;
            color: #111;
            font-size: 1.15rem;
            line-height: 1.35;
            font-weight: 900;
            letter-spacing: -0.05em;
        }

    .gph-schedule-list {
        margin: 0;
        display: grid;
        gap: 0;
    }

        .gph-schedule-list div {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 18px;
            padding: 10px 0;
            border-bottom: 1px solid #efefef;
        }

            .gph-schedule-list div:last-child {
                border-bottom: 0;
            }

        .gph-schedule-list dt,
        .gph-schedule-list dd {
            margin: 0;
            color: #222;
            font-size: 0.98rem;
            line-height: 1.45;
            letter-spacing: -0.04em;
        }

        .gph-schedule-list dt {
            font-weight: 600;
        }

        .gph-schedule-list dd {
            font-weight: 500;
            text-align: right;
            white-space: nowrap;
        }

    .gph-career-list {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 10px;
    }

        .gph-career-list li {
            color: #222;
            font-size: 0.98rem;
            line-height: 1.55;
            letter-spacing: -0.04em;
            word-break: keep-all;
        }

    .gph-doctor-notice {
        margin: 18px 0 0;
        color: #777;
        font-size: 0.9rem;
        line-height: 1.55;
        letter-spacing: -0.04em;
        word-break: keep-all;
    }

    .gph-doctor-info-box__col + .gph-doctor-info-box__col {
        border: 1px solid #e5e5e5;
    }

    .gph-standard-section {
        padding: 72px 0 76px;
        background: #fff;
    }

    .gph-standard-section__title {
        width: min(100% - 40px, 680px);
        margin: 0 auto 42px;
        text-align: center;
    }

        .gph-standard-section__title h2 {
            margin: 0;
            color: #111;
            font-size: 2.55rem;
            line-height: 1.28;
            font-weight: 900;
            letter-spacing: -0.075em;
        }

    .gph-standard-grid {
        width: min(100% - 40px, 680px);
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .gph-standard-card {
        min-height: 270px;
        padding: 34px 22px 30px;
        border: 1px solid #e5e1da;
        border-radius: 12px;
        background: #fff;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        box-shadow: none;
    }

    .gph-standard-card__icon {
        width: 132px;
        height: 104px;
        margin: 0 auto 26px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .gph-standard-card__icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

    .gph-standard-card h3 {
        margin: 0 0 14px;
        color: #111;
        font-size: 1.35rem;
        line-height: 1.35;
        font-weight: 900;
        letter-spacing: -0.055em;
        word-break: keep-all;
    }

    .gph-standard-card p {
        margin: 0;
        color: #333;
        font-size: 1rem;
        line-height: 1.65;
        font-weight: 400;
        letter-spacing: -0.045em;
        word-break: keep-all;
    }

    .gph-doctor-cta {
        width: min(100% - 32px, 620px);
        margin: 64px auto 72px;
        padding: 44px 28px 40px;
        border: 1px solid #e5e1da;
        border-radius: 18px;
        background: #fff;
        display: block;
        text-align: center;
        overflow: hidden;
    }

    .gph-doctor-cta__mobile-image {
        display: block;
        width: 100%;
        margin: 0 auto 32px;
    }

        .gph-doctor-cta__mobile-image img {
            width: 100%;
            max-width: 520px;
            height: auto;
            margin: 0 auto;
            display: block;
            object-fit: contain;
        }

    .gph-doctor-cta__text {
        width: 100%;
        max-width: none;
    }

        .gph-doctor-cta__text h2 {
            margin: 0 0 30px;
            color: #111;
            font-size: 2rem;
            line-height: 1.35;
            font-weight: 900;
            letter-spacing: -0.07em;
            word-break: keep-all;
        }

    .gph-doctor-cta__buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        width: min(100%, 420px);
        margin: 0 auto;
    }

    .gph-btn {
        width: 100%;
        height: 58px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        font-size: 1.05rem;
        font-weight: 800;
        letter-spacing: -0.045em;
        text-decoration: none;
    }

    .gph-btn--black {
        background: #111;
        border: 1px solid #111;
        color: #fff;
    }

    .gph-btn--line {
        background: #fff;
        border: 1px solid #111;
        color: #111;
    }
}



@media (max-width: 480px) {
    .gph-doctor-hero {
        padding-top: 46px;
    }

    .gph-doctor-hero__inner {
        width: min(100% - 32px, 720px);
    }

    .gph-doctor-hero__text h1 {
        font-size: 2.05rem;
        line-height: 1.32;
    }

    .gph-doctor-hero__line {
        width: 36px;
        margin: 22px 0;
    }

    .gph-doctor-hero__text p {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .gph-doctor-hero__mobile-image {
        margin-top: 30px;
    }

        .gph-doctor-hero__mobile-image img {
            width: 108%;
            max-width: none;
            margin-left: -4%;
        }

    .gph-doctor-main {
        padding-top: 42px;
    }

    .gph-doctor-tabs {
        gap: 6px;
    }

    .gph-doctor-tab {
        min-height: 102px;
        padding: 10px 4px 8px;
    }

    .gph-doctor-tab__photo {
        width: 50px;
        height: 50px;
        margin-bottom: 7px;
    }

    .gph-doctor-tab__name {
        font-size: 0.82rem;
    }

    .gph-doctor-tab__check {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        line-height: 20px;
    }

    .gph-doctor-detail-wrap {
        width: min(100% - 28px, 620px);
    }

    .gph-doctor-detail {
        border-radius: 10px;
    }

    .gph-doctor-detail__photo {
        height: 280px;
    }

    .gph-doctor-detail__content {
        padding: 26px 20px 22px;
    }

    .gph-doctor-detail__position {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .gph-doctor-detail__content h3 {
        font-size: 1.72rem;
        margin-bottom: 12px;
    }

    .gph-doctor-detail__specialty {
        font-size: 0.94rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .gph-doctor-info-box {
        gap: 12px;
    }

    .gph-doctor-info-box__col {
        padding: 20px 18px 18px;
        border-radius: 9px;
    }

        .gph-doctor-info-box__col h4 {
            font-size: 1.05rem;
            margin-bottom: 14px;
        }

    .gph-schedule-list div {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 10px 0;
    }

    .gph-schedule-list dt,
    .gph-schedule-list dd {
        font-size: 0.92rem;
    }

    .gph-schedule-list dd {
        text-align: left;
    }

    .gph-career-list {
        gap: 9px;
        padding-left: 16px;
    }

        .gph-career-list li {
            font-size: 0.92rem;
            line-height: 1.5;
        }

    .gph-doctor-notice {
        font-size: 0.84rem;
        margin-top: 16px;
    }

    .gph-standard-section {
        padding: 58px 0 62px;
    }

    .gph-standard-section__title {
        width: min(100% - 32px, 680px);
        margin-bottom: 32px;
    }

        .gph-standard-section__title h2 {
            font-size: 2.05rem;
            line-height: 1.32;
        }

    .gph-standard-grid {
        width: min(100% - 32px, 680px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .gph-standard-card {
        min-height: 230px;
        padding: 26px 14px 24px;
        border-radius: 10px;
    }

    .gph-standard-card__icon {
        width: 104px;
        height: 82px;
        margin-bottom: 20px;
    }

    .gph-standard-card h3 {
        margin-bottom: 10px;
        font-size: 1.05rem;
        line-height: 1.35;
    }

    .gph-standard-card p {
        font-size: 0.86rem;
        line-height: 1.55;
    }

    .gph-doctor-cta {
        width: min(100% - 28px, 620px);
        margin: 52px auto 60px;
        padding: 34px 20px 32px;
        border-radius: 14px;
    }

    .gph-doctor-cta__mobile-image {
        margin-bottom: 26px;
    }

        .gph-doctor-cta__mobile-image img {
            width: 108%;
            max-width: none;
            margin-left: -4%;
        }

    .gph-doctor-cta__text h2 {
        margin-bottom: 24px;
        font-size: 1.6rem;
        line-height: 1.38;
    }

    .gph-doctor-cta__buttons {
        gap: 10px;
    }

    .gph-btn {
        height: 54px;
        font-size: 0.98rem;
    }
}

@media (max-width: 390px) {
    .gph-standard-grid {
        grid-template-columns: 1fr;
    }

    .gph-standard-card {
        min-height: auto;
    }
}