/* Steelh Cases */
.case-archive,
.case-detail {
    color: #222;
    background: #f3f5fa;
}

.case-breadcrumbs {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.4;
    color: #6d7784;
}

.case-breadcrumbs a {
    color: inherit;
}

.case-breadcrumbs--light,
.case-breadcrumbs--light a {
    color: rgba(255,255,255,.82);
}

.case-archive__hero {
    padding: 190px 0 80px;
    background:
        linear-gradient(135deg, rgba(27,32,40,.96), rgba(0,86,156,.86)),
        url("../bg/horizontal_bg.jpg") center/cover no-repeat;
    color: #fff;
}

.case-archive__eyebrow,
.case-section__eyebrow,
.case-hero__label {
    margin-bottom: 14px;
    color: #1a7fbe;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.case-archive__hero .case-archive__eyebrow {
    color: #b7cce5;
}

.case-archive__title,
.case-hero__title {
    max-width: 980px;
    margin: 0 0 25px;
    color: inherit;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 700;
}

.case-archive__intro {
    max-width: 850px;
    font-size: 20px;
    line-height: 1.55;
}

.case-archive__intro p:last-child {
    margin-bottom: 0;
}

.case-archive__list,
.case-archive__bottom {
    padding: 80px 0;
}

.case-archive__bottom {
    background: #fff;
}

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

.case-card {
    display: flex;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    flex-direction: column;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 20px 45px rgba(46,91,132,.10);
    transition: transform .25s ease, box-shadow .25s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 55px rgba(46,91,132,.17);
}

.case-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #dbe3ec;
}

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

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

.case-card__placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: #00569c;
    font-size: 20px;
    font-weight: 700;
}

.case-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px;
}

.case-card__meta {
    display: flex;
    min-height: 24px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 8px;
}

.case-card__meta span,
.case-tags span {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 30px;
    background: #e9eef5;
    color: #465362;
    font-size: 12px;
    line-height: 1.2;
}

.case-card__title {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.25;
}

.case-card__title a {
    color: #222;
}

.case-card__excerpt {
    margin-bottom: 24px;
    color: #586270;
    font-size: 15px;
    line-height: 1.55;
}

.case-card__more {
    margin-top: auto;
    align-self: flex-start;
}

.case-pagination {
    margin-top: 50px;
}

.case-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.case-pagination .page-numbers {
    display: inline-flex;
    min-width: 44px;
    height: 44px;
    padding: 0 13px;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #fff;
    color: #222;
}

.case-pagination .page-numbers.current,
.case-pagination .page-numbers:hover {
    background: #00569c;
    color: #fff;
}

.case-empty {
    padding: 40px;
    border-radius: 18px;
    background: #fff;
    text-align: center;
}

.case-hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    padding: 185px 0 85px;
    background-color: #1b2028;
    background-position: center;
    background-size: cover;
    color: #fff;
}

.case-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17,25,34,.96) 0%, rgba(17,25,34,.83) 53%, rgba(17,25,34,.35) 100%),
        linear-gradient(0deg, rgba(17,25,34,.62), transparent 50%);
}

.case-hero__container {
    position: relative;
    z-index: 2;
}

.case-hero__label {
    color: #b7cce5;
}

.case-hero__subtitle {
    max-width: 850px;
    margin-bottom: 30px;
    font-size: 21px;
    line-height: 1.5;
}

.case-hero__subtitle p:last-child {
    margin-bottom: 0;
}

.case-hero__facts {
    display: flex;
    max-width: 950px;
    margin: 0 0 30px;
    flex-wrap: wrap;
    gap: 12px;
}

.case-hero__facts > div {
    min-width: 200px;
    padding: 15px 18px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 13px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
}

.case-hero__facts span,
.case-hero__facts strong {
    display: block;
}

.case-hero__facts span {
    margin-bottom: 5px;
    color: rgba(255,255,255,.67);
    font-size: 12px;
    text-transform: uppercase;
}

.case-hero__facts strong {
    font-size: 15px;
    line-height: 1.35;
}

.case-hero__points {
    display: grid;
    max-width: 960px;
    margin-bottom: 35px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
}

.case-hero__point {
    display: flex;
    align-items: center;
    font-size: 15px;
    line-height: 1.4;
}

.case-hero__point strong {
    display: block;
    color: #b7cce5;
}

.case-hero__point-icon {
    display: flex;
    width: 38px;
    height: 38px;
    margin-right: 12px;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #00569c;
    color: #fff;
    font-weight: 700;
}

.case-hero__point-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.case-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.case-nav {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid #dbe2ea;
    background: rgba(255,255,255,.96);
    box-shadow: 0 8px 22px rgba(46,91,132,.07);
    backdrop-filter: blur(12px);
}

.admin-bar .case-nav {
    top: 32px;
}

.case-nav__scroll {
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin;
}

.case-nav__scroll a {
    display: inline-flex;
    min-width: max-content;
    padding: 20px 17px;
    border-bottom: 3px solid transparent;
    color: #465362;
    font-size: 14px;
    font-weight: 600;
}

.case-nav__scroll a:hover,
.case-nav__scroll a.is-active {
    border-color: #00569c;
    color: #00569c;
}

.case-section {
    padding: 85px 0;
    scroll-margin-top: 90px;
}

.case-section--white {
    background: #fff;
}

.case-section__head {
    max-width: 850px;
    margin-bottom: 40px;
}

.case-section__title {
    margin: 0;
    color: #222;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 700;
}

.case-content {
    max-width: 1000px;
    font-size: 17px;
    line-height: 1.7;
}

.case-content h2,
.case-content h3 {
    margin-top: 1.5em;
}

.case-content img {
    height: auto;
}

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

.case-summary__item,
.case-metric,
.case-result {
    padding: 30px;
    border-radius: 18px;
    background: #f3f5fa;
}

.case-summary__number {
    margin-bottom: 22px;
    color: #1a7fbe;
    font-size: 42px;
    line-height: 1;
    font-weight: 200;
}

.case-summary h3,
.case-metric h3,
.case-result h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.3;
}

.case-summary p,
.case-metric p,
.case-result p {
    margin: 0;
    color: #586270;
    font-size: 15px;
    line-height: 1.55;
}

.case-situation {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    gap: 40px;
}

.case-situation .case-tags {
    grid-column: 1 / -1;
}

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

.case-problems__item {
    position: relative;
    padding: 18px 20px 18px 50px;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(46,91,132,.08);
}

.case-problems__item::before {
    position: absolute;
    top: 18px;
    left: 19px;
    display: flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #da4645;
    color: #fff;
    content: "!";
    font-size: 13px;
    font-weight: 700;
}

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

.case-gallery-group + .case-gallery-group {
    margin-top: 45px;
}

.case-gallery-group__title {
    margin: 0 0 20px;
    font-size: 25px;
}

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

.case-gallery__item {
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    background: #f3f5fa;
    box-shadow: 0 15px 35px rgba(46,91,132,.08);
}

.case-gallery__item a {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.case-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.case-gallery__item:hover img {
    transform: scale(1.03);
}

.case-gallery__item figcaption {
    padding: 15px 17px;
    color: #465362;
    font-size: 14px;
    line-height: 1.45;
}

.case-metrics {
    display: grid;
    margin-bottom: 35px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.case-metric {
    background: #fff;
}

.case-metric__value,
.case-result__value {
    margin-bottom: 16px;
    color: #00569c;
    font-size: 38px;
    line-height: 1;
    font-weight: 700;
}

.case-metric__value span,
.case-result__value span {
    margin-left: 5px;
    font-size: 16px;
    font-weight: 600;
}

.case-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(46,91,132,.08);
}

.case-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.case-table th,
.case-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #e3e8ef;
    text-align: left;
    vertical-align: top;
}

.case-table th {
    background: #1b2028;
    color: #fff;
    font-size: 14px;
}

.case-table td {
    font-size: 15px;
    line-height: 1.45;
}

.case-steps {
    display: grid;
    gap: 18px;
}

.case-step {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) minmax(0, 260px);
    gap: 25px;
    align-items: center;
    padding: 24px;
    border: 1px solid #e1e6ed;
    border-radius: 16px;
}

.case-step__number {
    color: #1a7fbe;
    font-size: 34px;
    line-height: 1;
    font-weight: 200;
}

.case-step h3 {
    margin: 0 0 10px;
    font-size: 21px;
}

.case-step p {
    margin: 0;
    color: #586270;
    line-height: 1.55;
}

.case-step__image {
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16 / 10;
}

.case-step__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-results {
    background:
        linear-gradient(135deg, rgba(27,32,40,.98), rgba(0,86,156,.90)),
        url("../bg/horizontal_bg.jpg") center/cover no-repeat;
    color: #fff;
}

.case-results .case-section__eyebrow {
    color: #b7cce5;
}

.case-results .case-section__title {
    color: #fff;
}

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

.case-result {
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
}

.case-result__check {
    display: flex;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1a7fbe;
    font-size: 23px;
}

.case-result__value {
    color: #b7cce5;
}

.case-result h3 {
    color: #fff;
}

.case-result p {
    color: rgba(255,255,255,.78);
}

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

.case-document {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid #e2e7ee;
    border-radius: 17px;
}

.case-document__image {
    display: flex;
    height: 240px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f3f5fa;
}

.case-document__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.case-document__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 23px;
}

.case-document h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.case-document p {
    margin: 0 0 20px;
    color: #586270;
    font-size: 15px;
    line-height: 1.55;
}

.case-document .link-animate {
    margin-top: auto;
    align-self: flex-start;
}

.case-faq {
    max-width: 1000px;
}

.case-faq .accordion-item {
    overflow: hidden;
    border-radius: 14px;
}

.case-faq .accordion-button {
    padding: 22px 25px;
    font-size: 17px;
}

.case-faq .accordion-body {
    padding: 0 25px 25px;
    font-size: 16px;
    line-height: 1.65;
}

.case-cta {
    padding: 85px 0;
    background:
        linear-gradient(135deg, rgba(234,238,243,.96), rgba(183,204,229,.86)),
        url("../bg/bottom_bg.jpg") bottom center/cover no-repeat;
}

.case-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
    gap: 55px;
    align-items: center;
}

.case-cta__content h2 {
    margin: 0 0 20px;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
}

.case-cta__content > p {
    max-width: 720px;
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.6;
}

.case-cta__points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
}

.case-cta__points span {
    position: relative;
    padding-left: 27px;
    line-height: 1.4;
}

.case-cta__points span::before {
    position: absolute;
    left: 0;
    color: #00569c;
    content: "✓";
    font-weight: 700;
}

.case-cta__form {
    margin-bottom: 0;
}

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

.case-link-card {
    display: flex;
    min-height: 105px;
    padding: 24px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e1e6ed;
    border-radius: 15px;
    color: #222;
    font-size: 18px;
    font-weight: 600;
}

.case-link-card:hover {
    border-color: #00569c;
    background: #f3f5fa;
    color: #00569c;
}

.case-link-card b {
    margin-left: 15px;
    color: #00569c;
    font-size: 25px;
}

@media (max-width: 1199px) {
    .case-archive__grid,
    .case-gallery,
    .case-results__grid,
    .case-documents,
    .case-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .case-step {
        grid-template-columns: 60px minmax(0, 1fr) 220px;
    }
}

@media (max-width: 991px) {
    .case-archive__hero {
        padding-top: 150px;
    }

    .case-hero {
        min-height: auto;
        padding-top: 145px;
    }

    .case-hero__overlay {
        background: rgba(17,25,34,.84);
    }

    .case-summary {
        grid-template-columns: 1fr;
    }

    .case-situation {
        grid-template-columns: 1fr;
    }

    .case-step {
        grid-template-columns: 55px minmax(0, 1fr);
    }

    .case-step__image {
        grid-column: 2;
        max-width: 420px;
    }

    .case-cta__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 782px) {
    .admin-bar .case-nav {
        top: 46px;
    }
}

@media (max-width: 767px) {
    .case-archive__hero {
        padding: 125px 0 55px;
    }

    .case-archive__list,
    .case-archive__bottom,
    .case-section,
    .case-cta {
        padding: 60px 0;
    }

    .case-archive__intro,
    .case-hero__subtitle {
        font-size: 17px;
    }

    .case-archive__grid,
    .case-gallery,
    .case-results__grid,
    .case-documents,
    .case-links-grid,
    .case-metrics {
        grid-template-columns: 1fr;
    }

    .case-hero {
        padding: 120px 0 65px;
    }

    .case-hero__points {
        grid-template-columns: 1fr;
    }

    .case-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .case-hero__actions .site-btn {
        width: 100%;
        justify-content: center;
    }

    .case-nav__scroll a {
        padding: 16px 13px;
    }

    .case-section__head {
        margin-bottom: 30px;
    }

    .case-step {
        grid-template-columns: 44px minmax(0, 1fr);
        padding: 20px;
        gap: 18px;
    }

    .case-step__number {
        font-size: 27px;
    }

    .case-step__image {
        grid-column: 1 / -1;
    }

    .case-cta__points {
        grid-template-columns: 1fr;
    }

    .case-cta__form .zayavka_b {
        padding: 30px 22px;
    }
}

@media (max-width: 480px) {
    .case-card__body,
    .case-summary__item,
    .case-metric,
    .case-result {
        padding: 21px;
    }

    .case-hero__facts {
        display: grid;
        grid-template-columns: 1fr;
    }

    .case-hero__facts > div {
        min-width: 0;
    }

    .case-table th,
    .case-table td {
        padding: 15px;
    }
}

/* 1.1.0 — единая визуальная система SteelH / Soltyk. */
:root{
    --steelh-accent:#087cad;
    --steelh-accent-strong:#005f91;
    --steelh-dark:#17222d;
    --steelh-text:#222b33;
    --steelh-muted:#5c6975;
    --steelh-surface:#fff;
    --steelh-surface-alt:#f3f6f9;
    --steelh-border:#dfe7ed;
    --steelh-radius:18px;
    --steelh-shadow:0 18px 45px rgba(25,54,74,.10);
}
.case-archive,.case-detail{color:var(--steelh-text);background:var(--steelh-surface-alt)}
.case-archive__hero{
    position:relative;
    overflow:hidden;
    padding:92px 0 82px;
    background-color:var(--steelh-dark);
    background-position:center;
    background-size:cover;
    color:#fff;
}
.case-archive__overlay{position:absolute;inset:0;z-index:0;background:linear-gradient(90deg,rgba(16,27,38,.96),rgba(16,27,38,.78) 62%,rgba(16,27,38,.48))}
.case-archive__hero:not(.has-image) .case-archive__overlay{background:linear-gradient(135deg,#17222d,#0a5f8e)}
.case-archive__hero>.container{position:relative;z-index:1}
.case-hero{min-height:650px;padding:92px 0 82px}
.case-card,.case-summary__item,.case-metric,.case-result,.case-document,.case-link-card,.case-step{border:1px solid var(--steelh-border);border-radius:var(--steelh-radius);box-shadow:var(--steelh-shadow)}
.case-card{transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.case-card:hover{transform:translateY(-3px);border-color:#c9dbe6;box-shadow:0 24px 55px rgba(25,54,74,.15)}
.case-card__image{background:linear-gradient(135deg,#dce8ef,#f5f8fa)}
.case-card__placeholder{position:relative;background:radial-gradient(circle at 78% 22%,rgba(255,255,255,.92),transparent 35%),linear-gradient(135deg,#dce8ef,#f4f7f9);font-size:0}
.case-card__placeholder::before{content:'СР';display:grid;width:72px;height:72px;place-items:center;border-radius:20px;background:var(--steelh-accent);color:#fff;font-size:23px;font-weight:800;letter-spacing:.05em;box-shadow:0 16px 32px rgba(8,124,173,.24)}
.case-card__title a,.case-link-card h3 a{color:var(--steelh-text);text-decoration:none}
.case-card__title a:hover,.case-link-card h3 a:hover,.case-card__more:hover{color:var(--steelh-accent-strong)}
.case-card__more{color:var(--steelh-accent)}
.case-content table{display:block;width:100%;max-width:100%;overflow-x:auto;border-collapse:collapse;margin:28px 0;background:#fff}
.case-content th,.case-content td{min-width:140px;padding:13px 15px;border:1px solid var(--steelh-border);text-align:left;vertical-align:top}
.case-content th{background:var(--steelh-dark);color:#fff}
.case-content figure{max-width:100%;margin:30px 0}
.case-content figcaption{padding-top:10px;color:var(--steelh-muted);font-size:14px;line-height:1.5;text-align:center}
.case-content iframe,.case-content video{max-width:100%}
.case-cta__lead p:last-child{margin-bottom:0}

/* Шапка темы находится в потоке и не сливается с первым экраном. */
body.steelh-cases-page.wp-theme-steelh .header{
    position:relative!important;
    top:auto!important;
    left:auto!important;
    width:100%!important;
    height:auto!important;
    padding:12px 0 0!important;
    background:#fff!important;
    color:var(--steelh-text)!important;
    box-shadow:0 2px 14px rgba(16,41,56,.10);
    z-index:90!important;
}
body.steelh-cases-page.wp-theme-steelh.admin-bar .header,
body.steelh-cases-page.wp-theme-steelh.admin-bar .header.white{height:auto!important;padding:12px 0 0!important}
body.steelh-cases-page.wp-theme-steelh .header .header-inner,
body.steelh-cases-page.wp-theme-steelh .header .header-inner a,
body.steelh-cases-page.wp-theme-steelh .header .header-inner .black,
body.steelh-cases-page.wp-theme-steelh .header .header-menu a{color:var(--steelh-text)!important}
body.steelh-cases-page.wp-theme-steelh .header .header-logo img{filter:brightness(0) saturate(100%)!important}
body.steelh-cases-page.wp-theme-steelh .header .header-burger-line{background:var(--steelh-text)!important}
body.steelh-cases-page.wp-theme-steelh .header-menu{margin-top:8px}
body.steelh-cases-page.wp-theme-steelh .header-menu-bottom{border-top:1px solid rgba(16,41,56,.10)!important}
body.steelh-cases-page.wp-theme-steelh .header-menu .srv-menu-region-switcher__button{color:var(--steelh-text)!important}
body.steelh-cases-page.wp-theme-steelh .header-menu .srv-region-switcher__dropdown a{color:var(--steelh-text)!important}

/* Cookie-уведомление не перекрывает навигацию и CTA. */
body.steelh-cases-page #cookie_notification{
    top:auto!important;
    right:auto!important;
    bottom:16px!important;
    left:50%!important;
    width:min(calc(100% - 32px),760px)!important;
    max-width:760px!important;
    margin:0!important;
    transform:translateX(-50%)!important;
    z-index:99999!important;
}
.case-card a:focus-visible,.case-breadcrumbs a:focus-visible,.case-nav a:focus-visible,.case-content a:focus-visible,.case-cta a:focus-visible,.case-link-card a:focus-visible{outline:3px solid rgba(8,124,173,.34);outline-offset:3px}

@media(max-width:991px){
    body.steelh-cases-page.wp-theme-steelh .header{padding:8px 0!important}
    body.steelh-cases-page.wp-theme-steelh .header-menu{margin-top:0}
    .case-archive__hero,.case-hero{padding:72px 0 64px}
    .case-hero{min-height:560px}
}
@media(max-width:680px){
    body.steelh-cases-page #cookie_notification{bottom:8px!important;width:calc(100% - 16px)!important}
    .case-card__placeholder::before{width:60px;height:60px;border-radius:17px;font-size:20px}
    .case-archive__hero,.case-hero{padding:54px 0 48px}
    .case-hero{min-height:0}
}
@media(prefers-reduced-motion:reduce){
    .case-card,.case-card__image img{transition:none!important}
    html:focus-within{scroll-behavior:auto}
}
@media print{
    .steelh-cases-page .header,.case-breadcrumbs,.case-nav,.case-cta,.case-links,footer,#cookie_notification{display:none!important}
    .case-hero,.case-archive__hero{min-height:0;padding:20px 0;background:#fff!important;color:#000!important}
    .case-hero__overlay,.case-archive__overlay{display:none!important}
    .case-hero__title,.case-archive__title,.case-hero__subtitle{color:#000!important}
    .case-section,.case-archive__list,.case-archive__bottom{padding:20px 0}
}

/* В версии 1.0.0 эти секции ссылались на фоновые файлы темы, которых нет в ZIP. */
.case-archive__hero{background-image:none}
.case-results{background:linear-gradient(135deg,rgba(23,34,45,.99),rgba(0,95,145,.92));color:#fff}
.case-cta{background:linear-gradient(135deg,#eef3f6,#dce8ef)}
