:root {
    --web-bg: #f4f7fb;
    --web-surface: #ffffff;
    --web-surface-soft: #f8fbff;
    --web-text: #1f2937;
    --web-text-soft: #6b7280;
    --web-border: rgba(15, 23, 42, 0.08);
    --web-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    --web-radius: 24px;
    --web-container: 1200px;
    --web-accent: #2563eb;
    --web-accent-soft: rgba(37, 99, 235, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--web-text);
    background: var(--web-bg);
    font: 14px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

img {
    display: block;
    max-width: 100%;
}

.web-container {
    width: min(100% - 32px, var(--web-container));
    margin: 0 auto;
}

.web-shell {
    min-height: 100vh;
}

.web-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.web-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 68px;
}

.web-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.web-brand img,
.web-brand__badge {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    object-fit: cover;
    flex: 0 0 40px;
}

.web-brand__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, var(--web-accent), #7c3aed);
}

.web-brand__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.web-brand__text strong {
    font-size: 17px;
    line-height: 1.2;
}

.web-brand__text small {
    color: var(--web-text-soft);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.web-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.web-mobile-nav {
    display: none;
}

.web-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--web-text-soft);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.16);
    transition: all 0.2s ease;
}

button.web-nav__link,
.web-nav__toggle {
    font: inherit;
    cursor: pointer;
}

.web-nav__link:hover {
    color: var(--web-accent);
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.18);
}

.web-nav__link--home {
    color: #fff;
    background: linear-gradient(135deg, var(--web-accent), #7c3aed);
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.2);
}

.web-nav__link--home:hover {
    color: #fff;
    background: linear-gradient(135deg, #1d4ed8, #6d28d9);
}

.web-nav__link--login {
    color: var(--web-accent);
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.12);
}

.web-nav__dropdown {
    position: relative;
}

.web-nav__toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 14px;
    color: var(--web-text);
    background: rgba(255, 255, 255, 0.9);
}

.web-nav__toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.web-nav__trigger::after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    vertical-align: middle;
}

.web-nav__menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 148px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.web-nav__menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    white-space: nowrap;
}

.web-nav__menu a:hover {
    background: rgba(37, 99, 235, 0.08);
}

.web-nav__menu a.is-active {
    color: var(--web-accent);
    background: rgba(37, 99, 235, 0.12);
}

.web-nav__dropdown:hover .web-nav__menu,
.web-nav__dropdown:focus-within .web-nav__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.web-hero {
    padding: 28px 0 12px;
}

.web-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
    gap: 24px;
    align-items: stretch;
}

.web-hero__content,
.web-hero__panel {
    padding: 28px;
    border-radius: 32px;
    background: var(--web-surface);
    box-shadow: var(--web-shadow);
}

.web-hero__content {
    padding: 0;
    overflow: hidden;
    position: relative;
    min-height: 280px;
}

.web-hero-slider,
.web-hero-slider__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.web-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    color: #fff;
    background: linear-gradient(135deg, #dbeafe, #e9d5ff);
}

.web-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.web-hero-slide img,
.web-hero-slide__mask {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.web-hero-slide img {
    object-fit: cover;
}

.web-hero-slide__mask {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.74) 0%, rgba(15, 23, 42, 0.42) 42%, rgba(15, 23, 42, 0.18) 100%);
}

.web-hero-slide__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 24px 24px 40px;
}

.web-hero-slider__dots {
    position: absolute;
    left: 24px;
    bottom: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.web-hero-slider__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.web-hero-slider__dot.is-active {
    width: 28px;
    background: #fff;
}

.web-hero h1 {
    margin: 18px 0 12px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.1;
}

.web-hero__subtitle {
    margin: 0;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.82);
}

.web-hero__intro {
    margin: 18px 0 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.92);
}

.web-hero__actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.web-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.web-btn--primary {
    color: #fff;
    background: var(--web-accent);
    box-shadow: 0 16px 28px rgba(37, 99, 235, 0.25);
}

.web-btn--ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.34);
}

.web-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.82);
}

.web-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.web-hero__panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-content: start;
}

.web-panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 118px;
    padding: 18px;
    border-radius: 24px;
    background: var(--web-surface-soft);
    border: 1px solid var(--web-border);
}

.web-panel strong {
    font-size: 30px;
    line-height: 1;
}

.web-panel span {
    margin-top: 10px;
    color: var(--web-text-soft);
}

.web-section {
    padding: 16px 0 32px;
}

.web-guide-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    border-radius: 28px;
    background: var(--web-surface);
    box-shadow: var(--web-shadow);
}

.web-guide-hero h1 {
    margin: 12px 0 10px;
    font-size: 36px;
    line-height: 1.2;
}

.web-guide-hero p {
    margin: 0;
    color: var(--web-text-soft);
}

.web-guide-hero__back {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--web-accent);
    background: rgba(37, 99, 235, 0.08);
    font-size: 13px;
    font-weight: 600;
}

.web-guide-hero__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    padding: 20px 22px;
    border-radius: 22px;
    background: var(--web-surface-soft);
    border: 1px solid var(--web-border);
    white-space: nowrap;
}

.web-guide-hero__meta span,
.web-guide-hero__meta small {
    color: var(--web-text-soft);
}

.web-guide-hero__meta strong {
    font-size: 24px;
}

.web-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.web-category-tabs {
    display: none;
}

.web-category-block {
    min-width: 0;
}

.web-section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.web-section__head h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
}

.web-section__title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.web-section__head p {
    margin: 8px 0 0;
    color: var(--web-text-soft);
}

.web-section__count {
    color: var(--web-text-soft);
    font-size: 14px;
    white-space: nowrap;
}

.web-search-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.web-search-form__input {
    width: 240px;
    height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 12px;
    background: #fff;
    color: var(--web-text);
    outline: none;
}

.web-search-form__input:focus {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.web-search-form__button {
    height: 40px;
    padding: 0 16px;
    border: 0;
    border-radius: 12px;
    background: var(--web-accent);
    color: #fff;
    cursor: pointer;
}

.web-doctor-grid,
.web-hospital-grid {
    display: grid;
    gap: 18px;
}

.web-doctor-card,
.web-hospital-card,
.web-list-card {
    background: var(--web-surface);
    box-shadow: var(--web-shadow);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.web-doctor-card,
.web-hospital-card {
    overflow: hidden;
    border-radius: 24px;
}

.web-doctor-card:hover,
.web-doctor-card:hover,
.web-hospital-card:hover {
    transform: translateY(-3px);
}

.web-list-card {
    overflow: hidden;
    border-radius: 24px;
}

.web-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    transition: background 0.2s ease;
}

.web-list-item:last-child {
    border-bottom: 0;
}

.web-list-item:hover {
    background: rgba(37, 99, 235, 0.04);
}

.web-list-item__main,
.web-list-item__meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.web-list-item__main {
    min-width: 0;
    flex: 1;
}

.web-list-item__title {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 16px;
    color: var(--web-text);
}

.web-list-item__meta {
    flex: 0 0 auto;
    color: var(--web-text-soft);
    font-size: 13px;
}

.web-list-item__more {
    color: var(--web-accent);
    font-weight: 600;
}

.web-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.web-pagination__item,
.web-pagination__ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    background: var(--web-surface);
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: var(--web-text-soft);
}

.web-pagination__item:hover {
    color: var(--web-accent);
    border-color: rgba(37, 99, 235, 0.22);
    background: rgba(37, 99, 235, 0.04);
}

.web-pagination__item.is-active {
    color: #fff;
    background: var(--web-accent);
    border-color: var(--web-accent);
}

.web-pagination__ellipsis {
    background: transparent;
    border-color: transparent;
}

.web-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--web-accent);
    background: rgba(37, 99, 235, 0.08);
    font-size: 14px;
    font-weight: 600;
}

.web-tag {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--web-accent);
    font-size: 12px;
    font-weight: 600;
    background: var(--web-accent-soft);
}

.web-tag--hot {
    color: #b45309;
    background: rgba(245, 158, 11, 0.16);
}

.web-doctor-card h3,
.web-hospital-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.45;
}

.web-doctor-marquee {
    overflow: hidden;
    padding: 8px 4px 12px;
}

.web-doctor-marquee__track {
    display: flex;
    align-items: stretch;
    gap: 16px;
    width: max-content;
}

.web-doctor-marquee__track.is-animated {
    animation: web-doctor-marquee 42s linear infinite;
}

.web-doctor-marquee:hover .web-doctor-marquee__track.is-animated {
    animation-play-state: paused;
}

.web-doctor-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    width: 352px;
    height: 228px;
    flex: 0 0 352px;
}

.web-doctor-card__avatar {
    flex: 0 0 96px;
    width: 96px;
    height: 96px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.web-doctor-card__avatar img,
.web-hospital-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.web-doctor-card__avatar span,
.web-hospital-card__avatar span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--web-accent);
    font-size: 30px;
    font-weight: 700;
}

.web-doctor-card__body,
.web-hospital-card__body {
    min-width: 0;
    flex: 1;
}

.web-doctor-card__name {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.web-doctor-card__name span {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--web-text-soft);
    background: #f1f5f9;
    font-size: 12px;
}

.web-doctor-card__hospital,
.web-doctor-card__extra,
.web-doctor-card__desc,
.web-doctor-card__summary,
.web-hospital-card p {
    margin: 8px 0 0;
    color: var(--web-text-soft);
}

.web-hospital-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.web-hospital-ticker {
    display: none;
}

.web-hospital-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 92px;
    padding: 20px 22px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.96));
}

.web-hospital-card h3 {
    font-size: 17px;
    font-weight: 600;
}

.web-hospital-card:hover {
    background: rgba(37, 99, 235, 0.04);
}

.web-empty {
    padding: 28px 24px;
    border: 1px dashed rgba(148, 163, 184, 0.5);
    border-radius: 24px;
    color: var(--web-text-soft);
    background: rgba(255, 255, 255, 0.7);
}

.web-empty--error {
    color: #b91c1c;
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(254, 242, 242, 0.9);
}

@keyframes web-doctor-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 8px));
    }
}

@keyframes web-hospital-ticker {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(calc(-50% - 6px));
    }
}

.web-footer {
    padding: 10px 0 32px;
}

.web-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 28px;
    border-radius: 24px;
    color: var(--web-text-soft);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.web-footer__inner strong {
    display: block;
    color: var(--web-text);
    margin-bottom: 4px;
}

.web-footer__inner p {
    margin: 0;
}

.web-footer__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 1080px) {
    .web-hero__inner,
    .web-card-grid,
    .web-hospital-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .web-doctor-card {
        width: 320px;
        flex-basis: 320px;
    }

}

@media (max-width: 768px) {
    .web-container {
        width: min(100% - 24px, var(--web-container));
    }

    body {
        padding-bottom: 104px;
    }

    .web-header {
        position: static;
    }

    .web-header__inner {
        align-items: center;
        min-height: 60px;
        padding: 8px 0;
    }

    .web-brand {
        flex: 1;
        min-width: 0;
        padding-right: 12px;
    }

    .web-brand__text strong {
        font-size: 15px;
    }

    .web-brand__text small {
        font-size: 11px;
    }

    .web-nav--desktop {
        display: none;
    }

    .web-mobile-nav {
        display: flex;
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 50;
        align-items: stretch;
        justify-content: stretch;
        gap: 6px;
        padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(18px);
        box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
        border: 1px solid rgba(148, 163, 184, 0.16);
        border-radius: 22px;
    }

    .web-mobile-nav__dropdown,
    .web-mobile-nav__item {
        flex: 1 1 0;
        min-width: 0;
    }

    .web-mobile-nav__dropdown {
        position: relative;
    }

    .web-mobile-nav > * + *::before {
        content: "";
        display: none;
    }

    .web-mobile-nav__item {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 52px;
        padding: 0 8px;
        border: 0;
        border-radius: 16px;
        background: rgba(248, 250, 252, 0.9);
        box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08);
        color: var(--web-text-soft);
        flex-direction: row;
        gap: 6px;
        font-size: 13px;
        line-height: 1;
        font-weight: 600;
        transition: all 0.2s ease;
    }

    .web-mobile-nav__item:hover {
        background: rgba(37, 99, 235, 0.1);
        color: var(--web-accent);
    }

    .web-mobile-nav__dropdown.is-open .web-mobile-nav__item,
    .web-mobile-nav__item:active {
        color: var(--web-accent);
        background: rgba(37, 99, 235, 0.12);
        box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
    }

    .web-mobile-nav__trigger::after {
        content: "";
        display: inline-block;
        margin-left: 2px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top-width: 5px;
        border-top-style: solid;
        border-top-color: currentColor;
    }

    .web-mobile-nav__menu {
        position: absolute;
        left: 50%;
        right: auto;
        bottom: calc(100% + 12px);
        top: auto;
        min-width: 152px;
        margin-top: 0;
        padding: 8px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(148, 163, 184, 0.14);
        box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16);
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, 8px);
        display: none;
    }

    .web-mobile-nav__menu::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -6px;
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.98);
        border-right: 1px solid rgba(148, 163, 184, 0.12);
        border-bottom: 1px solid rgba(148, 163, 184, 0.12);
        transform: translateX(-50%) rotate(45deg);
    }

    .web-mobile-nav__dropdown.is-open .web-mobile-nav__menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
    }

    .web-mobile-nav__menu a {
        display: block;
        padding: 11px 14px;
        text-align: center;
        white-space: nowrap;
        border-radius: 12px;
        font-weight: 600;
    }

    .web-mobile-nav__menu a:hover {
        color: var(--web-accent);
        background: rgba(37, 99, 235, 0.08);
    }

    .web-hero__inner,
    .web-hospital-grid {
        grid-template-columns: 1fr;
    }

    .web-category-tabs {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        margin-bottom: 14px;
        padding-bottom: 2px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .web-category-tabs::-webkit-scrollbar {
        display: none;
    }

    .web-category-tabs__item {
        flex: 0 0 auto;
        height: 34px;
        padding: 0 14px;
        border: 0;
        border-radius: 999px;
        background: rgba(37, 99, 235, 0.08);
        color: var(--web-text-soft);
        font: inherit;
        cursor: pointer;
    }

    .web-category-tabs__item.is-active {
        color: #fff;
        background: var(--web-accent);
    }

    .web-category-grid {
        display: block;
    }

    .web-category-block {
        display: none;
    }

    .web-category-block.is-active {
        display: block;
    }

    .web-hero__panel {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
    }

    .web-hero__content,
    .web-hero__panel {
        padding: 18px;
    }

    .web-hero__content {
        padding: 0;
        min-height: 220px;
    }

    .web-hero-slide__content {
        padding: 18px 16px 42px;
    }

    .web-hero h1 {
        margin-top: 0;
        font-size: 24px;
    }

    .web-hero__intro {
        margin-top: 14px;
        font-size: 14px;
    }

    .web-hero__actions {
        width: 100%;
        gap: 10px;
    }

    .web-btn {
        min-width: 0;
        flex: 1 1 calc(50% - 5px);
    }

    .web-hero-slider__dots {
        left: 16px;
        bottom: 14px;
    }

    .web-meta span {
        width: 100%;
    }

    .web-doctor-marquee {
        overflow: hidden;
        padding: 0;
    }

    .web-doctor-marquee__track {
        width: max-content;
        display: flex;
        gap: 12px;
    }

    .web-doctor-marquee__track.is-animated {
        animation-duration: 36s;
    }

    .web-doctor-card {
        width: 280px;
        height: 182px;
        flex: 0 0 280px;
        padding: 16px;
        gap: 14px;
    }

    .web-doctor-card__avatar {
        flex: 0 0 72px;
        width: 72px;
        height: 72px;
        border-radius: 18px;
    }

    .web-doctor-card h3 {
        font-size: 16px;
    }

    .web-doctor-card__hospital,
    .web-doctor-card__desc,
    .web-doctor-card__summary {
        margin-top: 6px;
        font-size: 12px;
        line-height: 1.45;
    }

    .web-hospital-grid {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 2px 2px 8px;
        margin: 0 -2px;
        scroll-snap-type: x proximity;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .web-hospital-grid::-webkit-scrollbar {
        display: none;
    }

    .web-hospital-card {
        flex: 0 0 auto;
        width: auto;
        min-width: 104px;
        max-width: min(72vw, 240px);
        min-height: 78px;
        padding: 14px 14px;
        border-radius: 16px;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
        scroll-snap-align: start;
    }

    .web-hospital-card h3 {
        display: block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-size: 13px;
        line-height: 1.4;
    }

    .web-hospital-ticker {
        display: none;
    }

    .web-panel {
        min-height: 92px;
        padding: 14px;
    }

    .web-panel strong {
        font-size: 24px;
    }

    .web-panel span {
        margin-top: 6px;
        font-size: 12px;
        line-height: 1.35;
    }

    .web-guide-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .web-guide-hero__meta {
        align-items: flex-start;
        white-space: normal;
    }

    .web-list-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 18px;
    }

    .web-list-item__meta {
        width: 100%;
        justify-content: space-between;
    }

    .web-list-item__title {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-height: 1.5;
    }

    .web-search-form {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .web-search-form__input {
        width: 100%;
    }

    .web-search-form__button {
        min-width: 78px;
    }

    .web-section__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .web-footer {
        padding-bottom: 16px;
    }

    .web-footer__inner {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 16px 18px;
        flex-wrap: nowrap;
    }

    .web-footer__inner strong {
        margin-bottom: 0;
        font-size: 13px;
        white-space: nowrap;
    }

    .web-footer__meta {
        gap: 8px;
        flex-wrap: nowrap;
        min-width: 0;
    }

    .web-footer__meta span {
        white-space: nowrap;
        font-size: 12px;
    }

    .web-footer__meta span:first-child:not(:last-child) {
        display: none;
    }
}
