:root {
    --mtcs-blue: #1a2885;
    --mtcs-blue-dark: #111a59;
    --mtcs-orange: #eb5f40;
    --mtcs-ink: #11142b;
    --mtcs-muted: #697087;
    --mtcs-line: #e6e8f0;
    --mtcs-soft: #f5f6fb;
    --mtcs-white: #ffffff;
    --mtcs-radius: 18px;
    --mtcs-shadow: 0 18px 50px rgba(26, 40, 133, .10);
}

.megatank-case-studies-page .pxl-page-title,
.megatank-case-study-page .pxl-page-title,
.megatank-case-studies-page .page-title,
.megatank-case-study-page .page-title,
.megatank-case-studies-page .breadcrumb-wrap,
.megatank-case-study-page .breadcrumb-wrap {
    display: none !important;
}

.mtcs-page,
.mtcs-page * {
    box-sizing: border-box;
}

.mtcs-page {
    color: var(--mtcs-ink);
    background: var(--mtcs-white);
    font-family: "Manrope", sans-serif;
    line-height: 1.65;
}

.mtcs-page img {
    max-width: 100%;
    height: auto;
}

.mtcs-container {
    width: min(1240px, calc(100% - 40px));
    margin-inline: auto;
}

.mtcs-eyebrow {
    margin: 0 0 12px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.mtcs-eyebrow--orange {
    color: var(--mtcs-orange);
}

.mtcs-hero {
    position: relative;
    isolation: isolate;
    min-height: 510px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--mtcs-blue-dark);
}

.mtcs-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--mtcs-hero-image);
    background-position: center;
    background-size: cover;
    transform: scale(1.03);
}

.mtcs-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(10,15,55,.94) 0%, rgba(18,27,84,.74) 52%, rgba(16,22,60,.42) 100%),
        linear-gradient(0deg, rgba(12,16,46,.75), transparent 55%);
}

.mtcs-hero__inner {
    padding: 110px 0 78px;
}

.mtcs-hero h1,
.mtcs-single h1,
.mtcs-page h2,
.mtcs-page h3 {
    color: var(--mtcs-ink);
    font-family: "Manrope", sans-serif;
    letter-spacing: -.035em;
}

.mtcs-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(46px, 6vw, 78px);
    font-weight: 800;
    line-height: 1.02;
}

.mtcs-hero__intro {
    max-width: 760px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.82);
    font-size: 18px;
}

.mtcs-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 28px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
}

.mtcs-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.mtcs-breadcrumb a:hover {
    color: #fff;
}

.mtcs-breadcrumb--dark {
    margin-bottom: 42px;
    color: var(--mtcs-muted);
}

.mtcs-breadcrumb--dark a:hover {
    color: var(--mtcs-blue);
}

.mtcs-section {
    padding: 96px 0;
}

.mtcs-section--library {
    background: #fff;
}

.mtcs-section-heading {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: flex-end;
    margin-bottom: 42px;
}

.mtcs-section-heading h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 800;
    line-height: 1.08;
}

.mtcs-section-heading > p {
    max-width: 470px;
    margin: 0;
    color: var(--mtcs-muted);
}

.mtcs-filters {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 34px;
    padding: 18px;
    border: 1px solid var(--mtcs-line);
    border-radius: 16px;
    background: var(--mtcs-soft);
}

.mtcs-filter-group label {
    display: block;
    margin: 0 0 7px;
    color: var(--mtcs-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mtcs-filter-group select,
.mtcs-filter-group input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid #dfe2ec;
    border-radius: 10px;
    background-color: #fff;
    color: var(--mtcs-ink);
    font: inherit;
    font-size: 14px;
    outline: none;
}

.mtcs-filter-group select:focus,
.mtcs-filter-group input:focus {
    border-color: var(--mtcs-blue);
    box-shadow: 0 0 0 3px rgba(26,40,133,.12);
}

.mtcs-filter-reset {
    min-height: 48px;
    padding: 0 20px;
    border: 0;
    border-radius: 10px;
    background: var(--mtcs-blue);
    color: #fff;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.mtcs-filter-reset:hover {
    background: var(--mtcs-orange);
}

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

.mtcs-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--mtcs-line);
    border-radius: var(--mtcs-radius);
    background: #fff;
    box-shadow: 0 6px 28px rgba(19,29,86,.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.mtcs-card:hover {
    transform: translateY(-6px);
    border-color: rgba(26,40,133,.25);
    box-shadow: var(--mtcs-shadow);
}

.mtcs-card__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eef0f7;
}

.mtcs-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.mtcs-card:hover .mtcs-card__media img {
    transform: scale(1.055);
}

.mtcs-card__placeholder,
.mtcs-gallery-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--mtcs-blue), var(--mtcs-blue-dark));
    color: #fff;
    font-size: 26px;
    font-weight: 800;
}

.mtcs-card__badge,
.mtcs-card__featured {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--mtcs-blue);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.mtcs-card__featured {
    right: 18px;
    left: auto;
    background: var(--mtcs-orange);
}

.mtcs-card__body {
    padding: 24px 24px 26px;
}

.mtcs-card__location {
    display: flex;
    gap: 7px;
    align-items: center;
    margin-bottom: 12px;
    color: var(--mtcs-muted);
    font-size: 12px;
}

.mtcs-card__location svg,
.mtcs-meta-row svg,
.mtcs-summary-card dt svg,
.mtcs-card__link svg,
.mtcs-text-link svg,
.mtcs-button svg,
.mtcs-check-list svg,
.mtcs-benefits-grid svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mtcs-card h3 {
    margin: 0;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.25;
}

.mtcs-card h3 a {
    color: inherit;
    text-decoration: none;
}

.mtcs-card__body p {
    display: -webkit-box;
    overflow: hidden;
    margin: 14px 0 20px;
    color: var(--mtcs-muted);
    font-size: 14px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.mtcs-card__link,
.mtcs-text-link {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    color: var(--mtcs-blue);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.mtcs-card__link:hover,
.mtcs-text-link:hover {
    color: var(--mtcs-orange);
}

.mtcs-card__link svg,
.mtcs-text-link svg,
.mtcs-button svg {
    width: 17px;
    transition: transform .2s ease;
}

.mtcs-card__link:hover svg,
.mtcs-text-link:hover svg,
.mtcs-button:hover svg {
    transform: translateX(4px);
}

.mtcs-no-results {
    padding: 50px;
    border: 1px dashed #cfd3e2;
    border-radius: 16px;
    color: var(--mtcs-muted);
    text-align: center;
}

.mtcs-cta-section {
    padding: 0 0 96px;
    background: #fff;
}

.mtcs-cta {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
    overflow: hidden;
    padding: 52px 58px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 85% 10%, rgba(235,95,64,.6), transparent 28%),
        linear-gradient(135deg, var(--mtcs-blue), var(--mtcs-blue-dark));
    color: #fff;
}

.mtcs-cta h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.08;
}

.mtcs-cta p:not(.mtcs-eyebrow) {
    max-width: 680px;
    margin: 16px 0 0;
    color: rgba(255,255,255,.78);
}

.mtcs-button {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 10px;
    background: var(--mtcs-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.mtcs-button:hover {
    background: var(--mtcs-orange);
    color: #fff;
}

.mtcs-button--light {
    background: #fff;
    color: var(--mtcs-blue);
}

.mtcs-button--light:hover {
    background: var(--mtcs-orange);
    color: #fff;
}

/* Single case study */
.mtcs-single-head {
    padding: 54px 0 58px;
    border-bottom: 1px solid var(--mtcs-line);
    background: linear-gradient(180deg, #fafbff, #fff);
}

.mtcs-single-head__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: start;
}

.mtcs-pill {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(235,95,64,.12);
    color: var(--mtcs-orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mtcs-single h1 {
    max-width: 900px;
    margin: 20px 0 0;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.02;
}

.mtcs-single-head__intro {
    max-width: 850px;
    margin: 22px 0 0;
    color: var(--mtcs-muted);
    font-size: 18px;
}

.mtcs-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 28px;
}

.mtcs-meta-row > span {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--mtcs-muted);
    font-size: 13px;
}

.mtcs-status {
    padding: 5px 10px;
    border-radius: 999px;
    background: #edf7f0;
    color: #267f47 !important;
    font-weight: 800;
}

.mtcs-back-link {
    color: var(--mtcs-blue);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.mtcs-project-overview {
    padding: 58px 0 32px;
}

.mtcs-project-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, .78fr);
    gap: 28px;
    align-items: start;
}

.mtcs-gallery-shell {
    min-width: 0;
}

.mtcs-gallery-main {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 20px;
    background: #e9ebf3;
    cursor: zoom-in;
}

.mtcs-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mtcs-gallery-count {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(12,18,56,.8);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.mtcs-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.mtcs-gallery-thumbs button {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    background: #eceef5;
    cursor: pointer;
}

.mtcs-gallery-thumbs button:hover,
.mtcs-gallery-thumbs button.is-active {
    border-color: var(--mtcs-orange);
}

.mtcs-gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mtcs-gallery-thumbs span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(13,18,59,.62);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}

.mtcs-summary-card {
    position: sticky;
    top: 110px;
    padding: 28px;
    border: 1px solid var(--mtcs-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--mtcs-shadow);
}

.mtcs-summary-card h2,
.mtcs-financial-card h2 {
    margin: 0 0 20px;
    font-size: 27px;
    font-weight: 800;
}

.mtcs-summary-card dl,
.mtcs-financial-card dl {
    margin: 0;
}

.mtcs-summary-card dl > div {
    padding: 15px 0;
    border-bottom: 1px solid var(--mtcs-line);
}

.mtcs-summary-card dt {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--mtcs-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.mtcs-summary-card dt svg {
    color: var(--mtcs-orange);
}

.mtcs-summary-card dd {
    margin: 5px 0 0 26px;
    color: var(--mtcs-ink);
    font-size: 14px;
    font-weight: 700;
}

.mtcs-summary-cta {
    margin-top: 22px;
    padding: 22px;
    border-radius: 14px;
    background: var(--mtcs-soft);
}

.mtcs-summary-cta strong {
    display: block;
    font-size: 17px;
}

.mtcs-summary-cta p {
    margin: 8px 0 16px;
    color: var(--mtcs-muted);
    font-size: 13px;
}

.mtcs-summary-cta .mtcs-button {
    width: 100%;
}

.mtcs-metrics-section {
    padding: 26px 0 48px;
}

.mtcs-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    overflow: hidden;
    border: 1px solid var(--mtcs-line);
    border-radius: 18px;
    background: #fff;
}

.mtcs-metric {
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 28px;
    border-right: 1px solid var(--mtcs-line);
}

.mtcs-metric:last-child {
    border-right: 0;
}

.mtcs-metric strong {
    color: var(--mtcs-blue);
    font-size: clamp(23px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.1;
}

.mtcs-metric span {
    margin-top: 8px;
    color: var(--mtcs-muted);
    font-size: 12px;
    font-weight: 700;
}

.mtcs-content-section {
    padding: 64px 0 90px;
    background: var(--mtcs-soft);
}

.mtcs-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: 42px;
    align-items: start;
}

.mtcs-main-content {
    min-width: 0;
}

.mtcs-copy-block {
    padding: 40px;
    border: 1px solid var(--mtcs-line);
    border-radius: 20px;
    background: #fff;
}

.mtcs-copy-block + .mtcs-copy-block {
    margin-top: 24px;
}

.mtcs-copy-block--solution {
    border-top: 4px solid var(--mtcs-orange);
}

.mtcs-copy-block h2 {
    margin: 0 0 18px;
    font-size: clamp(29px, 3vw, 40px);
    font-weight: 800;
}

.mtcs-copy-block p {
    margin: 0;
    color: #555d73;
}

.mtcs-check-list,
.mtcs-benefits-grid {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.mtcs-check-list li,
.mtcs-benefits-grid li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 13px 0;
    border-bottom: 1px solid var(--mtcs-line);
}

.mtcs-check-list li:last-child,
.mtcs-benefits-grid li:last-child {
    border-bottom: 0;
}

.mtcs-check-list svg,
.mtcs-benefits-grid svg {
    margin-top: 3px;
    color: var(--mtcs-orange);
}

.mtcs-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
}

.mtcs-financial-card {
    position: sticky;
    top: 110px;
    padding: 30px;
    border-radius: 20px;
    background: var(--mtcs-blue);
    color: #fff;
}

.mtcs-financial-card h2 {
    color: #fff;
}

.mtcs-financial-card .mtcs-eyebrow {
    color: #ffb8a8;
}

.mtcs-financial-card dl > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.mtcs-financial-card dt {
    color: rgba(255,255,255,.68);
    font-size: 12px;
}

.mtcs-financial-card dd {
    margin: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-align: right;
}

.mtcs-revenue-note {
    margin-top: 24px;
    padding: 22px;
    border-radius: 14px;
    background: rgba(255,255,255,.1);
}

.mtcs-revenue-note strong {
    color: #fff;
}

.mtcs-revenue-note p {
    margin: 10px 0 0;
    color: rgba(255,255,255,.75);
    font-size: 13px;
}

.mtcs-section--gallery,
.mtcs-related {
    background: #fff;
}

.mtcs-full-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.mtcs-full-gallery button {
    grid-column: span 4;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 15px;
    background: #eceef5;
    cursor: zoom-in;
}

.mtcs-full-gallery button:nth-child(1),
.mtcs-full-gallery button:nth-child(5n) {
    grid-column: span 7;
}

.mtcs-full-gallery button:nth-child(2),
.mtcs-full-gallery button:nth-child(5n + 1) {
    grid-column: span 5;
}

.mtcs-full-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.mtcs-full-gallery button:hover img {
    transform: scale(1.04);
}

.mtcs-video-section {
    background: var(--mtcs-blue-dark);
}

.mtcs-video-section .mtcs-container {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.mtcs-video-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.08;
}

.mtcs-video {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    border-radius: 18px;
    background: #000;
    box-shadow: 0 25px 80px rgba(0,0,0,.28);
}

.mtcs-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.mtcs-lightbox[hidden] {
    display: none;
}

.mtcs-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: grid;
    place-items: center;
    padding: 60px 90px;
    background: rgba(7,10,34,.94);
}

.mtcs-lightbox figure {
    max-width: 1180px;
    max-height: calc(100vh - 100px);
    margin: 0;
    text-align: center;
}

.mtcs-lightbox figure img {
    max-height: calc(100vh - 150px);
    width: auto;
    border-radius: 12px;
    object-fit: contain;
}

.mtcs-lightbox figcaption {
    margin-top: 12px;
    color: rgba(255,255,255,.75);
    font-size: 13px;
}

.mtcs-lightbox__close,
.mtcs-lightbox__nav {
    position: absolute;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #fff;
    cursor: pointer;
}

.mtcs-lightbox__close {
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
}

.mtcs-lightbox__close svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.mtcs-lightbox__nav {
    top: 50%;
    width: 52px;
    height: 52px;
    font-size: 38px;
    line-height: 1;
    transform: translateY(-50%);
}

.mtcs-lightbox__nav--prev { left: 24px; }
.mtcs-lightbox__nav--next { right: 24px; }

body.mtcs-lightbox-open {
    overflow: hidden;
}

@media (max-width: 1050px) {
    .mtcs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mtcs-filters { grid-template-columns: 1fr 1fr; }
    .mtcs-filter-reset { width: 100%; }
    .mtcs-project-grid { grid-template-columns: 1fr; }
    .mtcs-summary-card { position: static; }
    .mtcs-content-grid { grid-template-columns: 1fr; }
    .mtcs-financial-card { position: static; }
    .mtcs-video-section .mtcs-container { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .mtcs-container { width: min(100% - 28px, 1240px); }
    .mtcs-hero { min-height: 430px; }
    .mtcs-hero__inner { padding: 90px 0 58px; }
    .mtcs-hero h1 { font-size: 46px; }
    .mtcs-section { padding: 68px 0; }
    .mtcs-section-heading { display: block; margin-bottom: 30px; }
    .mtcs-section-heading > p { margin-top: 16px; }
    .mtcs-filters { grid-template-columns: 1fr; padding: 14px; }
    .mtcs-grid { grid-template-columns: 1fr; }
    .mtcs-cta { display: block; padding: 38px 28px; }
    .mtcs-cta .mtcs-button { margin-top: 28px; }
    .mtcs-single-head { padding: 36px 0 40px; }
    .mtcs-breadcrumb--dark { margin-bottom: 28px; }
    .mtcs-single-head__grid { grid-template-columns: 1fr; }
    .mtcs-back-link { order: -1; }
    .mtcs-single h1 { font-size: 42px; }
    .mtcs-project-overview { padding-top: 32px; }
    .mtcs-gallery-main { aspect-ratio: 4 / 3; }
    .mtcs-gallery-thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; }
    .mtcs-summary-card { padding: 22px; }
    .mtcs-metrics { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .mtcs-metric { min-height: 110px; border-bottom: 1px solid var(--mtcs-line); }
    .mtcs-copy-block { padding: 28px 22px; }
    .mtcs-benefits-grid { grid-template-columns: 1fr; }
    .mtcs-full-gallery { grid-template-columns: repeat(2, 1fr); }
    .mtcs-full-gallery button,
    .mtcs-full-gallery button:nth-child(1),
    .mtcs-full-gallery button:nth-child(2),
    .mtcs-full-gallery button:nth-child(5n),
    .mtcs-full-gallery button:nth-child(5n + 1) { grid-column: span 1; }
    .mtcs-lightbox { padding: 70px 16px; }
    .mtcs-lightbox__nav { width: 42px; height: 42px; background: rgba(255,255,255,.2); }
    .mtcs-lightbox__nav--prev { left: 8px; }
    .mtcs-lightbox__nav--next { right: 8px; }
}

@media (max-width: 460px) {
    .mtcs-meta-row { display: grid; }
    .mtcs-metrics { grid-template-columns: 1fr; }
    .mtcs-gallery-thumbs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .mtcs-gallery-thumbs button:nth-child(n+4) { display: none; }
}
