:root {
    --red: #c8102e;
    --red-dark: #9f0c24;
    --black: #171717;
    --black-soft: #232323;
    --grey: #f2f2f2;
    --grey-dark: #666;
    --line: #dddddd;
    --white: #ffffff;
    --shadow: 0 14px 36px rgba(0, 0, 0, 0.08);

    font-family: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--grey);
    color: var(--black);
    line-height: 1.5;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.wrap {
    width: min(1160px, calc(100% - 36px));
    margin: 0 auto;
}

/* =====================================================
   GLOBAL TYPOGRAPHY
===================================================== */

.eyebrow,
.tag {
    color: var(--red);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 760px;
}

.section-heading h2,
.finder-heading h2,
.results-title h2,
.support-strip h2,
.technology-section h2 {
    margin: 5px 0 0;
}

.section-heading p,
.finder-heading p {
    margin: 10px 0 0;
    color: var(--grey-dark);
}

/* =====================================================
   HEADER
===================================================== */

.site-header,
.admin-header {
    background: var(--white);
    border-bottom: 4px solid var(--red);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.header-inner {
    min-height: 84px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding: 16px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand b {
    padding: 10px 12px;
    background: var(--red);
    color: var(--white);
}

.brand span {
    font-weight: 700;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo img {
    display: block;
    width: auto;
    height: 52px;
    max-width: 230px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a,
.header-inner a,
nav a {
    text-decoration: none;
}

.main-nav a {
    color: var(--black);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--red);
}

.back-link {
    color: var(--black);
    font-weight: 700;
    text-decoration: none;
}

.back-link:hover {
    color: var(--red);
}

/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;
    overflow: hidden;
    padding: 40px 0 30px;
    color: var(--white);
background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.55) 35%,
        rgba(0,0,0,.20) 60%,
        rgba(0,0,0,0) 100%
    ),
    url("/assets/images/hero-banner.jpg");
    background-size: 115%;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Warranty page hero */
.hero.warranty-hero {
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.58) 42%,
            rgba(0, 0, 0, 0.08) 72%
        ),
        url("/assets/images/warranty-banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-inner {
    min-height: 300px;
    display: flex;
    align-items: center;
}

.hero-copy {
    max-width: 880px;
}

.hero h1 {
    max-width: 760px;
    margin: 8px 0 16px;
    font-size: clamp(2.2rem, 4.8vw, 4.3rem);
    line-height: 1;
    letter-spacing: -0.035em;
}

.hero-intro,
.hero p {
    max-width: 830px;
    margin: 0;
    color: #dddddd;
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 30px 0;
}

.text-link {
    color: var(--white);
    font-weight: 800;
    text-underline-offset: 5px;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.hero-benefits div {
    min-height: 88px;
    padding-left: 15px;
    border-left: 3px solid var(--red);
}

.hero-benefits strong {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-size: 0.82rem;
    text-transform: uppercase;
}

.hero-benefits span {
    display: block;
    color: #d3d3d3;
    font-size: 0.9rem;
    line-height: 1.45;
}

/* =====================================================
   BUTTONS
===================================================== */

.button {
    display: inline-block;
    padding: 13px 19px;
    border: 0;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform 0.18s ease,
        background 0.18s ease;
}

.button:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

.button-disabled {
    display: inline-block;
    cursor: default;
    opacity: 0.65;
    pointer-events: none;
}

.small-button,
.secondary-button {
    display: inline-block;
    padding: 8px 12px;
    border: 0;
    background: #2a2a2a;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
}

.secondary-button {
    padding: 12px 18px;
    background: #777777;
}

.danger-button {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border: 0;
    background: #8f1111;
    color: var(--white);
    font-weight: 800;
    cursor: pointer;
}

/* =====================================================
   CATEGORY SECTION
===================================================== */

.category-section {
    padding-top: 35px;
}

.category-menu {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 24px 0 38px;
}

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 245px;
    display: flex;
    flex-direction: column;
    border: 1px solid #d9d9d9;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}

.category-card.active {
    border: 2px solid var(--red);
}

.category-card.active::after {
    content: "Selected";
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    padding: 6px 9px;
    background: var(--red);
    color: #fff;
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.category-card-image {
    position: relative;
    height: 145px;
    overflow: hidden;
    background:  linear-gradient(to bottom, #ffffff, #ececec);
}

.category-card-image::after {
    display: none;
    
}

.category-card-image img {
    width: 100%;
    height: 100%;
    display: block;
object-fit: contain;
object-position: center;
padding: 8px;
    transition: transform 0.35s ease;
}

.category-card:hover .category-card-image img {
    transform: scale(1.06);
}

.category-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 18px;
}

.category-card-content b {
    font-size: 1.05rem;
}

.category-card-content small {
    color: #666;
    font-size: 0.82rem;
    line-height: 1.45;
}

.category-all-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background:
        linear-gradient(135deg, #111 0%, #303030 100%);
}

.category-all-image span {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

@media (max-width: 900px) {
    .category-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .category-menu {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 220px;
    }

    .category-card-image {
        height: 135px;
    }
}

.category-menu a b {
    font-size: 0.95rem;
}

/* =====================================================
   FINDER V2
===================================================== */

.finder-hero {
    min-height: 510px;
    display: flex;
    align-items: center;
    color: #ffffff;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .86) 0%,
            rgba(0, 0, 0, .62) 43%,
            rgba(0, 0, 0, .12) 100%
        ),
        url("/assets/images/finder-hero.webp")
        right center / cover no-repeat;
}

.finder-hero .hero-inner {
    min-height: 510px;
    display: flex;
    align-items: center;
    padding: 72px 0;
}

.finder-hero .hero-copy {
    max-width: 760px;
}

.finder-workspace {
    display: grid;
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    margin: 34px 0 58px;
}

.finder-sidebar {
    position: sticky;
    top: 104px;
    padding: 24px;
    border-top: 5px solid var(--red);
    background: var(--white);
    box-shadow: var(--shadow);
}


.finder-sidebar label {
    display: block !important;
    width: 100%;
    margin: 0 0 18px;
}

.finder-sidebar label > span {
    display: block !important;
    width: 100%;
    margin-bottom: 7px;
}

.finder-sidebar select,
.finder-sidebar input[type="search"] {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 12px 13px !important;
}

.finder-sidebar .quick-search {
    display: block !important;
    width: 100%;
    margin-top: 0;
}

.finder-sidebar__heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.finder-sidebar__heading h2 {
    margin: 5px 0 0;
    font-size: 1.45rem;
    line-height: 1.15;
}

.finder-sidebar label {
    margin-bottom: 16px;
}

.finder-sidebar select,
.finder-sidebar input {
    margin-top: 7px;
    border-radius: 5px;
}

.clear-button {
    flex: 0 0 auto;
    padding: 6px 0;
    border: 0;
    background: transparent;
    color: var(--red);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
}

.quick-search {
    margin-top: 4px;
}

.finder-help {
    margin: 4px 0 0;
    color: #777777;
    font-size: .84rem;
    line-height: 1.5;
}

/* =====================================================
   FINDER RESULTS
===================================================== */

.results-section {
    min-width: 0;
}

.results-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin: 0 0 18px;
}

.results-title h2 {
    margin: 5px 0 0;
    font-size: clamp(1.7rem, 2.6vw, 2.25rem);
}

.results-title strong {
    flex: 0 0 auto;
    padding: 8px 12px;
    border-radius: 4px;
    background: var(--black);
    color: var(--white);
    font-size: .82rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.application-card {
    min-width: 0;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .055);
    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

.application-card:hover {
    transform: translateY(-3px);
    border-color: #cecece;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .09);
}

.application-card__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--red);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.application-card__title {
    margin: 0;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.application-card__engine {
    margin: 9px 0 0;
    color: var(--grey-dark);
    font-size: .9rem;
    line-height: 1.5;
}

.application-card__performance {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid #e8e8e8;
    border-radius: 9px;
}

.performance-figure {
    min-width: 0;
    padding: 13px 10px;
    text-align: center;
}

.performance-figure:nth-child(odd) {
    border-right: 1px solid #e8e8e8;
}

.performance-figure:nth-child(-n + 2) {
    border-bottom: 1px solid #e8e8e8;
}

.performance-figure__label {
    display: block;
    margin-bottom: 7px;
    color: #6b6b6b;
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .045em;
    line-height: 1.25;
    text-transform: uppercase;
}

.performance-figure__value {
    display: block;
    color: var(--black);
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    font-weight: 900;
    line-height: 1.05;
    white-space: nowrap;
}

.performance-figure--steinbauer .performance-figure__value {
    color: var(--red);
}

.application-card__footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.application-card__part-number {
    color: #595959;
    font-size: .82rem;
    font-weight: 800;
}

.application-card__button {
    min-height: 42px;
    padding: 10px 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    border-radius: 4px;
    white-space: nowrap;
}

.application-card__button span {
    font-size: 1.25rem;
    line-height: 0;
}

.finder-empty-state {
    grid-column: 1 / -1;
    margin: 0;
    padding: 42px 28px;
    background: var(--white);
    text-align: center;
    box-shadow: var(--shadow);
}

.results-grid[aria-busy="true"] {
    min-height: 280px;
    opacity: .58;
    pointer-events: none;
}

@media (max-width: 1050px) {
    .finder-workspace {
        grid-template-columns: 280px minmax(0, 1fr);
    }

    .results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .finder-hero {
        min-height: 470px;
        background-position: 68% center;
    }

    .finder-hero .hero-inner {
        min-height: 470px;
        padding: 60px 0;
    }

    .finder-workspace {
        grid-template-columns: 1fr;
    }

    .finder-sidebar {
        position: static;
    }

    .results-title {
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .results-title {
        flex-direction: column;
    }

    .application-card {
        padding: 18px;
    }

    .application-card__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .application-card__button {
        width: 100%;
    }
}

@media (max-width: 390px) {
    .application-card__performance {
        grid-template-columns: 1fr;
    }

    .performance-figure:nth-child(odd) {
        border-right: 0;
    }

    .performance-figure:nth-child(-n + 3) {
        border-bottom: 1px solid #e8e8e8;
    }

    .performance-figure__value {
        white-space: normal;
    }
}

/* =====================================================
   SUPPORT + TECHNOLOGY
===================================================== */

.support-strip {
    margin: 58px 0;
    padding: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    border-left: 6px solid var(--red);
    background: var(--black);
    color: var(--white);
}

.support-strip p {
    max-width: 760px;
    margin-bottom: 0;
    color: #cccccc;
}

.technology-section {
    margin: 0 0 65px;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 25px;
}

.technology-grid article {
    min-height: 205px;
    padding: 23px;
    border-top: 4px solid var(--red);
    background: var(--white);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.technology-grid h3 {
    margin-top: 0;
}

.technology-grid p {
    margin-bottom: 0;
    color: var(--grey-dark);
}

/* =====================================================
   APPLICATION PAGE
===================================================== */

.application-page {
    padding: 50px 0;
}

.application-page h1 {
    margin: 12px 0;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1;
}

.lead {
    color: #555555;
    font-size: 1.25rem;
}

.performance-grid,
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 25px 0;
}

.metric,
.stat {
    padding: 20px;
    border-top: 4px solid var(--red);
    background: var(--white);
}

.metric b,
.stat b {
    display: block;
    margin-top: 8px;
    font-size: 1.7rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.dark {
    background: var(--black);
    color: var(--white);
}

.card dl div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #dddddd;
}

.card dt {
    color: #777777;
}

.dark dt {
    color: #aaaaaa;
}

.card dd {
    margin: 0;
    font-weight: 700;
    text-align: right;
}

.warning {
    margin: 18px 0;
    padding: 14px;
    border-left: 4px solid #d99a00;
    background: #fff1c7;
}

/* =====================================================
   APPLICATION MEDIA
===================================================== */

.application-media-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 25px 0;
}

.application-media-gallery figure {
    margin: 0;
    padding: 12px;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.application-media-gallery img {
    display: block;
    width: 100%;
    height: 340px;
    object-fit: contain;
}

.application-media-gallery figcaption {
    padding-top: 10px;
    color: #666666;
}

.download-list {
    display: grid;
    gap: 10px;
}

.download-list a {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px;
    background: #f1f1f1;
    text-decoration: none;
}

.download-list span {
    color: #666666;
}

/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    padding: 36px 0 0;
    background: #0f0f0f;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns:
        minmax(250px, 1.6fr)
        minmax(160px, 1fr)
        minmax(160px, 1fr)
        minmax(140px, .9fr)
        minmax(150px, .75fr);
    gap: 28px;
    align-items: start;
}

.footer-column {
    min-width: 0;
}

.footer-logo {
    display: block;
    width: auto;
    height: 38px;
    max-width: 200px;
    margin-bottom: 14px;
    object-fit: contain;
}

.footer-company p {
    max-width: 320px;
    margin: 0 0 14px;
    color: #b5b5b5;
    line-height: 1.55;
}

.footer-company strong {
    color: #d8d8d8;
}

.footer-contact {
    display: grid;
    gap: 8px;
}

.footer-column h3 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 1rem;
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column li + li {
    margin-top: 8px;
}

.footer-column a {
    color: #c7c7c7;
    text-decoration: none;
    transition: color .18s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-social-icons a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    color: #ffffff;
    transition:
        background .18s ease,
        border-color .18s ease,
        color .18s ease,
        transform .18s ease;
}

.footer-social-icons a:hover {
    border-color: var(--red);
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-social-icons svg {
    display: block !important;
    width: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    height: 18px !important;
    min-height: 18px !important;
    max-height: 18px !important;
    flex: 0 0 18px !important;
    fill: currentColor;
}

.footer-bottom {
    margin-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.footer-bottom-inner {
    min-height: 58px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    color: #999999;
    font-size: .82rem;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.footer-legal-links a {
    color: #bbbbbb;
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: var(--white);
}

@media (max-width: 1050px) {
    .footer-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .footer-company {
        grid-column: auto;
    }
}

@media (max-width: 850px) {
    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .footer-company {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 22px;
    }

    .footer-company {
        grid-column: 1 / -1;
    }

    .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 20px 0;
    }

    .footer-legal-links {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-company {
        grid-column: auto;
    }
}

/* =====================================================
   ADMIN
===================================================== */

.admin-body {
    min-height: 100vh;
    background: #eeeeee;
}

/* Admin header and navigation */

.admin-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 4px solid var(--red);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.admin-header .wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.admin-header .brand-logo {
    flex: 0 0 auto;
}

.admin-header .brand-logo img {
    width: auto;
    height: 46px;
    max-width: 220px;
    object-fit: contain;
}

.admin-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
    margin-left: auto;
}

.admin-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 76px;
    padding: 0;
    color: var(--black);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.admin-nav a:hover {
    color: var(--red);
}

.admin-nav a.active {
    color: var(--red);
}

.admin-nav a.active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -4px;
    left: 0;
    height: 4px;
    background: var(--red);
}

.admin-nav .logout {
    min-height: 40px;
    margin-left: 8px;
    padding: 0 16px;
    border: 1px solid #d6d6d6;
    background: #f7f7f7;
    color: #555555;
}

.admin-nav .logout:hover {
    border-color: var(--red);
    background: var(--red);
    color: var(--white);
}

/* Admin page layout */

.admin-main {
    padding: 34px 0 64px;
}

.admin-dashboard {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin: 24px 0 34px;
}

.admin-stat-card {
    min-height: 145px;
    padding: 24px;
    border-top: 4px solid var(--red);
    background: var(--white);
    box-shadow: var(--shadow);
}

.admin-stat-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--grey-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-stat-card strong {
    display: block;
    color: var(--black);
    font-size: 2rem;
    line-height: 1.1;
}

.admin-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 24px 0;
    padding: 18px 20px;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.admin-toolbar-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border: 0;
    background: var(--red);
    color: var(--white);
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.admin-primary-button:hover {
    background: var(--red-dark);
}

.login-card {
    width: min(440px, calc(100% - 30px));
    margin: 8vh auto;
    padding: 30px;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.13);
}

.login-card {
    width: min(440px, calc(100% - 30px));
    margin: 8vh auto;
    padding: 30px;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.13);
}

.search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-bottom: 18px;
}

.table-wrap {
    overflow: auto;
    background: var(--white);
}

.table-wrap table {
    width: 100%;
    border-collapse: collapse;
}

.table-wrap th,
.table-wrap td {
    padding: 12px;
    border-bottom: 1px solid #dddddd;
    text-align: left;
    white-space: nowrap;
}

.table-wrap th {
    background: #1d1d1d;
    color: var(--white);
}

pre {
    overflow: auto;
    padding: 16px;
    background: #1a1a1a;
    color: var(--white);
}

.page-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-top: 32px;
}

.page-heading h1 {
    margin-bottom: 5px;
}

.page-heading p {
    margin-top: 0;
    color: #666666;
}

.edit-form {
    padding-bottom: 90px;
}

.compact-form {
    max-width: 850px;
}

.form-section {
    margin: 20px 0;
    padding: 24px;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.form-section h2 {
    margin-top: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #eeeeee;
}

.form-section textarea {
    resize: vertical;
}

.form-section code {
    padding: 3px 6px;
    background: #eeeeee;
}

.form-section form,
.sticky-actions form {
    margin: 0;
}

.form-grid {
    display: grid;
    gap: 16px;
}

.form-grid.two {
    grid-template-columns: repeat(2, 1fr);
}

.form-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.form-grid.four {
    grid-template-columns: repeat(4, 1fr);
}

.span-2 {
    grid-column: span 2;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    text-transform: none;
}

.checkbox input {
    width: auto;
    margin: 0;
}

.sticky-actions {
    position: sticky;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 14px 18px;
    border-top: 3px solid var(--red);
    background: var(--white);
    box-shadow: 0 -8px 22px rgba(0, 0, 0, 0.08);
}

.success {
    margin: 18px 0;
    padding: 14px;
    border-left: 4px solid #2e8b57;
    background: #dff4e5;
}

.status {
    display: inline-block;
    padding: 5px 8px;
    border-radius: 3px;
    background: #dddddd;
    font-size: 0.75rem;
    font-weight: 800;
}

.status-published,
.status-ready {
    background: #dff4e5;
    color: #216b43;
}

.status-draft {
    background: #fff1c7;
    color: #805c00;
}

.status-archived {
    background: #e4e4e4;
    color: #555555;
}

.backup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* =====================================================
   MEDIA ADMIN
===================================================== */

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

.media-admin-card {
    padding: 14px;
    border: 1px solid #dddddd;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.media-preview {
    height: 190px;
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #eeeeee;
}

.media-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pdf-preview {
    color: var(--red);
    font-size: 2.5rem;
    font-weight: 900;
}

.media-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

/* =====================================================
   INSTALLATION PAGES
===================================================== */

.install-wrap {
    max-width: 980px;
    padding-bottom: 60px;
}

.install-wrap h1 {
    margin-top: 42px;
}

.install-next {
    margin-top: 24px;
}

.install-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.install-actions form {
    margin: 0;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {
    .technology-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1050px) {
    .footer-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .footer-grid .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
    }

    .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid .footer-column:first-child {
        grid-column: auto;
    }
}

@media (max-width: 900px) {
    .header-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-menu {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-strip {
        align-items: flex-start;
        flex-direction: column;
    }

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

@media (max-width: 850px) {
    .grid.four,
    .performance-grid,
    .stats-grid,
    .detail-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-grid.three,
    .form-grid.four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .admin-header .wrap {
        align-items: flex-start;
        flex-direction: column;
        gap: 0;
        padding: 14px 0;
    }

    .admin-nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 8px 18px;
        margin-left: 0;
    }

    .admin-nav a {
        min-height: 42px;
    }

    .admin-nav .logout {
        margin-left: 0;
    }

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

@media (max-width: 700px) {
    .backup-grid {
        grid-template-columns: 1fr;
    }

    .admin-dashboard {
        grid-template-columns: 1fr;
    }

    .admin-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .wrap {
        width: min(100% - 24px, 1160px);
    }

    .header-inner {
        min-height: auto;
        align-items: center;
        flex-direction: row;
        padding: 15px 0;
    }

    .brand-logo img {
        height: 42px;
        max-width: 190px;
    }

    .main-nav {
        justify-content: flex-end;
        gap: 12px;
    }

    .main-nav a {
        font-size: 0.75rem;
    }

    .main-nav a:nth-child(3) {
        display: none;
    }

    .hero {
        padding: 52px 0 45px;
        background-position: 62% center;
    }

    .hero-inner {
        min-height: 360px;
    }

    .hero h1 {
        font-size: 2.7rem;
    }

    .hero-intro,
    .hero p {
        font-size: 1rem;
    }

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

    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .category-menu {
        grid-template-columns: 1fr 1fr;
    }

    .category-menu a {
        min-height: 86px;
        padding: 14px;
    }

    .finder-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .support-strip {
        padding: 26px;
    }

    .technology-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .media-admin-grid,
    .application-media-gallery {
        grid-template-columns: 1fr;
    }

    .application-media-gallery img {
        height: 240px;
    }

    .form-grid.two,
    .form-grid.three,
    .form-grid.four {
        grid-template-columns: 1fr;
    }

    .span-2 {
        grid-column: span 1;
    }

    .page-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .grid.four,
    .performance-grid,
    .stats-grid,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .admin-header .wrap {
        align-items: flex-start;
        flex-direction: column;
        gap: 0;
        padding: 14px 0;
    }

    .admin-nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 8px 16px;
        margin-left: 0;
    }

    .admin-nav a {
        min-height: 38px;
    }

    .admin-nav a.active::after {
        bottom: 0;
        height: 3px;
    }

    .admin-nav .logout {
        margin-left: 0;
    }

    .admin-dashboard {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   APPLICATION V2
===================================================== */

.application-v2 {
    padding-top: 22px;
    padding-bottom: 82px;
}

.application-breadcrumbs {
    margin: 8px 0 26px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    color: #737373;
    font-size: .82rem;
}

.application-breadcrumbs a {
    color: #555555;
    text-decoration: none;
}

.application-breadcrumbs a:hover {
    color: var(--red);
}

.application-hero-v2 {
    display: grid;
    grid-template-columns:
        minmax(260px, .92fr)
        minmax(330px, 1.2fr)
        minmax(255px, .72fr);
    gap: 30px;
    align-items: center;
    padding: 18px 0 42px;
}

.application-hero-v2__copy h1 {
    margin: 10px 0 12px;
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    line-height: .98;
    letter-spacing: -.04em;
}

.application-hero-v2__engine {
    margin: 0;
    color: #555555;
    font-size: 1.25rem;
    font-weight: 700;
}

.application-hero-v2__intro {
    max-width: 610px;
    margin: 24px 0 0;
    color: #555555;
    line-height: 1.7;
}

.application-hero-v2__features {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.application-hero-v2__features span {
    padding: 8px 10px;
    border: 1px solid #dddddd;
    border-radius: 999px;
    background: #ffffff;
    color: #444444;
    font-size: .76rem;
    font-weight: 800;
}

.application-hero-v2__media {
    min-height: 390px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.application-hero-v2__media img {
    width: 100%;
    max-height: 430px;
    display: block;
    object-fit: contain;
    filter: grayscale(1);
}

.application-hero-v2__media--placeholder {
    min-height: 360px;
    flex-direction: column;
    border-radius: 20px;
    background:
        radial-gradient(circle at 50% 45%, #ffffff 0%, #eeeeee 68%, #e5e5e5 100%);
    color: #444444;
    text-align: center;
}

.application-hero-v2__media--placeholder span {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: .05em;
}

.application-hero-v2__media--placeholder small {
    margin-top: 8px;
    color: #777777;
    font-weight: 700;
    text-transform: uppercase;
}

.application-buy-card {
    padding: 25px;
    border: 1px solid #dddddd;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .08);
}

.application-buy-card__eyebrow {
    display: block;
    color: #555555;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.application-buy-card__part {
    display: block;
    margin: 5px 0 18px;
    color: var(--black);
    font-size: 1.75rem;
    line-height: 1.1;
}

.application-buy-card dl {
    margin: 0 0 18px;
}

.application-buy-card dl div {
    padding: 11px 0;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid #e4e4e4;
}

.application-buy-card dt {
    color: #666666;
}

.application-buy-card dd {
    margin: 0;
    font-weight: 900;
    text-align: right;
}

.application-buy-card__button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.application-buy-card__status {
    margin: 13px 0 0;
    color: #25783d;
    font-size: .8rem;
    font-weight: 800;
}

.application-buy-card__note {
    margin: 13px 0 0;
    color: #6b6b6b;
    font-size: .78rem;
    line-height: 1.55;
}

.application-performance-v2,
.application-info-card,
.application-benefits-v2,
.application-dyno,
.installation-guides-card,
.downloads-card {
    border: 1px solid #e1e1e1;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .045);
}

.application-performance-v2 {
    margin: 0 0 24px;
    padding: 26px;
}

.application-section-heading h2 {
    margin: 5px 0 0;
    font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.application-performance-v2__grid {
    margin-top: 21px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;
}

.application-performance-v2__metric {
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #ffffff;
}

.application-performance-v2__metric span {
    display: block;
    color: #555555;
    font-size: .78rem;
    font-weight: 800;
}

.application-performance-v2__metric strong {
    display: block;
    margin-top: 9px;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    line-height: 1;
}

.application-performance-v2__metric--enhanced strong {
    color: var(--red);
}

.application-information-v2 {
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.application-info-card {
    padding: 28px;
}

.application-info-card h2 {
    margin: 5px 0 22px;
}

.application-info-card dl {
    margin: 0;
}

.application-info-card dl div {
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    gap: 22px;
    border-bottom: 1px solid #dddddd;
}

.application-info-card dt {
    color: #747474;
}

.application-info-card dd {
    margin: 0;
    font-weight: 800;
    text-align: right;
}

.application-info-card--dark {
    border-color: #171717;
    background: #171717;
    color: #ffffff;
}

.application-info-card--dark .eyebrow {
    color: #ff6a7e;
}

.application-info-card--dark dl div {
    border-color: #555555;
}

.application-info-card--dark dt {
    color: #b6b6b6;
}

.application-benefits-v2 {
    margin-top: 28px;
    padding: 28px;
}

.application-benefits-v2__grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.application-benefits-v2__grid article {
    min-width: 0;
    padding-left: 17px;
    border-left: 3px solid var(--red);
}

.application-benefits-v2__grid strong {
    font-size: 1rem;
}

.application-benefits-v2__grid p {
    margin: 8px 0 0;
    color: #666666;
    font-size: .86rem;
    line-height: 1.55;
}

.application-v2 .application-media-gallery {
    margin: 24px 0;
}

.application-v2 .application-dyno {
    margin-top: 24px;
}

.application-v2 .installation-guides-card,
.application-v2 .downloads-card {
    margin-top: 24px;
}

@media (max-width: 1080px) {
    .application-hero-v2 {
        grid-template-columns: minmax(0, 1fr) minmax(260px, .68fr);
    }

    .application-hero-v2__media {
        grid-column: 1 / -1;
        grid-row: 2;
        min-height: 300px;
    }

    .application-buy-card {
        align-self: stretch;
    }

    .application-performance-v2__grid,
    .application-benefits-v2__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .application-hero-v2 {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .application-hero-v2__media {
        grid-column: auto;
        grid-row: auto;
        min-height: 240px;
    }

    .application-information-v2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .application-v2 {
        padding-top: 12px;
    }

    .application-hero-v2__copy h1 {
        font-size: 2.55rem;
    }

    .application-performance-v2,
    .application-info-card,
    .application-benefits-v2 {
        padding: 20px;
    }

    .application-performance-v2__grid,
    .application-benefits-v2__grid {
        grid-template-columns: 1fr;
    }

    .application-info-card dl div {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .application-info-card dd {
        text-align: left;
    }
}

/* =====================================================
   ADMIN FULL-WIDTH LAYOUT OVERRIDES
   Added for Applications, Products and other data tables
===================================================== */

.admin-header .wrap,
.admin-main.wrap {
    width: calc(100% - 32px);
    max-width: 1800px;
    margin-right: auto;
    margin-left: auto;
}

.admin-main {
    min-width: 0;
}

.admin-main .page-heading,
.admin-main .search-form,
.admin-main .table-wrap {
    width: 100%;
    min-width: 0;
}

.admin-main .search-form {
    grid-template-columns: minmax(280px, 1fr) 120px;
    align-items: stretch;
}

.admin-main .search-form input {
    min-width: 0;
    width: 100%;
}

.admin-main .search-form button {
    width: 100%;
}

.admin-main .table-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
    -webkit-overflow-scrolling: touch;
}

.admin-main .table-wrap table {
    width: 100%;
    min-width: 1120px;
    table-layout: auto;
}

.admin-main .table-wrap th,
.admin-main .table-wrap td {
    padding: 13px 14px;
    white-space: nowrap;
}

.admin-main .table-wrap th:nth-child(1),
.admin-main .table-wrap td:nth-child(1) {
    min-width: 120px;
}

.admin-main .table-wrap th:nth-child(2),
.admin-main .table-wrap td:nth-child(2) {
    min-width: 250px;
}

.admin-main .table-wrap th:nth-child(3),
.admin-main .table-wrap td:nth-child(3) {
    min-width: 180px;
}

.admin-main .table-wrap th:nth-child(4),
.admin-main .table-wrap td:nth-child(4) {
    min-width: 145px;
}

.admin-main .table-wrap th:last-child,
.admin-main .table-wrap td:last-child {
    width: 90px;
    min-width: 90px;
    text-align: right;
}

.admin-main .table-wrap td:nth-child(2),
.admin-main .table-wrap td:nth-child(3) {
    white-space: normal;
    overflow-wrap: anywhere;
}

@media (max-width: 1000px) {
    .admin-header .wrap,
    .admin-main.wrap {
        width: calc(100% - 24px);
    }

    .admin-main .table-wrap table {
        min-width: 1040px;
    }
}

@media (max-width: 700px) {
    .admin-header .wrap,
    .admin-main.wrap {
        width: calc(100% - 20px);
    }

    .admin-main .search-form {
        grid-template-columns: 1fr;
    }

    .admin-main .table-wrap {
        border-radius: 8px;
    }

    .admin-main .table-wrap table {
        min-width: 980px;
    }
}

/* =====================================================
   PUBLIC NEWS BANNER
===================================================== */

.site-news-banner {
    border-bottom: 1px solid #dedede;
    background: #ffffff;
}

.site-news-banner__inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 9px;
    padding-bottom: 9px;
}

.site-news-banner__label {
    flex: 0 0 auto;
    padding: 6px 9px;
    border-radius: 4px;
    background: #d71920;
    color: #ffffff;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-news-banner__copy {
    flex: 1;
    min-width: 0;
}

.site-news-banner__copy strong,
/* =====================================================
   PUBLIC NEWS BANNER
===================================================== */

.site-news-banner {
    border-bottom: 1px solid #dedede;
    background: #ffffff;
}

.site-news-banner__inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 9px;
    padding-bottom: 9px;
}

.site-news-banner__label {
    flex: 0 0 auto;
    padding: 6px 9px;
    border-radius: 4px;
    background: #d71920;
    color: #ffffff;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-news-banner__copy {
    flex: 1;
    min-width: 0;
}

.site-news-banner__copy strong,
.site-news-banner__copy span {
    display: block;
}

.site-news-banner__copy strong {
    color: #171717;
    font-size: .92rem;
}

.site-news-banner__copy span {
    margin-top: 2px;
    color: #666666;
    font-size: .8rem;
}

.site-news-banner__link {
    flex: 0 0 auto;
    color: #d71920;
    font-size: .84rem;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.site-news-banner__link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 700px) {
    .site-news-banner__inner {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 9px 12px;
    }

    .site-news-banner__copy {
        flex-basis: calc(100% - 80px);
    }

    .site-news-banner__link {
        margin-left: 68px;
    }
}

.site-news-banner__copy span {
    display: block;
}

.site-news-banner__copy strong {
    color: #171717;
    font-size: .92rem;
}

.site-news-banner__copy span {
    margin-top: 2px;
    color: #666666;
    font-size: .8rem;
}

.site-news-banner__link {
    flex: 0 0 auto;
    color: #d71920;
    font-size: .84rem;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.site-news-banner__link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 700px) {
    .site-news-banner__inner {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 9px 12px;
    }

    .site-news-banner__copy {
        flex-basis: calc(100% - 80px);
    }

    .site-news-banner__link {
        margin-left: 68px;
    }
}
