.solution-page {
    --solution-fixed-header-height: 78px;
    --industry-menu-height: 90px;
    background: #f4f6f5;
}

.solution-page.solution-drawer-open {
    overflow: hidden;
}

.solution-page .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.solution-hero {
    color: var(--white);
    background: #173840;
}

.solution-hero-inner {
    padding-top: 44px;
    padding-bottom: 52px;
}

.solution-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 34px;
    color: #b9d0d2;
    font-size: 13px;
}

.solution-breadcrumb a {
    transition: color 0.2s ease;
}

.solution-breadcrumb a:hover,
.solution-breadcrumb a:focus-visible {
    color: var(--white);
}

.solution-breadcrumb svg {
    width: 14px;
    height: 14px;
}

.solution-hero-copy {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 72px;
}

.solution-hero-copy > div:first-child {
    max-width: 760px;
}

.solution-hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.18;
}

.solution-hero-copy p {
    margin-top: 18px;
    color: #d3e0df;
    font-size: 17px;
    line-height: 1.9;
}

.solution-stats {
    display: grid;
    flex: 0 0 auto;
    grid-template-columns: repeat(3, 106px);
    gap: 12px;
}

.solution-stats > div {
    padding-left: 18px;
    border-left: 1px solid rgba(198, 221, 217, 0.32);
}

.solution-stats dt {
    color: #b9d0d2;
    font-size: 12px;
}

.solution-stats dd {
    margin-top: 2px;
    color: var(--white);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.solution-directory-section {
    padding: 38px 0 24px;
    background: var(--white);
}

.solution-section-heading,
.scenario-toolbar,
.scenario-directory-heading,
.scenario-group-header,
.solution-product-button,
.solution-drawer-header,
.solution-contact-link,
.solution-download {
    display: flex;
    align-items: center;
}

.solution-section-heading {
    justify-content: space-between;
    gap: 24px;
}

.solution-section-heading h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.solution-section-heading p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.solution-section-heading > span {
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 700;
}

.industry-tabs {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    overflow: hidden;
    background: #f5f8f6;
    border: 1px solid #d5dfda;
    border-radius: 6px;
}

.industry-menu-bar {
    position: sticky;
    top: var(--solution-fixed-header-height);
    z-index: 80;
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 28px rgba(23, 35, 31, 0.1);
    backdrop-filter: blur(10px);
}

.industry-tab {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 72px;
    align-content: center;
    gap: 3px;
    padding: 10px 14px;
    color: #52615b;
    text-align: left;
    background: #ffffff;
    border: 0;
    border-right: 1px solid var(--line);
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.industry-tab:last-child {
    border-right: 0;
}

.industry-tab::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.industry-tab:hover,
.industry-tab:focus-visible {
    color: var(--green-dark);
    background: #eaf3ef;
}

.industry-tab.is-active {
    color: var(--white);
    background: var(--green-dark);
}

.industry-tab.is-active::after {
    transform: scaleX(1);
}

.industry-tab-number {
    color: #7f9189;
    font-size: 10px;
    font-weight: 700;
}

.industry-tab-name {
    overflow-wrap: anywhere;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.industry-tab-count {
    color: #7a8983;
    font-size: 10px;
}

.industry-tab.is-active .industry-tab-number {
    color: #a8dfce;
}

.industry-tab.is-active .industry-tab-count {
    color: #c9e3da;
}

.industry-stage-section {
    padding: 40px 0 0;
}

.industry-overview {
    display: grid;
    min-height: 470px;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    overflow: hidden;
    color: var(--white);
    background: #173840;
    border-radius: 6px;
    scroll-margin-top: calc(var(--solution-fixed-header-height) + var(--industry-menu-height) + 18px);
}

.industry-overview-media {
    position: relative;
    min-height: 470px;
    overflow: hidden;
}

.industry-overview-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 31, 35, 0.05), rgba(9, 31, 35, 0.5));
}

.industry-overview-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-overview-media-label {
    position: absolute;
    right: 26px;
    bottom: 24px;
    left: 26px;
    z-index: 1;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.industry-overview-media-label span {
    font-size: 12px;
    font-weight: 700;
}

.industry-overview-media-label strong {
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
}

.industry-overview-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 52px 58px;
}

.industry-overview-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #95cbb9;
    font-size: 12px;
    font-weight: 700;
}

.industry-overview-kicker::before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--yellow);
}

.industry-overview-copy h2 {
    margin-top: 18px;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
}

.industry-overview-summary {
    margin-top: 24px;
    color: #f0f6f4;
    font-size: 17px;
    line-height: 1.9;
}

.industry-overview-detail {
    margin-top: 14px;
    color: #bcd0ce;
    font-size: 14px;
    line-height: 1.9;
}

.industry-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 32px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.industry-highlight {
    display: grid;
    min-height: 88px;
    align-content: center;
    gap: 7px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
}

.industry-highlight svg {
    width: 18px;
    height: 18px;
    color: #86d2b6;
}

.industry-highlight span {
    font-size: 12px;
    line-height: 1.45;
}

.scenario-section {
    padding: 40px 0 100px;
}

.scenario-layout {
    display: grid;
    grid-template-columns: 248px minmax(0, 1fr);
    align-items: start;
    gap: 32px;
}

.scenario-directory {
    position: sticky;
    top: calc(var(--solution-fixed-header-height) + var(--industry-menu-height) + 18px);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.scenario-directory-heading {
    justify-content: space-between;
    gap: 18px;
    padding: 24px 22px 20px;
    border-bottom: 1px solid var(--line);
}

.scenario-directory-heading h2 {
    font-size: 20px;
    font-weight: 700;
}

.scenario-directory-heading p {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
}

.scenario-directory-heading svg {
    width: 22px;
    height: 22px;
    color: var(--green);
}

.scenario-links {
    max-height: calc(100vh - var(--solution-fixed-header-height) - var(--industry-menu-height) - 140px);
    overflow-y: auto;
    scrollbar-color: #b9cbc3 transparent;
    scrollbar-width: thin;
}

.scenario-link {
    display: grid;
    width: 100%;
    grid-template-columns: 26px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    color: #4f5e58;
    text-align: left;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #edf1ef;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.scenario-link:last-child {
    border-bottom: 0;
}

.scenario-link:hover,
.scenario-link:focus-visible,
.scenario-link.is-active {
    color: var(--green-dark);
    background: #edf5f1;
}

.scenario-link-number {
    color: #8a9993;
    font-size: 10px;
    font-weight: 700;
}

.scenario-link-name {
    min-width: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.scenario-link-count {
    min-width: 22px;
    color: #70817a;
    font-size: 10px;
    text-align: right;
}

.scenario-content {
    min-width: 0;
    padding: 0 36px 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.scenario-toolbar {
    min-height: 112px;
    justify-content: space-between;
    gap: 28px;
    border-bottom: 1px solid var(--line);
}

.scenario-toolbar h2 {
    font-size: 24px;
    font-weight: 700;
}

.scenario-toolbar p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.solution-search {
    display: grid;
    width: min(100%, 310px);
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    background: #f4f7f5;
    border: 1px solid #dfe7e3;
    border-radius: 4px;
}

.solution-search:focus-within {
    background: var(--white);
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(8, 124, 91, 0.1);
}

.solution-search svg {
    width: 18px;
    height: 18px;
    color: #76867f;
}

.solution-search input {
    width: 100%;
    height: 44px;
    color: var(--ink);
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 13px;
}

.solution-search input::placeholder {
    color: #8c9994;
}

.scenario-group {
    scroll-margin-top: calc(var(--solution-fixed-header-height) + var(--industry-menu-height) + 18px);
    padding: 30px 0 34px;
    border-bottom: 1px solid var(--line);
}

.scenario-group:last-child {
    border-bottom: 0;
}

.scenario-group-header {
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

.scenario-group-heading {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}

.scenario-group-number {
    display: inline-flex;
    width: 42px;
    height: 32px;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    background: #e9f3ef;
    border: 1px solid #cfe1d9;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.scenario-group-header h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.scenario-group-header > span {
    color: #72817b;
    font-size: 11px;
}

.solution-product-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
}

.solution-product-item {
    border-top: 1px solid #e4eae7;
}

.solution-product-button {
    width: 100%;
    min-height: 68px;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 4px;
    color: #273a33;
    text-align: left;
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: color 0.2s ease, padding 0.2s ease;
}

.solution-product-button:hover,
.solution-product-button:focus-visible {
    padding-right: 0;
    padding-left: 10px;
    color: var(--green);
}

.solution-product-copy {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.solution-product-copy strong {
    overflow-wrap: anywhere;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.solution-product-copy small {
    overflow: hidden;
    color: #78867f;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.solution-product-button > svg {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    color: var(--green);
}

.solution-empty {
    min-height: 360px;
    place-items: center;
    align-content: center;
    gap: 8px;
    color: var(--muted);
    text-align: center;
}

.solution-empty:not([hidden]) {
    display: grid;
}

.solution-empty svg {
    width: 34px;
    height: 34px;
    margin-bottom: 6px;
    color: #91a099;
}

.solution-empty h3 {
    color: var(--ink);
    font-size: 18px;
}

.solution-empty p {
    font-size: 13px;
}

.solution-drawer-shell {
    position: fixed;
    z-index: 1000;
    inset: 0;
}

.solution-drawer-shell[hidden] {
    display: none;
}

.solution-drawer-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 25, 27, 0.62);
    border: 0;
    cursor: default;
    animation: solution-fade-in 0.22s ease both;
}

.solution-drawer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: grid;
    width: min(720px, calc(100% - 80px));
    grid-template-rows: auto minmax(0, 1fr);
    background: var(--white);
    box-shadow: -24px 0 70px rgba(8, 25, 27, 0.24);
    animation: solution-slide-in 0.3s ease both;
}

.solution-drawer-header {
    min-height: 98px;
    justify-content: space-between;
    gap: 28px;
    padding: 22px 34px;
    background: #edf4f1;
    border-bottom: 1px solid #d7e4de;
}

.solution-drawer-header p {
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
}

.solution-drawer-header h2 {
    margin-top: 4px;
    overflow-wrap: anywhere;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.35;
}

.solution-drawer-close {
    display: inline-flex;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    background: var(--white);
    border: 1px solid #cedbd5;
    border-radius: 4px;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.solution-drawer-close:hover,
.solution-drawer-close:focus-visible {
    color: var(--green);
    border-color: var(--green);
    transform: rotate(5deg);
}

.solution-drawer-close svg {
    width: 20px;
    height: 20px;
}

.solution-drawer-body {
    overflow-y: auto;
    overscroll-behavior: contain;
}

.solution-detail-intro,
.solution-document,
.solution-detail-actions {
    padding-right: 42px;
    padding-left: 42px;
}

.solution-detail-intro {
    padding-top: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.solution-detail-label {
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
}

.solution-detail-intro h3 {
    margin-top: 10px;
    overflow-wrap: anywhere;
    font-size: 29px;
    font-weight: 700;
    line-height: 1.35;
}

.solution-detail-subtitle {
    margin-top: 10px;
    color: var(--teal);
    font-size: 13px;
}

.solution-document {
    padding-top: 30px;
    padding-bottom: 40px;
}

.solution-document-heading {
    position: relative;
    margin: 30px 0 14px;
    padding-left: 16px;
    color: var(--ink);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}

.solution-document-heading:first-child {
    margin-top: 0;
}

.solution-document-heading::before {
    content: "";
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 0;
    width: 4px;
    background: var(--green);
}

.solution-document-paragraph {
    margin-top: 12px;
    color: #4f5f59;
    font-size: 14px;
    line-height: 1.95;
}

.solution-document-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
    color: #4f5f59;
    font-size: 14px;
    line-height: 1.8;
}

.solution-document-list li {
    position: relative;
    padding-left: 18px;
}

.solution-document-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
}

.solution-document-note {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    margin-top: 20px;
    padding: 16px 18px;
    color: #53635c;
    background: #f3f7f5;
    border-left: 3px solid var(--yellow);
}

.solution-document-note svg {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    color: var(--green);
}

.solution-table-wrap {
    width: 100%;
    margin-top: 20px;
    overflow-x: auto;
    border: 1px solid #dce5e1;
    border-radius: 4px;
}

.solution-table {
    width: 100%;
    min-width: 590px;
    border-spacing: 0;
    border-collapse: collapse;
    color: #405049;
    font-size: 12px;
    line-height: 1.55;
}

.solution-table th,
.solution-table td {
    min-width: 108px;
    padding: 12px 13px;
    text-align: left;
    vertical-align: top;
    border-right: 1px solid #dce5e1;
    border-bottom: 1px solid #dce5e1;
}

.solution-table th {
    color: var(--green-dark);
    background: #eaf3ef;
    font-weight: 700;
}

.solution-table tr:last-child td {
    border-bottom: 0;
}

.solution-table th:last-child,
.solution-table td:last-child {
    border-right: 0;
}

.solution-detail-actions {
    padding-top: 30px;
    padding-bottom: 38px;
    background: #edf4f1;
    border-top: 1px solid #d7e4de;
}

.solution-detail-actions h3 {
    font-size: 18px;
    font-weight: 700;
}

.solution-detail-actions > p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
}

.solution-contact-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.solution-contact-link {
    min-height: 66px;
    gap: 11px;
    padding: 12px 14px;
    color: var(--green-dark);
    background: var(--white);
    border: 1px solid #d4e0da;
    border-radius: 4px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.solution-contact-link:hover,
.solution-contact-link:focus-visible {
    color: var(--green);
    border-color: var(--green);
}

.solution-contact-link svg {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
}

.solution-contact-link span {
    display: grid;
    min-width: 0;
}

.solution-contact-link small {
    color: #6d7c76;
    font-size: 10px;
}

.solution-contact-link strong {
    font-size: 12px;
    font-weight: 700;
}

.solution-download {
    min-height: 72px;
    justify-content: space-between;
    gap: 16px;
    margin-top: 14px;
    padding: 14px 18px;
    color: var(--white);
    background: var(--green-dark);
    border: 1px solid var(--green-dark);
    border-radius: 4px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.solution-download:hover,
.solution-download:focus-visible {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-2px);
}

.solution-download > svg {
    flex: 0 0 auto;
    width: 25px;
    height: 25px;
}

.solution-download-copy {
    display: grid;
    flex: 1;
    gap: 2px;
}

.solution-download-copy strong {
    font-size: 14px;
}

.solution-download-copy small {
    color: #c8ddd5;
    font-size: 10px;
}

@keyframes solution-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes solution-slide-in {
    from { transform: translateX(36px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 1180px) {
    .industry-tabs {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        scrollbar-width: thin;
    }

    .industry-tab {
        flex: 0 0 164px;
        scroll-snap-align: start;
    }

    .industry-overview-copy {
        padding: 44px 40px;
    }

    .scenario-layout {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 24px;
    }

    .scenario-content {
        padding-right: 28px;
        padding-left: 28px;
    }
}

@media (max-width: 1040px) {
    .solution-page {
        --solution-fixed-header-height: 72px;
    }
}

@media (max-width: 900px) {
    .solution-hero-copy {
        align-items: start;
        flex-direction: column;
        gap: 30px;
    }

    .industry-overview {
        grid-template-columns: minmax(0, 1fr);
    }

    .industry-overview-media {
        min-height: 330px;
        aspect-ratio: 16 / 8;
    }

    .industry-overview-copy {
        padding: 40px;
    }

    .scenario-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .scenario-directory {
        position: sticky;
        top: calc(var(--solution-fixed-header-height) + var(--industry-menu-height));
        z-index: 20;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
    }

    .scenario-directory-heading {
        min-width: 170px;
        padding: 16px 18px;
        border-right: 1px solid var(--line);
        border-bottom: 0;
    }

    .scenario-directory-heading svg {
        display: none;
    }

    .scenario-links {
        display: flex;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: thin;
    }

    .scenario-link {
        flex: 0 0 auto;
        min-width: 152px;
        border-right: 1px solid #edf1ef;
        border-bottom: 0;
    }

    .scenario-group {
        scroll-margin-top: calc(var(--solution-fixed-header-height) + var(--industry-menu-height) + 76px);
    }
}

@media (max-width: 680px) {
    .solution-page {
        --industry-menu-height: 86px;
    }

    .solution-hero-inner {
        padding-top: 28px;
        padding-bottom: 36px;
    }

    .solution-breadcrumb {
        margin-bottom: 24px;
    }

    .solution-hero h1 {
        font-size: 36px;
    }

    .solution-hero-copy p {
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.8;
    }

    .solution-stats {
        width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .solution-stats > div {
        padding-left: 12px;
    }

    .solution-stats dd {
        font-size: 25px;
    }

    .solution-directory-section {
        padding-top: 28px;
        padding-bottom: 18px;
    }

    .solution-section-heading {
        align-items: end;
    }

    .solution-section-heading h2 {
        font-size: 21px;
    }

    .solution-section-heading p {
        display: none;
    }

    .industry-tab {
        flex-basis: 138px;
        min-height: 68px;
        padding: 9px 12px;
    }

    .industry-stage-section {
        padding-top: 24px;
    }

    .industry-overview-media {
        min-height: 250px;
        aspect-ratio: 4 / 3;
    }

    .industry-overview-media-label strong {
        font-size: 30px;
    }

    .industry-overview-copy {
        padding: 30px 24px 32px;
    }

    .industry-overview-copy h2 {
        font-size: 29px;
    }

    .industry-overview-summary {
        margin-top: 18px;
        font-size: 15px;
    }

    .industry-overview-detail {
        font-size: 13px;
    }

    .industry-highlights {
        grid-template-columns: minmax(0, 1fr);
    }

    .industry-highlight {
        min-height: 62px;
        grid-template-columns: 20px minmax(0, 1fr);
        align-items: center;
    }

    .scenario-section {
        padding-top: 24px;
        padding-bottom: 72px;
    }

    .scenario-layout {
        gap: 16px;
    }

    .scenario-directory {
        top: calc(var(--solution-fixed-header-height) + var(--industry-menu-height));
        grid-template-columns: minmax(0, 1fr);
    }

    .scenario-directory-heading {
        display: none;
    }

    .scenario-link {
        min-width: 138px;
        padding: 13px 14px;
    }

    .scenario-content {
        padding: 0 20px 12px;
    }

    .scenario-toolbar {
        min-height: 0;
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
        padding: 24px 0;
    }

    .scenario-toolbar h2 {
        font-size: 21px;
    }

    .solution-search {
        width: 100%;
    }

    .scenario-group {
        padding: 24px 0 28px;
    }

    .scenario-group-header {
        align-items: start;
    }

    .scenario-group-heading {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .scenario-group-number {
        width: 38px;
    }

    .scenario-group-header h3 {
        font-size: 18px;
    }

    .solution-product-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .solution-drawer {
        width: 100%;
    }

    .solution-drawer-header {
        min-height: 84px;
        padding: 18px 20px;
    }

    .solution-drawer-header h2 {
        font-size: 18px;
    }

    .solution-detail-intro,
    .solution-document,
    .solution-detail-actions {
        padding-right: 22px;
        padding-left: 22px;
    }

    .solution-detail-intro h3 {
        font-size: 24px;
    }

    .solution-contact-links {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    .solution-drawer-backdrop,
    .solution-drawer {
        animation: none;
    }
}
