/* TenuMed Case Audit Center */
.case-audit-index-hero,
.case-report-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 8vw, 118px) 0 clamp(54px, 6vw, 86px);
    border-bottom: 1px solid #dbe8f3;
    background:
        linear-gradient(120deg, rgba(248,251,254,.98), rgba(255,255,255,.96) 62%, rgba(231,242,252,.9)),
        linear-gradient(90deg, rgba(0,74,153,.08), transparent 58%);
}

.case-audit-index-hero::after,
.case-report-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(10,31,58,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,31,58,.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(90deg, rgba(0,0,0,.55), transparent 76%);
}

.case-audit-index-hero .container,
.case-report-hero .container,
.case-audit-index .container,
.case-report-body .container {
    position: relative;
    z-index: 1;
}

.case-audit-index-hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: clamp(32px, 7vw, 90px);
    align-items: end;
}

.case-audit-index-hero__content > span,
.case-audit-section-head span,
.case-report-hero__copy > span,
.case-report-section > span,
.case-report-expert > span,
.case-report-cta span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0066cc;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.case-audit-index-hero__content > span::before,
.case-audit-section-head span::before,
.case-report-hero__copy > span::before,
.case-report-expert > span::before,
.case-report-cta span::before {
    content: "";
    width: 34px;
    height: 1px;
    background: #0066cc;
}

.case-audit-index-hero h1,
.case-report-hero h1 {
    max-width: 960px;
    margin: 18px 0 18px;
    color: #071f3d;
    font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

.case-audit-index-hero p,
.case-report-hero p {
    max-width: 780px;
    margin: 0;
    color: #43566f;
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.85;
}

.case-audit-index-hero__meta {
    padding: 26px;
    border: 1px solid #d7e5f2;
    border-radius: 16px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 28px 70px rgba(10,45,84,.08);
}

.case-audit-index-hero__meta small,
.case-audit-index-hero__meta span {
    display: block;
    color: #6b7d94;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}

.case-audit-index-hero__meta strong {
    display: block;
    margin: 10px 0 4px;
    color: #071f3d;
    font-size: 66px;
    font-weight: 900;
    line-height: .95;
}

.case-audit-index,
.case-report-body {
    padding: clamp(52px, 7vw, 92px) 0 clamp(72px, 8vw, 118px);
    background: linear-gradient(180deg, #fbfdff, #f4f8fc);
}

.case-audit-section-head {
    margin-bottom: 28px;
}

.case-audit-section-head h2 {
    margin: 12px 0 0;
    color: #071f3d;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.18;
}

.case-audit-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.case-audit-card {
    display: block;
    overflow: hidden;
    min-height: 100%;
    border: 1px solid #dce9f5;
    border-radius: 16px;
    background: #fff;
    color: #071f3d;
    text-decoration: none;
    box-shadow: 0 20px 54px rgba(7,31,61,.08);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.case-audit-card:hover {
    border-color: #b8d7f0;
    box-shadow: 0 28px 74px rgba(7,31,61,.14);
    transform: translateY(-4px);
}

.case-audit-card__image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #edf5fb;
}

.case-audit-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .32s ease;
}

.case-audit-card:hover .case-audit-card__image img {
    transform: scale(1.035);
}

.case-audit-card__body {
    display: grid;
    gap: 12px;
    padding: 24px;
}

.case-audit-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.case-audit-card__meta b,
.case-audit-card__meta em,
.case-report-hero__tags b {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid #d4e5f4;
    border-radius: 999px;
    background: #f3f8fe;
    color: #0b559f;
    font-size: 12px;
    font-style: normal;
    font-weight: 850;
}

.case-audit-card__body > strong {
    color: #071f3d;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.32;
    overflow-wrap: anywhere;
}

.case-audit-card__body p {
    margin: 0;
    color: #526a84;
    font-size: 15px;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.case-audit-card__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    color: #0066cc;
    font-size: 14px;
    font-weight: 900;
}

.case-audit-empty {
    padding: 34px;
    border: 1px solid #dbe8f6;
    border-radius: 18px;
    background: #fff;
    color: #4f667c;
}

.case-audit-empty strong {
    display: block;
    margin-bottom: 8px;
    color: #08213f;
    font-size: 20px;
}

.case-audit-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 34px;
    color: #0066cc;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
}

.case-report-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 500px);
    gap: clamp(34px, 6vw, 78px);
    align-items: end;
}

.case-report-hero__image {
    overflow: hidden;
    margin: 0;
    border: 1px solid #d7e5f2;
    border-radius: 18px;
    background: #edf5fb;
    box-shadow: 0 24px 70px rgba(7,31,61,.12);
}

.case-report-hero__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 10;
    display: block;
    object-fit: cover;
}

.case-report-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.case-report-summary {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1px;
    overflow: hidden;
    margin-bottom: 34px;
    border: 1px solid #dbe8f6;
    border-radius: 18px;
    background: #dbe8f6;
    box-shadow: 0 18px 46px rgba(7,31,61,.06);
}

.case-report-summary div {
    padding: 24px;
    background: #fff;
}

.case-report-summary small {
    display: block;
    margin-bottom: 10px;
    color: #0066cc;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
}

.case-report-summary p {
    margin: 0;
    color: #173552;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.75;
}

.case-report-section {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: clamp(20px, 3vw, 38px);
    padding: clamp(28px, 4vw, 46px) 0;
    border-bottom: 1px solid #d9e6f2;
}

.case-report-section > span {
    width: 54px;
    height: 54px;
    justify-content: center;
    border: 1px solid #c9deef;
    border-radius: 50%;
    background: #fff;
    color: #0066cc;
    letter-spacing: 0;
}

.case-report-section h2,
.case-report-expert h2,
.case-report-cta h2 {
    margin: 0 0 14px;
    color: #071f3d;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 900;
    line-height: 1.18;
}

.case-report-section p {
    max-width: 930px;
    margin: 0;
    color: #43566f;
    font-size: 16px;
    line-height: 1.9;
    overflow-wrap: anywhere;
}

.case-report-steps {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.case-report-steps li {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 18px;
    border: 1px solid #dce9f5;
    border-radius: 14px;
    background: #fff;
}

.case-report-steps b {
    color: #0066cc;
    font-size: 13px;
    font-weight: 900;
}

.case-report-results {
    display: grid;
    gap: 12px;
}

.case-report-results p {
    display: flex;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid #dce9f5;
    border-radius: 14px;
    background: #fff;
}

.case-report-results i {
    display: inline-grid;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    background: #e7f4ff;
    color: #0066cc;
    font-size: 11px;
}

.case-report-expert {
    margin-top: 36px;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid #cfe1f1;
    border-radius: 18px;
    background: #eef6ff;
}

.case-report-expert p {
    max-width: 920px;
    margin: 0;
    color: #153452;
    font-size: 17px;
    line-height: 1.9;
}

.case-report-cta {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-top: 34px;
    padding: clamp(26px, 4vw, 42px);
    border-radius: 20px;
    background: #071f3d;
    color: #fff;
}

.case-report-cta h2 {
    max-width: 760px;
    margin-bottom: 0;
    color: #fff;
}

.case-report-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    background: #fff;
    color: #071f3d;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .case-audit-index-hero .container,
    .case-report-hero__grid,
    .case-report-summary {
        grid-template-columns: 1fr;
    }

    .case-audit-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .case-audit-index-hero,
    .case-report-hero {
        padding: 44px 0 36px;
    }

    .case-audit-index-hero h1,
    .case-report-hero h1 {
        font-size: 34px;
    }

    .case-audit-index,
    .case-report-body {
        padding: 34px 0 52px;
    }

    .case-audit-card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .case-audit-card__body {
        padding: 18px;
    }

    .case-report-section {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 28px 0;
    }

    .case-report-section > span {
        width: 44px;
        height: 44px;
    }

    .case-report-steps li {
        grid-template-columns: 42px minmax(0, 1fr);
        padding: 16px;
    }

    .case-report-cta {
        display: grid;
    }

    .case-report-cta a {
        width: 100%;
        white-space: normal;
    }
}
