.health-page,
.health-detail-page {
    --green-1: #0f766e;
    --green-2: #14b8a6;
    --text-1: #16302b;
    --text-2: #4b635d;
    --line: #d9ece7;
    --white: #ffffff;
    --shadow: 0 16px 40px rgba(15, 118, 110, 0.08);
    background: linear-gradient(180deg, #f7fffd 0%, #f6fbff 100%);
    color: var(--text-1);
    min-height: 100vh;
}
.health-page .container,
.health-detail-page .container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}
.health-hero,
.health-detail-top { padding: 34px 0 22px; }
.health-hero__box,
.health-detail-hero {
    background: linear-gradient(135deg, #ecfdf5 0%, #effcff 100%);
    border: 1px solid #d8efe7;
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.health-hero__box::after,
.health-detail-hero::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(20,184,166,.18) 0%, rgba(20,184,166,0) 70%);
    right: -40px;
    top: -40px;
}
.health-eyebrow,
.health-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(20,184,166,.10);
    color: var(--green-1);
    border: 1px solid rgba(20,184,166,.18);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
}
.health-hero h1,
.health-detail-title h1 {
    margin: 16px 0 12px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.18;
    color: #0f3f38;
}
.health-hero p,
.health-detail-intro {
    max-width: 840px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-2);
    margin: 0;
}
.health-hero__actions,
.health-detail-actions,
.health-card__actions,
.health-search {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.health-hero__actions,
.health-detail-actions { margin-top: 24px; }
.health-btn,
.health-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: all .2s ease;
}
.health-btn--primary {
    background: linear-gradient(135deg, var(--green-1), var(--green-2));
    color: #fff;
    box-shadow: 0 10px 24px rgba(20,184,166,.22);
}
.health-btn--ghost,
.health-btn--secondary {
    background: #fff;
    color: var(--green-1);
    border: 1px solid #cfe9e2;
}
.health-btn:hover,
.health-link:hover { transform: translateY(-1px); }
.health-note { margin-top: 16px; font-size: 14px; color: #5c746d; }
.health-video-slider {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.health-video-card {
    background: #fff;
    border: 1px solid #d9ece7;
    border-radius: 22px;
    padding: 16px;
    box-shadow: var(--shadow);
}
.health-video-frame {
    position: relative;
    padding-top: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}
.health-video-frame iframe {
    position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.health-video-card h3 { margin: 14px 0 8px; font-size: 18px; color: #143c35; }
.health-video-card p { margin: 0; color: var(--text-2); line-height: 1.7; font-size: 14px; }
.health-search { margin: 26px 0 22px; }
.health-search input {
    flex: 1; min-width: 260px; height: 52px; padding: 0 16px;
    border: 1px solid #cfe4de; border-radius: 16px; font-size: 15px;
    outline: none; background: #fff;
}
.health-search input:focus { border-color: #14b8a6; box-shadow: 0 0 0 4px rgba(20,184,166,.10); }
.health-search button {
    height: 52px; padding: 0 18px; border: 0; border-radius: 16px; font-weight: 700; cursor: pointer;
    background: linear-gradient(135deg, var(--green-1), var(--green-2)); color: #fff;
}
.health-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.health-grid--related { margin: 18px 0 40px; }
.health-card,
.health-block {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--shadow);
}
.health-card { display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.health-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(15,118,110,.12); border-color: #bfe6dd; }
.health-card__icon,
.health-detail-title__icon,
.health-block__icon {
    width: 56px; height: 56px; border-radius: 18px; display: inline-flex;
    align-items: center; justify-content: center;
    background: linear-gradient(135deg, #ecfeff, #ecfdf5);
    border: 1px solid #d9f2ea; font-size: 26px;
}
.health-title-row { display:flex; align-items:center; gap:14px; margin-top:16px; }
.health-card__title { margin: 16px 0 12px; font-size: 22px; line-height: 1.35; color: #143c35; }
.health-card__text,
.health-block__body,
.health-empty { color: var(--text-2); line-height: 1.75; }
.health-card__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.health-chip {
    display: inline-flex; align-items: center; gap: 6px; background: #f4fffb; color: var(--green-1);
    border: 1px solid #d6eee7; border-radius: 999px; padding: 7px 12px; font-size: 13px; font-weight: 600;
}
.health-link--detail { background: #f1fffb; color: var(--green-1); border: 1px solid #cdebe3; }
.health-link--contact { background: transparent; color: #2563eb; border: 1px solid #dbe7ff; }
.health-breadcrumb {
    display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: #66807a; font-size: 14px; margin-bottom: 18px;
}
.health-breadcrumb a { color: var(--green-1); text-decoration: none; font-weight: 600; }
.health-blocks { display: grid; gap: 20px; margin-top: 22px; }
.health-block__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.health-block__head h2, .health-related__head h2 { margin: 0; font-size: 24px; color: #153b35; }
.health-block__body h3 { margin: 0 0 10px; font-size: 18px; color: #0f766e; }
.health-block__body p, .health-block__body ul, .health-block__body ol { margin: 0 0 14px; }
.health-block__body ul, .health-block__body ol { padding-left: 22px; }
.health-empty {
    background: #fff; border: 1px dashed #cfe3de; border-radius: 24px; padding: 32px; text-align: center;
}
.health-related { margin-top: 30px; }
@media (max-width: 1024px) {
    .health-grid, .health-video-slider { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
    .health-grid, .health-video-slider { grid-template-columns: 1fr; }
    .health-hero__box, .health-detail-hero, .health-card, .health-block { border-radius: 20px; padding: 20px; }
}
