:root {
    --ink: #17212b;
    --muted: #667481;
    --line: #dbe5ea;
    --soft: #f3f7ff;
    --white: #fff;
    --brand: #1677ff;
    --brand-dark: #0958d9;
    --brand-soft: #e6f4ff;
    --orange: #f08a4b;
    --gold: #c98522;
    --shadow: 0 18px 45px rgba(27, 48, 62, .12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: #f7fbff;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.kq-container {
    width: min(1520px, calc(100% - 64px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-dark);
    text-decoration: none;
    font-weight: 800;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #fff;
    background: var(--brand);
}

.primary-nav,
.primary-nav .menu {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
}

.primary-nav a:hover {
    color: var(--brand-dark);
    background: var(--brand-soft);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.city-pill,
.tel-pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
}

.city-pill {
    color: var(--brand-dark);
    background: var(--brand-soft);
}

.tel-pill {
    color: #fff;
    background: var(--brand);
}

.menu-toggle,
.mobile-drawer,
.mobile-tabs {
    display: none;
}

.hero {
    color: #fff;
    background-position: center;
    background-size: cover;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    gap: 50px;
    align-items: center;
    min-height: 560px;
    padding: 62px 0 82px;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--brand-soft);
    font-weight: 800;
    letter-spacing: 0;
}

.hero h1,
.page-hero h1,
.detail-main h1 {
    margin: 0;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: 0;
}

.hero p {
    max-width: 650px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .84);
    font-size: 18px;
    line-height: 1.8;
}

.hero-actions,
.tag-row,
.slot-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-actions {
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    text-decoration: none;
    border: 0;
    white-space: nowrap;
}

.btn.primary {
    color: #fff;
    background: var(--brand);
}

.btn.light {
    color: var(--brand-dark);
    background: #fff;
}

.btn.outline {
    color: var(--brand-dark);
    border: 1px solid #91caff;
    background: #fff;
}

.btn.orange {
    color: #fff;
    background: var(--orange);
}

.btn.small {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 620px;
    margin-top: 36px;
}

.hero-stats div {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
}

.hero-stats strong {
    display: block;
    font-size: 26px;
}

.hero-stats span {
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
}

.search-card {
    overflow: hidden;
    padding: 0;
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
}

.search-card .dpc-appointment-form {
    padding: 0;
    border: 0;
    box-shadow: none;
}

.quick-section {
    position: relative;
    z-index: 2;
    margin-top: -42px;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.quick-grid a {
    min-height: 96px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(27, 48, 62, .08);
    text-decoration: none;
}

.quick-grid strong,
.quick-grid span {
    display: block;
}

.quick-grid span {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
}

.content-section {
    padding: 58px 0;
}

.content-section.tinted {
    background: #eef6ff;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.section-head h2 {
    margin: 0;
    font-size: 30px;
}

.section-head p {
    margin: 8px 0 0;
    color: var(--muted);
}

.section-head > a {
    color: var(--brand-dark);
    font-weight: 700;
    text-decoration: none;
}

.section-head.centered {
    justify-content: center;
    text-align: center;
}

.section-head.centered p {
    font-size: 17px;
}

.section-more {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.doctor-list {
    display: grid;
    gap: 16px;
}

.doctor-special-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.doctor-special-column {
    display: grid;
    align-content: start;
    overflow: hidden;
    gap: 0;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(23, 33, 43, .06);
}

.doctor-special-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}

.doctor-special-head h3 {
    margin: 0 0 6px;
    color: var(--ink);
    font-size: 22px;
}

.doctor-special-head a {
    flex: 0 0 auto;
    color: var(--brand);
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
}

.doctor-special-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.doctor-list.compact {
    gap: 0;
}

.doctor-list.compact .doctor-card {
    grid-template-columns: 88px minmax(0, 1fr) auto;
    gap: 8px 12px;
    align-items: center;
    padding: 16px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
}

.doctor-list.compact .doctor-card:last-child {
    border-bottom: 0;
}

.doctor-list.compact .doctor-photo {
    width: 88px;
    height: 104px;
}

.doctor-list.compact .doctor-info h3 {
    font-size: 18px;
}

.doctor-card-top {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(132px, 220px);
    gap: 16px;
    align-items: center;
}

.doctor-card-top h3 {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    font-size: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.doctor-card-top h3 a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.doctor-list.compact .doctor-info p {
    overflow: hidden;
    margin: 0 0 8px;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.doctor-list.compact .doctor-info h3,
.doctor-list.compact .doctor-info h3 a,
.doctor-list.compact .doctor-info .meta,
.doctor-list.compact .tag-row,
.doctor-list.compact .slot-row {
    overflow: hidden;
    text-overflow: ellipsis;
}

.doctor-list.compact .doctor-info h3,
.doctor-list.compact .doctor-info h3 a {
    white-space: nowrap;
}

.doctor-list.compact .doctor-info .meta {
    display: block;
    white-space: nowrap;
}

.doctor-clinic-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-end;
    justify-self: end;
    overflow: hidden;
    max-width: 100%;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.doctor-card-side {
    display: grid;
    justify-items: end;
    min-width: 0;
}

.doctor-clinic-badge i {
    position: relative;
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border: 2px solid currentColor;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.doctor-clinic-badge i::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
}

.doctor-list.compact .tag-row,
.doctor-list.compact .slot-row {
    flex-wrap: nowrap;
    white-space: nowrap;
}

.doctor-list.compact .tag-row {
    gap: 6px;
}

.doctor-list.compact .tag-row span,
.doctor-list.compact .slot-row span {
    min-height: 26px;
    padding: 0 7px;
}

.doctor-list.compact .doctor-card > .btn {
    grid-column: auto;
    align-self: center;
    width: auto;
    min-width: 58px;
    min-height: 34px;
    padding: 0 12px;
    white-space: nowrap;
}

.doctor-list.compact .doctor-card-side .btn {
    width: auto;
    min-width: 58px;
    min-height: 34px;
    padding: 0 12px;
    white-space: nowrap;
}

.doctor-card.is-empty {
    display: block;
    min-height: 168px;
    border-style: dashed;
    background: #f8fbff;
}

.doctor-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
}

.doctor-category-tabs a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    background: #fff;
    font-weight: 800;
    text-decoration: none;
}

.doctor-category-tabs a:hover,
.doctor-category-tabs a:focus,
.doctor-category-tabs a.is-active {
    color: var(--brand);
    border-color: #91caff;
    background: var(--brand-soft);
}

.doctor-card {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(27, 48, 62, .05);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.doctor-card:hover,
.doctor-card:focus-within {
    transform: translateY(-2px);
    border-color: #91caff;
    box-shadow: 0 16px 34px rgba(23, 33, 43, .12);
}

.doctor-card:hover h3 a,
.doctor-card:focus-within h3 a {
    color: var(--brand);
}

.doctor-photo {
    display: block;
    width: 128px;
    height: 148px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--soft);
    overflow: hidden;
}

.kqfl-placeholder-img {
    position: relative;
    display: block;
    background-image: url("../images/kqfl-placeholder.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.kqfl-placeholder-img > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.doctor-photo.kqfl-placeholder-img {
    background-size: 245%;
}

.card-image.kqfl-placeholder-img {
    background-size: 132%;
}

.detail-photo .kqfl-placeholder-img {
    width: 100%;
    height: 420px;
    background-size: cover;
}

.doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.doctor-info h3,
.card-body h3,
.benefit-card h3,
.news-card h3 {
    margin: 0 0 8px;
    font-size: 21px;
}

.doctor-info h3 a,
.card-body h3 a,
.news-card h3 a {
    text-decoration: none;
}

.meta,
.doctor-info p,
.card-body p,
.benefit-card p,
.news-card p {
    color: var(--muted);
    line-height: 1.65;
}

.tag-row span,
.slot-row span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 9px;
    border-radius: 6px;
    color: var(--brand-dark);
    background: var(--brand-soft);
    font-size: 12px;
}

.slot-row {
    margin-top: 10px;
}

.card-grid,
.benefit-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.clinic-filter-panel {
    display: grid;
    gap: 12px;
    margin: 0 0 24px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(23, 33, 43, .06);
}

.clinic-filter-row {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.clinic-filter-row strong {
    padding-top: 8px;
    color: var(--ink);
    font-size: 15px;
}

.clinic-filter-row div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.clinic-filter-row a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    background: #fff;
    font-weight: 800;
    text-decoration: none;
}

.clinic-filter-row a:hover,
.clinic-filter-row a:focus,
.clinic-filter-row a.is-active {
    color: var(--brand);
    border-color: #91caff;
    background: var(--brand-soft);
}

.clinic-card,
.benefit-card,
.news-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(23, 33, 43, .08);
}

.card-image {
    position: relative;
    display: block;
    width: 100%;
    height: 178px;
    object-fit: cover;
    background: var(--soft);
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-body {
    padding: 20px;
}

.clinic-card {
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.clinic-card:hover,
.clinic-card:focus-within {
    transform: translateY(-2px);
    border-color: #91caff;
    box-shadow: 0 16px 34px rgba(23, 33, 43, .12);
}

.clinic-card:hover h3 a,
.clinic-card:focus-within h3 a {
    color: var(--brand);
}

.verify-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 8px;
    color: #fff;
    background: var(--brand);
    font-size: 13px;
    font-weight: 700;
}

.verify-badge::before {
    content: "▾";
    transform: rotate(-90deg);
    margin-right: 6px;
    font-size: 11px;
}

.clinic-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.clinic-title-row h3 {
    margin-bottom: 0;
}

.rating-star {
    flex: 0 0 auto;
    color: #ff8f2f;
    font-size: 16px;
    font-weight: 800;
}

.clinic-address {
    margin: 14px 0 12px;
    color: var(--muted);
    line-height: 1.55;
}

.clinic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.clinic-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 6px;
    color: #344054;
    background: #f2f5f9;
    font-size: 13px;
}

.clinic-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
    padding-top: 15px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.clinic-foot a {
    flex: 0 0 auto;
    color: var(--brand);
    font-weight: 700;
    text-decoration: none;
}

.benefit-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    min-height: 220px;
    padding: 34px 22px 22px;
    border: 0;
    transition: transform .18s ease, box-shadow .18s ease;
}

.benefit-card:hover,
.benefit-card:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(23, 33, 43, .13);
}

.benefit-card:hover h3,
.benefit-card:focus-within h3 {
    color: var(--brand);
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, var(--brand), #33c9a3);
}

.benefit-card:nth-child(2n)::before {
    background: linear-gradient(90deg, #ff9f3f, var(--brand));
}

.benefit-card:nth-child(3n)::before {
    background: linear-gradient(90deg, #33c9a3, var(--brand));
}

.benefit-card strong,
.big-coupon {
    color: var(--brand);
    font-size: 32px;
    line-height: 1;
}

.benefit-main {
    min-width: 0;
}

.benefit-label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 12px;
    padding: 0 10px;
    border-radius: 6px;
    color: var(--brand-dark);
    background: var(--brand-soft);
    font-size: 13px;
}

.benefit-main h3 {
    margin-bottom: 14px;
    font-size: 22px;
}

.benefit-main p {
    margin: 0;
}

.benefit-meta {
    display: grid;
    gap: 12px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 14px;
}

.benefit-action {
    display: grid;
    justify-items: end;
    align-content: space-between;
    min-width: 112px;
    color: var(--muted);
    text-align: right;
}

.benefit-action .btn {
    align-self: end;
}

.benefit-zone {
    background: linear-gradient(180deg, #eef6ff 0%, #f4fbff 100%);
}

.news-card > a,
.news-card img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--soft);
}

.news-card > div {
    padding: 18px;
}

.news-card time {
    display: block;
    margin-bottom: 8px;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 800;
}

.related-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
}

.related-chips.compact {
    margin: 8px 0 10px;
}

.related-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid #c7ddff;
    border-radius: 8px;
    color: var(--brand-dark);
    background: var(--brand-soft);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.related-chip span {
    color: var(--muted);
    font-weight: 600;
}

.related-chip:hover,
.related-chip:focus {
    transform: translateY(-1px);
    border-color: var(--brand);
    background: #fff;
}

.related-chip.is-benefit {
    color: #b26a00;
    border-color: #ffd8a8;
    background: #fff7e8;
}

.related-chip.is-clinic {
    color: #087443;
    border-color: #b7ebd4;
    background: #ecfff6;
}

.placeholder-card {
    min-height: 180px;
}

.page-hero {
    color: #fff;
    background: linear-gradient(90deg, #063b7a, #1677ff);
}

.page-hero.compact {
    padding: 72px 0;
}

.page-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.75;
}

.detail-hero {
    padding: 54px 0;
    background: #eef6ff;
}

.detail-grid {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.detail-photo {
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.detail-photo img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
}

.detail-main .eyebrow {
    color: var(--brand-dark);
}

.detail-main h1 {
    color: var(--ink);
}

.detail-main p {
    max-width: 700px;
    line-height: 1.8;
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 28px;
    align-items: start;
}

.narrow {
    max-width: 900px;
}

.article-body {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    line-height: 1.85;
}

.article-cover img {
    display: block;
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.side-form {
    position: sticky;
    top: 88px;
    width: 100%;
}

.map-box {
    min-height: 260px;
    border-radius: 8px;
    background: var(--soft);
}

.route-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.route-item:first-of-type {
    padding-top: 0;
}

.route-item h3 {
    margin: 0 0 10px;
}

.site-footer {
    padding: 42px 0;
    color: rgba(255, 255, 255, .82);
    background: #10232b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 28px;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
}

.footer-brand {
    color: #fff;
}

@media (max-width: 980px) {
    .primary-nav,
    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fff;
    }

    .mobile-drawer.is-open {
        display: grid;
        gap: 4px;
        padding: 10px 20px 16px;
        border-top: 1px solid var(--line);
        background: #fff;
    }

    .mobile-drawer a {
        padding: 12px;
        border-radius: 8px;
        color: var(--muted);
        text-decoration: none;
    }

    .hero-grid,
    .detail-grid,
    .two-col {
        grid-template-columns: 1fr;
    }

    .quick-grid,
    .card-grid,
    .benefit-grid,
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .side-form {
        position: static;
    }
}

@media (max-width: 680px) {
    .kq-container {
        width: min(100% - 28px, 1520px);
    }

    body {
        padding-bottom: 66px;
    }

    .header-inner {
        min-height: 60px;
    }

    .hero-grid {
        min-height: auto;
        padding: 42px 0 58px;
    }

    .hero h1,
    .page-hero h1,
    .detail-main h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-stats,
    .quick-grid,
    .doctor-special-grid,
    .card-grid,
    .benefit-grid,
    .news-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .doctor-special-column {
        box-shadow: none;
    }

    .clinic-filter-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .clinic-filter-row strong {
        padding-top: 0;
    }

    .quick-section {
        margin-top: 18px;
    }

    .content-section {
        padding: 38px 0;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .doctor-card {
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 12px;
        align-items: start;
    }

    .doctor-photo {
        width: 86px;
        height: 104px;
    }

    .doctor-card > .btn {
        grid-column: 1 / -1;
        width: 100%;
    }

    .card-image {
        height: 168px;
    }

    .clinic-title-row,
    .clinic-foot {
        gap: 10px;
    }

    .benefit-card {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 30px 18px 18px;
    }

    .benefit-action {
        grid-template-columns: 1fr auto;
        justify-items: start;
        align-items: end;
        min-width: 0;
        text-align: left;
    }

    .benefit-action .btn {
        grid-row: 1 / 3;
        grid-column: 2;
        align-self: end;
    }

    .detail-photo img {
        height: 320px;
    }

    .article-body {
        padding: 18px;
    }

    .mobile-tabs {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 80;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        height: 64px;
        border-top: 1px solid var(--line);
        background: rgba(255, 255, 255, .96);
        backdrop-filter: blur(12px);
    }

    .mobile-tabs a {
        display: grid;
        place-items: center;
        color: var(--muted);
        text-decoration: none;
        font-size: 12px;
    }
}
