:root {
  --th-brand: #d32f2f;
  --th-brand-hover: #b71c1c;
  --th-brand-light: #ff8a80;
  --st-navy: #1a1a2e;
  --st-navy-soft: #5c5c6f;
  --st-header-dark: #131921;
  --st-header-sub: #232f3e;
  --st-home-bg: #eaeded;
  --st-bg: #ffffff;
  --st-bg-soft: #f5f5f7;
  --st-border: #e8e8ed;
  --st-shadow: 0 8px 24px rgba(26, 26, 46, 0.08);
  --st-radius: 12px;
  --st-radius-lg: 16px;
  --font-display: 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --brand-primary: var(--th-brand);
  --text-primary: var(--st-navy);
  --text-secondary: var(--st-navy-soft);
  --border-glass: var(--st-border);
  --bg-secondary: var(--st-bg-soft);
  --bg-card: #ffffff;
  --bg-card-hover: #fafafa;
  --section-bg: var(--st-bg-soft);
  --st-purple: var(--th-brand);
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
body.th-stripe-theme { font-family: var(--st-font, Inter, system-ui, sans-serif); background: var(--st-bg); color: var(--st-navy); -webkit-font-smoothing: antialiased; margin:0; }
body.th-stripe-theme:has(.st-home) { background: var(--st-home-bg); }
body.th-stripe-theme:has(.st-home) .th-main { padding-top: 0; }
body.th-stripe-theme #preloader { display: none !important; }
.th-container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.th-main { padding-top: 0; }

.corp-home { background: var(--st-home-bg, #eaeded); }
.corp-home section { scroll-margin-top: 5.5rem; }

.corp-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}
.corp-section--alt { background: #fff; }
.corp-section--dark {
    background: linear-gradient(135deg, #131921 0%, #232f3e 100%);
    color: #fff;
}
.corp-section--brand {
    background: linear-gradient(135deg, color-mix(in srgb, var(--th-brand) 92%, #1a1a2e) 0%, var(--th-brand) 100%);
    color: #fff;
}
.corp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.corp-eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--th-brand);
    margin-bottom: .65rem;
}
.corp-section--dark .corp-eyebrow,
.corp-section--brand .corp-eyebrow { color: var(--th-brand-light, #ffa800); }
.corp-title {
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.15;
    margin: 0 0 .85rem;
    color: var(--st-navy, #1a1a2e);
}
.corp-section--dark .corp-title,
.corp-section--brand .corp-title { color: #fff; }
.corp-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--st-navy-soft, #5c5c6f);
    max-width: 42rem;
    margin: 0 0 1.5rem;
}
.corp-section--dark .corp-lead,
.corp-section--brand .corp-lead { color: rgba(255,255,255,.88); }

/* Quick nav */
.corp-quicknav {
    background: #fff;
    border-bottom: 1px solid var(--st-border, #e8e8ed);
    position: sticky;
    top: 76px;
    z-index: 40;
    box-shadow: 0 4px 20px rgba(26,26,46,.06);
}
.corp-quicknav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: .65rem 1.25rem;
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    scrollbar-width: none;
}
.corp-quicknav__inner::-webkit-scrollbar { display: none; }
.corp-quicknav a {
    flex-shrink: 0;
    padding: .45rem .9rem;
    border-radius: 999px;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--st-navy-soft);
    text-decoration: none;
    background: var(--st-bg-soft, #f5f5f7);
    transition: .15s ease;
}
.corp-quicknav a:hover,
.corp-quicknav a.is-active {
    background: var(--th-brand);
    color: #fff;
}

/* Stats */
.corp-stats {
    background: #fff;
    border-bottom: 1px solid var(--st-border);
    padding: 1.75rem 0;
    margin-top: -1px;
}
.corp-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
@media (min-width: 768px) { .corp-stats__grid { grid-template-columns: repeat(4, 1fr); } }
.corp-stat {
    text-align: center;
    padding: .5rem;
}
.corp-stat__value {
    display: block;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--th-brand);
    line-height: 1.1;
}
.corp-stat__label {
    display: block;
    margin-top: .35rem;
    font-size: .875rem;
    color: var(--st-navy-soft);
    font-weight: 500;
}

/* Showcase mosaic */
.corp-showcase {
    background: #fff;
    padding: 1.25rem 0 1.75rem;
    border-bottom: 1px solid var(--st-border, #e8e8ed);
}
.corp-showcase__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
}
@media (min-width: 768px) {
    .corp-showcase__grid { grid-template-columns: repeat(4, 1fr); }
}
.corp-showcase__tile {
    position: relative;
    border-radius: var(--st-radius-lg, 16px);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(26, 26, 46, 0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}
.corp-showcase__tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(26, 26, 46, 0.14);
}
.corp-showcase__tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.corp-showcase__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: .65rem .75rem;
    font-size: .75rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(transparent, rgba(19, 25, 33, 0.85));
}

/* About */
.corp-about__grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 900px) {
    .corp-about__grid { grid-template-columns: 1fr 1fr; }
}
.corp-about__image {
    border-radius: var(--st-radius-lg, 16px);
    overflow: hidden;
    box-shadow: var(--st-shadow);
    aspect-ratio: 4/3;
    background: #e8eef5;
}
.corp-about__image img { width: 100%; height: 100%; object-fit: cover; }
.corp-about__text p {
    margin: 0 0 1rem;
    line-height: 1.7;
    color: var(--st-navy-soft);
}
.corp-checklist {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
    display: grid;
    gap: .65rem;
}
.corp-checklist li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-weight: 500;
    color: var(--st-navy);
}
.corp-checklist li::before {
    content: '✓';
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: color-mix(in srgb, var(--th-brand) 15%, #fff);
    color: var(--th-brand);
    font-size: .75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mission / Vision */
.corp-mv-grid {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 768px) { .corp-mv-grid { grid-template-columns: 1fr 1fr; } }
.corp-mv-card {
    background: #fff;
    border: 1px solid var(--st-border);
    border-radius: var(--st-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--st-shadow);
    border-top: 4px solid var(--th-brand);
}
.corp-mv-card h3 {
    margin: 0 0 .75rem;
    font-size: 1.25rem;
    color: var(--st-navy);
}
.corp-mv-card p {
    margin: 0;
    line-height: 1.65;
    color: var(--st-navy-soft);
}
.corp-mv-card__image {
    margin: -1.75rem -1.75rem 1.25rem;
    border-radius: var(--st-radius-lg) var(--st-radius-lg) 0 0;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.corp-mv-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Section banner images */
.corp-section-banner {
    margin: 1.25rem 0 0;
    border-radius: var(--st-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(26, 26, 46, 0.08);
    aspect-ratio: 21/9;
    max-height: 280px;
}
.corp-section-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.corp-section--dark .corp-section-banner--dark,
.corp-section-banner--dark {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Values & why choose */
.corp-card-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .corp-card-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .corp-card-grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .corp-card-grid--4 { grid-template-columns: repeat(4, 1fr); } }
.corp-card {
    background: #fff;
    border: 1px solid var(--st-border);
    border-radius: var(--st-radius-lg);
    padding: 1.5rem;
    box-shadow: 0 4px 18px rgba(26,26,46,.05);
    transition: transform .2s, box-shadow .2s;
}
.corp-card--media {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.corp-card__media {
    aspect-ratio: 16/10;
    background: linear-gradient(145deg, color-mix(in srgb, var(--th-brand) 12%, #fff), #eef2f7);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.corp-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.corp-card__placeholder {
    font-size: 2rem;
    color: color-mix(in srgb, var(--th-brand) 55%, #94a3b8);
}
.corp-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1;
}
.corp-card--media .corp-card__body h3 { margin: 0 0 .5rem; }
.corp-card--media .corp-card__body p { margin: 0; }
.corp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(26,26,46,.1);
}
.corp-section--alt .corp-card { background: var(--st-bg-soft, #f5f5f7); border-color: transparent; }
.corp-card__icon {
    font-size: 1.75rem;
    margin-bottom: .75rem;
    display: block;
}
.corp-card__image {
    margin: -1.5rem -1.5rem 1rem;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: var(--st-radius-lg) var(--st-radius-lg) 0 0;
}
.corp-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.corp-card h3 {
    margin: 0 0 .5rem;
    font-size: 1.05rem;
    color: var(--st-navy);
}
.corp-card p {
    margin: 0;
    font-size: .9rem;
    line-height: 1.6;
    color: var(--st-navy-soft);
}

/* Businesses */
.corp-biz-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: var(--st-radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--st-border);
    box-shadow: var(--st-shadow);
}
.corp-biz-card__link {
    margin-top: auto;
    padding-top: 1rem;
    font-weight: 700;
    font-size: .9rem;
    color: var(--th-brand);
    text-decoration: none;
}
.corp-biz-card__link:hover { text-decoration: underline; }

/* Brands */
.corp-brands {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
}
.corp-brand-pill {
    padding: .65rem 1.15rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 10px;
    font-weight: 700;
    font-size: .9rem;
    color: #fff;
}
.corp-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    min-height: 80px;
    box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.corp-brand-logo img {
    max-height: 48px;
    max-width: 120px;
    object-fit: contain;
}

/* Clients */
.corp-client-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .corp-client-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .corp-client-grid { grid-template-columns: repeat(4, 1fr); } }
.corp-client {
    background: #fff;
    border-radius: var(--st-radius-lg);
    padding: 1.25rem;
    border: 1px solid var(--st-border);
}
.corp-client__icon { font-size: 1.5rem; margin-bottom: .5rem; }
.corp-client__photo {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: .65rem;
}
.corp-client__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.corp-client__photo--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, color-mix(in srgb, var(--th-brand) 12%, #fff), #eef2f7);
    color: color-mix(in srgb, var(--th-brand) 55%, #94a3b8);
    font-size: 1.25rem;
}
.about-expertise-block__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 2.5rem;
    color: color-mix(in srgb, var(--th-brand) 55%, #94a3b8);
}
.corp-client h4 { margin: 0 0 .35rem; font-size: 1rem; }
.corp-client p { margin: 0; font-size: .82rem; color: var(--st-navy-soft); line-height: 1.5; }
.corp-client-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--st-radius-lg);
    border: 1px solid var(--st-border);
}
.corp-client-logos__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 56px;
    padding: .5rem 1rem;
    filter: grayscale(1);
    opacity: .85;
    transition: filter .2s, opacity .2s;
}
.corp-client-logos__item:hover {
    filter: grayscale(0);
    opacity: 1;
}
.corp-client-logos__item img {
    max-height: 48px;
    max-width: 140px;
    object-fit: contain;
}
.corp-trust-note {
    margin-top: 1.5rem;
    text-align: center;
    font-size: .875rem;
    color: var(--st-navy-soft);
    font-style: italic;
}

/* Team */
.corp-team-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.corp-team-card {
    background: #fff;
    border-radius: var(--st-radius-lg);
    overflow: hidden;
    border: 1px solid var(--st-border);
    box-shadow: var(--st-shadow);
}
.corp-team-card__photo {
    aspect-ratio: 1;
    background: linear-gradient(145deg, #f0f4f8, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.corp-team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.corp-team-card__initials {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--th-brand);
}
.corp-team-card__body { padding: 1.25rem; }
.corp-team-card__name { margin: 0 0 .2rem; font-size: 1.05rem; }
.corp-team-card__role { margin: 0 0 .65rem; font-size: .85rem; font-weight: 600; color: var(--th-brand); }
.corp-team-card__bio { margin: 0; font-size: .875rem; color: var(--st-navy-soft); line-height: 1.55; }

/* Testimonials */
.corp-testimonials {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .corp-testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .corp-testimonials { grid-template-columns: repeat(3, 1fr); } }
.corp-testimonial {
    background: #fff;
    border-radius: var(--st-radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--st-border);
    box-shadow: var(--st-shadow);
    display: flex;
    flex-direction: column;
}
.corp-testimonial__stars {
    color: var(--th-brand-light, #ffa800);
    font-size: .95rem;
    letter-spacing: .1em;
    margin-bottom: .75rem;
}
.corp-testimonial__quote {
    flex: 1;
    margin: 0 0 1.25rem;
    font-size: .9375rem;
    line-height: 1.65;
    color: var(--st-navy);
    font-style: italic;
}
.corp-testimonial__quote::before { content: '"'; color: var(--th-brand); font-weight: 800; }
.corp-testimonial__author strong { display: block; font-size: .9rem; }
.corp-testimonial__author span { font-size: .8rem; color: var(--st-navy-soft); }
.corp-testimonial__avatar {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: .75rem;
    flex-shrink: 0;
}
.corp-testimonial__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Process */
.corp-steps {
    display: grid;
    gap: 1rem;
}
@media (min-width: 768px) { .corp-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .corp-steps { grid-template-columns: repeat(4, 1fr); } }
.corp-step {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255,255,255,.08);
    border-radius: var(--st-radius-lg);
    border: 1px solid rgba(255,255,255,.12);
}
.corp-step__num {
    display: inline-block;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--th-brand-light);
    margin-bottom: .5rem;
}
.corp-step h4 { margin: 0 0 .5rem; font-size: 1rem; color: #fff; }
.corp-step p { margin: 0; font-size: .85rem; line-height: 1.55; color: rgba(255,255,255,.8); }
.corp-step__image {
    margin: -1.5rem -1rem 1rem;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: var(--st-radius-lg) var(--st-radius-lg) 0 0;
}
.corp-step__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CTA */
.corp-cta {
    text-align: center;
    padding: clamp(3rem, 6vw, 4.5rem) 1.25rem;
    position: relative;
    background-size: cover;
    background-position: center;
}
.corp-cta--has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.88), rgba(26, 26, 46, 0.72));
    z-index: 0;
}
.corp-cta--has-bg .corp-container {
    position: relative;
    z-index: 1;
}
.corp-cta h2 {
    margin: 0 0 .75rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #fff;
}
.corp-cta p {
    margin: 0 auto 1.5rem;
    max-width: 36rem;
    color: rgba(255,255,255,.9);
    line-height: 1.6;
}
.corp-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
}
.corp-cta .st-btn--secondary {
    background: rgba(255,255,255,.95);
}
.about-page { background: var(--st-home-bg, #eaeded); }
.about-page section { scroll-margin-top: 5.5rem; }

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}
@media (max-width: 900px) {
    .about-split { grid-template-columns: 1fr; }
    .about-split--reverse .about-split__image { order: -1; }
}
.about-split__image {
    border-radius: var(--st-radius-lg, 16px);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(26, 26, 46, 0.12);
    aspect-ratio: 4/3;
    background: #e2e8f0;
}
.about-split__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.about-expertise-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.about-expertise-block:last-child { margin-bottom: 0; }
.about-expertise-block--reverse .about-expertise-block__image { order: 2; }
.about-expertise-block--reverse .about-expertise-block__text { order: 1; }
@media (max-width: 900px) {
    .about-expertise-block { grid-template-columns: 1fr; }
    .about-expertise-block--reverse .about-expertise-block__image { order: -1; }
}
.about-expertise-block__image {
    border-radius: var(--st-radius-lg, 16px);
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(26, 26, 46, 0.1);
    aspect-ratio: 16/10;
    background: linear-gradient(145deg, #f0f4f8, #e2e8f0);
}
.about-expertise-block__image img { width: 100%; height: 100%; object-fit: cover; }
.about-expertise-block__text h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 .75rem;
    color: var(--st-navy, #1a1a2e);
}
.about-expertise-block__text p { color: var(--st-navy-soft); line-height: 1.65; margin: 0 0 1rem; }
.about-expertise-block__bullets {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: .45rem;
}
.about-expertise-block__bullets li {
    padding-left: 1.35rem;
    position: relative;
    font-size: .95rem;
    color: var(--st-navy-soft);
}
.about-expertise-block__bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .55rem;
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    background: var(--th-brand, #e85d04);
}

.about-values-slider {
    position: relative;
    margin-top: 1.5rem;
}
.about-values-slider__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: .5rem;
}
.about-values-slider__track::-webkit-scrollbar { display: none; }
.about-values-slider__card {
    flex: 0 0 min(280px, 85vw);
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--st-border, #e8e8ed);
    border-radius: var(--st-radius-lg, 16px);
    overflow: hidden;
    box-shadow: var(--st-shadow, 0 8px 24px rgba(26, 26, 46, 0.06));
    display: flex;
    flex-direction: column;
}
.about-values-slider__media {
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, color-mix(in srgb, var(--th-brand) 12%, #fff), #eef2f7);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-values-slider__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-values-slider__placeholder {
    font-size: 2.25rem;
    color: color-mix(in srgb, var(--th-brand) 55%, #94a3b8);
    line-height: 1;
}
.about-values-slider__placeholder i {
    display: block;
}
.about-values-slider__body {
    padding: 1.25rem 1.35rem 1.35rem;
    flex: 1;
}
.about-values-slider__icon { font-size: 1.75rem; display: block; margin-bottom: .65rem; }
.about-values-slider__photo {
    margin: -1.25rem -1.25rem 1rem;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: var(--st-radius-lg) var(--st-radius-lg) 0 0;
}
.about-values-slider__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-values-slider__card h3 { margin: 0 0 .5rem; font-size: 1.05rem; }
.about-values-slider__card p { margin: 0; font-size: .9rem; color: var(--st-navy-soft); line-height: 1.55; }
.about-values-slider__nav {
    display: flex;
    gap: .5rem;
    justify-content: flex-end;
    margin-top: .75rem;
}
.about-values-slider__btn {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 1px solid var(--st-border);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--st-navy);
}
.about-values-slider__btn:hover { border-color: var(--th-brand); color: var(--th-brand); }

.about-gallery {
    margin-top: 1.5rem;
}
.about-gallery__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    padding-bottom: .75rem;
}
.about-gallery__item {
    flex: 0 0 min(320px, 80vw);
    scroll-snap-align: start;
    border-radius: var(--st-radius-lg, 16px);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 28px rgba(26, 26, 46, 0.1);
}
.about-gallery__item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}
.about-gallery__caption {
    padding: .85rem 1rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--st-navy-soft);
}

.about-legacy {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--st-border);
}
.about-legacy .cms-page__content { margin-top: 0; }
/* Header — white contact row + navy navigation */
.st-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #fff;
    border-bottom: none;
    color: var(--st-navy);
}
.st-header__top--light {
    background: #fff !important;
    border-bottom: 1px solid var(--st-border, #e8e8ed);
    color: var(--st-navy, #1a1a2e) !important;
}
.st-header__top-inner,
.st-header__sub-inner {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.st-header__top-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    min-height: 68px;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
    flex-wrap: wrap;
}
.st-header__contact {
    display: none;
    flex: 1 1 280px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    min-width: 0;
    padding: 0 0.5rem;
}
@media (min-width: 900px) {
    .st-header__contact { display: flex; }
}
.st-header__contact-item {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.4rem;
    min-width: 0;
    font-size: 0.8125rem;
    line-height: 1.35;
    color: var(--st-navy, #1a1a2e);
}
.st-header__contact-item--location {
    max-width: 360px;
}
.st-header__contact-icon {
    flex-shrink: 0;
    font-size: 0.9rem;
    line-height: 1.35;
}
.st-header__contact-text,
.st-header__contact-text a,
body.th-stripe-theme .st-header__top--light .st-header__contact-text a {
    color: var(--st-navy, #1a1a2e) !important;
    text-decoration: none;
    font-weight: 600;
}
.st-header__contact-text a:hover {
    color: var(--th-brand) !important;
}
.st-header__contact-sep {
    margin: 0 0.35rem;
    color: #b0b0bc;
}
.st-header__top--light .st-header__signin {
    color: var(--st-navy, #1a1a2e) !important;
}
.st-header__top--light .st-header__signin:hover {
    color: var(--th-brand) !important;
}
.st-header__top--light .st-header__menu-btn span {
    background: var(--st-navy, #1a1a2e);
}
.st-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    padding: 0.4rem 0.65rem;
    margin-right: 0.15rem;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.st-header__logo:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    transform: translateY(-1px);
}
.st-header__logo-img {
    display: block;
    height: 44px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    object-position: left center;
    filter: brightness(1.12) contrast(1.15) saturate(1.2);
}
@media (min-width: 768px) {
    .st-header__top-inner { min-height: 76px; }
    .st-header__logo {
        padding: 0.45rem 0.75rem;
    }
    .st-header__logo-img {
        height: 56px;
        max-width: 300px;
    }
}

/* Center search bar */
.st-header__search {
    flex: 1;
    max-width: none;
    margin: 0;
    display: none;
    position: relative;
}
@media (min-width: 768px) { .st-header__search { display: flex; } }
.st-header__search input {
    width: 100%;
    padding: 0.65rem 3.25rem 0.65rem 1rem;
    border: none;
    border-radius: 6px 0 0 6px;
    font: inherit;
    font-size: 0.9375rem;
    background: #fff;
    color: var(--st-navy);
    box-shadow: none;
}
.st-header__search input::placeholder { color: #767676; }
.st-header__search input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(211,47,47,0.15) 35%, transparent);
}
.st-header__search-btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 46px;
    height: auto;
    transform: none;
    border: none;
    border-radius: 0 6px 6px 0;
    background: var(--th-brand);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
}
.st-header__search-btn:hover { background: var(--th-brand-hover); }

/* Top actions — pinned to far right */
.st-header__actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
    margin-left: auto;
}
.st-header__actions--far-right {
    margin-left: auto;
    padding-left: 1rem;
}
.st-header__signin {
    color: #fff !important;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    display: none;
    line-height: 1.2;
}
.st-header__signin--portal {
    font-size: 0.875rem;
    font-weight: 700;
}
.st-header__signin small {
    display: block;
    font-size: 0.6875rem;
    font-weight: 400;
    color: #ccc;
}
@media (min-width: 640px) { .st-header__signin { display: inline-block; } }
.st-header__signin:hover { color: var(--th-brand-light) !important; }
.st-header__cart {
    position: relative;
    color: #fff !important;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 700;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.st-header__cart:hover { color: var(--th-brand-light) !important; }
.st-header__cart-badge {
    position: static;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--th-brand);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.st-header__cta {
    display: none;
    background: var(--th-brand) !important;
    color: #fff !important;
    border: 1px solid var(--th-brand) !important;
    border-radius: 6px !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    white-space: nowrap;
}
.st-header__cta:hover {
    background: var(--th-brand-hover) !important;
    border-color: var(--th-brand-hover) !important;
    color: #fff !important;
}
@media (min-width: 640px) { .st-header__cta { display: inline-flex; } }
.st-header__menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}
.st-header__menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
}
@media (min-width: 1024px) { .st-header__menu-btn { display: none; } }

/* Sub navigation row */
.st-header__sub {
    border-top: none;
    background: var(--st-header-sub);
    display: none;
}
.st-header__sub--corporate {
    background: #1a1a2e !important;
    border-bottom: none;
    box-shadow: 0 4px 16px rgba(26, 26, 46, 0.18);
}
@media (min-width: 1024px) { .st-header__sub { display: block; } }
.st-header__sub-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    gap: 1rem;
}
.st-header__sub-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}
.st-header__pill-group {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border-radius: 0;
    padding: 0;
    gap: 0;
}
.st-header__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #fff !important;
    text-decoration: none;
    white-space: nowrap;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s, color 0.15s;
}
.st-header__pill:hover,
.st-header__pill.is-active {
    background: rgba(255,255,255,0.12);
    color: #fff !important;
    box-shadow: none;
}
.st-header__pill--dropdown svg { opacity: 0.85; }

/* Corporate section pills (home & company pages) */
.st-header__pill-group--corporate {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding: 0.35rem 0;
}
.st-header__pill--corp {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 999px !important;
    padding: 0.45rem 0.95rem !important;
    font-weight: 600 !important;
    font-size: 0.8125rem !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.st-header__pill--corp:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}
.st-header__pill--corp-cta {
    background: var(--th-brand) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.28);
}
.st-header__pill--corp-cta:hover {
    background: var(--th-brand-hover) !important;
    color: #fff !important;
}
.st-header__sub--corporate .st-header__sub-link {
    color: rgba(255, 255, 255, 0.88) !important;
}
.st-header__sub--corporate .st-header__sub-link:hover,
.st-header__sub--corporate .st-header__sub-link.is-active {
    color: #fff !important;
}
.st-header__sub-link--shop {
    font-weight: 700 !important;
}

.st-header__sub-link {
    color: #fff !important;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
}
.st-header__sub-link:hover { color: var(--th-brand-light) !important; }
.st-header__sub-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.st-header__dropdown { position: relative; }
.st-header__dropdown-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--st-border);
    border-radius: var(--st-radius);
    box-shadow: var(--st-shadow);
    padding: 0.35rem;
    z-index: 210;
}
.st-header__dropdown-panel.is-closed { display: none; }
.st-header__dropdown-panel a {
    display: block;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    color: var(--st-navy) !important;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}
.st-header__dropdown-panel a:hover {
    background: var(--st-bg-soft);
    color: var(--th-brand) !important;
}

/* Mobile menu */
.st-header__mobile.is-closed { display: none !important; }
.st-header__mobile:not(.is-closed) {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: var(--st-navy, #1a1a2e);
}
@media (min-width: 1024px) {
    .st-header__mobile:not(.is-closed) { display: none !important; }
}
.st-header__mobile a {
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    padding: 0.35rem 0;
}
.st-header__search--mobile {
    display: flex !important;
    max-width: none;
    margin-bottom: 0.5rem;
    position: relative;
}
.st-header__search--mobile input {
    border-radius: 6px 0 0 6px;
}

/* Buttons */
.st-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    font: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.st-btn--primary,
.st-btn--brand {
    background: var(--th-brand);
    color: #fff;
    box-shadow: 0 4px 14px rgba(211,47,47,0.15) 35%, transparent);
}
.st-btn--primary:hover,
.st-btn--brand:hover {
    background: var(--th-brand-hover);
    transform: translateY(-1px);
}
.st-btn--secondary {
    background: #fff;
    color: var(--st-navy);
    border: 1px solid var(--st-border);
    box-shadow: var(--st-shadow);
}
.st-btn--secondary:hover { background: var(--st-bg-soft); }
.st-btn--lg { padding: 0.85rem 1.5rem; font-size: 1rem; }

body.th-stripe-theme .btn.btn-orange,
body.th-stripe-theme .th-btn--primary {
    background: var(--th-brand) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 999px !important;
    box-shadow: 0 4px 14px rgba(211,47,47,0.15) 35%, transparent) !important;
}
body.th-stripe-theme .btn-outline,
body.th-stripe-theme .btn.btn-secondary,
body.th-stripe-theme .th-btn--secondary {
    background: #fff !important;
    color: var(--st-navy) !important;
    border: 1px solid var(--st-border) !important;
    border-radius: 999px !important;
}

/* Main layout */
body.th-stripe-theme .th-main { padding-top: 0; }
body.th-stripe-theme .support-fab { display: none; }

/* —— Amazon-style home landing —— */
.st-home {
    background: var(--st-home-bg);
}

/* Hero carousel */
.st-home-hero {
    position: relative;
    background: #e8eef5;
}
.st-home-hero__viewport {
    overflow: hidden;
}
.st-home-hero__track {
    position: relative;
    min-height: clamp(240px, 34vw, 560px);
    isolation: isolate;
}
.st-home-hero__media,
.st-home-hero__captions {
    position: absolute;
    inset: 0;
}
.st-home-hero__media-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    transition: opacity 1.5s cubic-bezier(0.33, 1, 0.68, 1);
    will-change: opacity;
    pointer-events: none;
}
.st-home-hero__media-item.is-active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}
.st-home-hero__media-item.is-previous {
    opacity: 1;
    z-index: 1;
}
.st-home-hero__media-zoom {
    width: 100%;
    height: 100%;
    transform: scale(1);
    transform-origin: center center;
    will-change: transform;
}
.st-home-hero__media-item.is-active .st-home-hero__media-zoom {
    animation: stHeroKenBurns 7s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
@keyframes stHeroKenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}
.st-home-hero__image,
.st-home-hero__fallback {
    width: 100%;
    height: clamp(240px, 34vw, 560px);
    object-fit: cover;
    display: block;
}
.st-home-hero__image {
    filter: brightness(1.18) contrast(1.06) saturate(1.2);
}
.st-home-hero__fallback {
    height: 100%;
    min-height: clamp(240px, 34vw, 560px);
    background:
        radial-gradient(ellipse 70% 55% at 75% 35%, rgba(211,47,47,0.15) 28%, transparent), transparent),
        radial-gradient(ellipse 50% 45% at 15% 75%, rgba(211,47,47,0.15) 18%, transparent), transparent),
        linear-gradient(135deg, #1a1a2e 0%, #0f1628 55%, #070b14 100%);
}
.st-home-hero__shade {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(105deg, rgba(255, 255, 255, 0.08) 0%, transparent 45%),
        linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.12) 100%);
    pointer-events: none;
}
.st-home-hero__caption {
    position: absolute;
    inset: 0;
    z-index: 4;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.65s cubic-bezier(0.33, 1, 0.68, 1),
        visibility 0.65s step-end,
        transform 0.65s cubic-bezier(0.33, 1, 0.68, 1);
    transform: translateY(10px);
}
.st-home-hero__caption.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
        opacity 0.9s cubic-bezier(0.33, 1, 0.68, 1) 0.45s,
        visibility 0s step-start 0.45s,
        transform 0.9s cubic-bezier(0.33, 1, 0.68, 1) 0.45s;
}
.st-home-hero__caption.is-previous {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
        opacity 0.45s cubic-bezier(0.4, 0, 1, 1),
        visibility 0.45s step-end,
        transform 0.45s cubic-bezier(0.4, 0, 1, 1);
}
.st-home-hero__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem clamp(1rem, 4vw, 3rem);
    color: #fff;
    z-index: 5;
}
.st-home-hero__panel {
    max-width: min(720px, 94vw);
    padding: clamp(1.1rem, 2.5vw, 1.65rem) clamp(1.25rem, 3vw, 2rem);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
}
body.th-stripe-theme .st-home-hero__eyebrow {
    margin: 0 0 0.5rem;
    font-size: clamp(0.8125rem, 1.6vw, 1rem);
    font-weight: 700;
    color: #fff !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.35;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55), 0 0 3px rgba(0, 0, 0, 0.35);
}
body.th-stripe-theme .st-home-hero__title {
    margin: 0;
    max-width: none;
    font-size: clamp(1.5rem, 3.8vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: #fff !important;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6), 0 0 4px rgba(0, 0, 0, 0.4);
}
body.th-stripe-theme .st-home-hero__description {
    margin: 0.65rem 0 0;
    font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
    font-weight: 500;
    line-height: 1.55;
    color: #fff !important;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5), 0 0 3px rgba(0, 0, 0, 0.35);
}
.st-home-hero__cta {
    margin-top: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    border-radius: 6px;
    background: var(--th-brand);
    color: #fff !important;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(211,47,47,0.15) 40%, transparent);
    transition: background 0.15s, transform 0.15s;
}
.st-home-hero__cta:hover {
    background: var(--th-brand-hover);
    transform: translateY(-1px);
}
@media (prefers-reduced-motion: reduce) {
    .st-home-hero__media-item,
    .st-home-hero__caption {
        transition-duration: 0.01ms !important;
    }
    .st-home-hero__media-item.is-active .st-home-hero__media-zoom {
        animation: none;
    }
}
.st-home-hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 42px;
    height: 72px;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.12);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
}
.st-home-hero__nav:hover { background: #fff; }
@media (min-width: 768px) { .st-home-hero__nav { display: inline-flex; } }
.st-home-hero__nav--prev { left: 0; border-radius: 0 4px 4px 0; }
.st-home-hero__nav--next { right: 0; border-radius: 4px 0 0 4px; }
.st-home-hero__dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    gap: 0.45rem;
}
.st-home-hero__dot {
    width: 10px;
    height: 10px;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.35);
    cursor: pointer;
    padding: 0;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.2);
    transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1), background 0.35s ease;
}
.st-home-hero__dot.is-active {
    background: var(--th-brand);
    border-color: #fff;
    transform: scale(1.2);
}

/* Overlapping card grid */
.st-home-cards {
    position: relative;
    z-index: 3;
    margin-top: -7.5rem;
    padding: 0 0 1.25rem;
}
.st-home-cards__inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 768px) { .st-home-cards__inner { padding: 0 1.25rem; } }
.st-home-cards__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .st-home-cards__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .st-home-cards__grid { grid-template-columns: repeat(4, 1fr); } }

.st-home-card {
    background: #fff;
    border-radius: 4px;
    padding: 1.25rem 1.25rem 1rem;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 5px rgba(15, 17, 17, 0.12);
}
.st-home-card__title {
    margin: 0 0 0.85rem;
    font-size: 1.3125rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--st-navy);
}
.st-home-card__single {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
    color: inherit;
}
.st-home-card__single-media,
.st-home-card__grid-media {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--st-bg-soft);
    border-radius: 4px;
}
.st-home-card__single-media {
    flex: 1;
    min-height: 220px;
    max-height: 280px;
}
.st-home-card__single-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.75rem;
}
.st-home-card__caption {
    margin-top: 0.65rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--st-navy-soft);
    line-height: 1.35;
}
.st-home-card__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    flex: 1;
}
.st-home-card__grid-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    min-height: 0;
}
.st-home-card__grid-media {
    aspect-ratio: 1;
    min-height: 0;
}
.st-home-card__grid-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.35rem;
}
.st-home-card__grid-label {
    margin-top: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--st-navy-soft);
    line-height: 1.3;
}
.st-home-card__placeholder {
    font-size: 2rem;
    line-height: 1;
}
.st-home-card__placeholder--large {
    font-size: 3rem;
}
.st-home-card__link {
    margin-top: auto;
    padding-top: 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--th-brand) !important;
    text-decoration: none;
}
.st-home-card__link:hover { text-decoration: underline !important; color: var(--th-brand-hover) !important; }

/* Home content rows */
.st-home-row {
    padding: 0 0 1.25rem;
}
.st-home-row__inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 768px) { .st-home-row__inner { padding: 0 1.25rem; } }
.st-home-panel {
    background: #fff;
    border-radius: 4px;
    padding: 1.25rem 1.25rem 1.5rem;
    box-shadow: 0 2px 5px rgba(15, 17, 17, 0.12);
}
.st-home-panel__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}
.st-home-panel__header h2 {
    margin: 0;
    font-size: 1.3125rem;
    font-weight: 700;
    color: var(--st-navy);
}
.st-home-panel__header a {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--th-brand) !important;
    text-decoration: none;
    white-space: nowrap;
}
.st-home-panel__header a:hover { text-decoration: underline !important; }
.st-home-panel__subtitle {
    margin: 0.35rem 0 0;
    font-size: 0.875rem;
    color: var(--st-navy-soft);
    font-weight: 500;
}

.st-home-brands {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}
.st-home-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--st-border);
    background: var(--st-bg-soft);
    text-decoration: none;
    color: var(--st-navy) !important;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.st-home-brand:hover {
    border-color: rgba(211,47,47,0.15) 35%, transparent);
    box-shadow: 0 4px 12px rgba(15, 17, 17, 0.08);
}
.st-home-brand img {
    max-width: 100%;
    max-height: 56px;
    object-fit: contain;
}
.st-home-brand__fallback {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    background: rgba(211,47,47,0.15) 12%, #fff);
    color: var(--th-brand);
}
.st-home-brand__name {
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.st-home-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}
.st-home-blog-card {
    border: 1px solid var(--st-border);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.st-home-blog-card__link {
    display: block;
    text-decoration: none;
    color: inherit !important;
}
.st-home-blog-card__media {
    aspect-ratio: 16 / 9;
    background: var(--st-bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}
.st-home-blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.st-home-blog-card__placeholder { font-size: 2rem; }
.st-home-blog-card__body {
    padding: 1rem 1.1rem 1.15rem;
}
.st-home-blog-card__body h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--st-navy);
    line-height: 1.35;
}
.st-home-blog-card__body p {
    margin: 0 0 0.65rem;
    font-size: 0.875rem;
    color: var(--st-navy-soft);
    line-height: 1.5;
}
.st-home-blog-card__body time {
    font-size: 0.75rem;
    color: var(--st-navy-soft);
}

.st-home-category-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.st-home-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: var(--st-bg-soft);
    border: 1px solid var(--st-border);
    color: var(--st-navy) !important;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: border-color 0.15s, background 0.15s;
}
.st-home-category-pill:hover {
    border-color: rgba(211,47,47,0.15) 35%, transparent);
    background: rgba(211,47,47,0.15) 6%, #fff);
}
.st-home-category-pill__icon { font-size: 1rem; line-height: 1; }

/* Flash deal popup (landing) */
.st-flash-popup[hidden] { display: none !important; }
.st-flash-popup {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.st-flash-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
}
.st-flash-popup__panel {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 24px 48px rgba(15, 17, 17, 0.22);
    overflow: hidden;
    animation: stFlashIn 0.35s ease-out;
}
@keyframes stFlashIn {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.st-flash-popup__close {
    position: absolute;
    top: 0.65rem;
    right: 0.75rem;
    border: none;
    background: transparent;
    font-size: 1.75rem;
    line-height: 1;
    color: #64748b;
    cursor: pointer;
    z-index: 2;
}
.st-flash-popup__grid {
    display: grid;
    grid-template-columns: 1fr;
}
@media (min-width: 520px) {
    .st-flash-popup__grid { grid-template-columns: 200px 1fr; }
}
.st-flash-popup__media {
    background: var(--st-bg-soft);
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.st-flash-popup__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 220px;
}
.st-flash-popup__body {
    padding: 1.35rem 1.5rem 1.5rem;
}
.st-flash-popup__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--th-brand);
}
.st-flash-popup__body h2 {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
    color: var(--st-navy);
}
.st-flash-popup__lead {
    margin: 0 0 0.75rem;
    color: var(--st-navy-soft);
    font-size: 0.9rem;
    line-height: 1.5;
}
.st-flash-popup__product {
    margin: 0 0 0.25rem;
    font-weight: 600;
    color: var(--st-navy);
}
.st-flash-popup__price {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--th-brand);
}

/* Legacy hero (other pages) */
.st-hero {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0 5rem;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(211,47,47,0.15) 16%, transparent), transparent),
        radial-gradient(ellipse 60% 40% at 90% 10%, rgba(211,47,47,0.15) 12%, transparent), transparent),
        linear-gradient(180deg, #fff 0%, var(--st-bg-soft) 100%);
}
.st-hero__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 960px) {
    .st-hero__inner { grid-template-columns: 1fr 1fr; padding: 0 2rem; }
}
.st-hero__eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--th-brand);
    margin: 0 0 1rem;
    letter-spacing: 0.02em;
}
.st-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 1.25rem;
    color: var(--st-navy);
}
.st-hero__lead {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--st-navy-soft);
    margin: 0 0 1.75rem;
    max-width: 32rem;
}
.st-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.25rem; }
.st-hero__trust {
    font-size: 0.875rem;
    color: var(--st-navy-soft);
    margin: 0;
}
.st-hero__visual {
    position: relative;
    border-radius: var(--st-radius-lg);
    background: #fff;
    border: 1px solid var(--st-border);
    box-shadow: var(--st-shadow);
    padding: 1rem;
    min-height: 320px;
}
.st-hero__product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
.st-hero__product-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    background: var(--st-bg-soft);
    border-radius: 8px;
    padding: 0.5rem;
}

/* Stats */
.st-stats {
    border-top: 1px solid var(--st-border);
    border-bottom: 1px solid var(--st-border);
    background: #fff;
}
.st-stats__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
@media (min-width: 768px) { .st-stats__inner { grid-template-columns: repeat(4, 1fr); } }
.st-stat__value {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--st-navy);
    margin: 0 0 0.25rem;
}
.st-stat__label {
    font-size: 0.9375rem;
    color: var(--st-navy-soft);
    margin: 0;
    line-height: 1.4;
}

/* Sections */
.st-section {
    padding: 5rem 0;
}
.st-section--soft { background: var(--st-bg-soft); }
.st-section__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
@media (min-width: 960px) { .st-section__inner { padding: 0 2rem; } }
.st-section__header { max-width: 640px; margin-bottom: 2.5rem; }
.st-section__header h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
    color: var(--st-navy);
}
.st-section__header p {
    font-size: 1.0625rem;
    color: var(--st-navy-soft);
    margin: 0;
    line-height: 1.6;
}

/* Feature cards */
.st-features {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .st-features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .st-features { grid-template-columns: repeat(3, 1fr); } }
.st-feature {
    background: #fff;
    border: 1px solid var(--st-border);
    border-radius: var(--st-radius-lg);
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.st-feature:hover {
    box-shadow: var(--st-shadow);
    transform: translateY(-2px);
    border-color: rgba(211,47,47,0.15) 25%, transparent);
}
.st-feature__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(99,91,255,0.12), rgba(0,212,255,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.st-feature h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--st-navy);
}
.st-feature p {
    font-size: 0.9375rem;
    color: var(--st-navy-soft);
    margin: 0 0 0.75rem;
    line-height: 1.55;
}
.st-feature__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--th-brand);
}

/* Product grid */
.st-products {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
body.th-stripe-theme .product-tile {
    background: #fff;
    border: 1px solid var(--st-border);
    border-radius: var(--st-radius-lg);
    overflow: hidden;
    box-shadow: none;
    backdrop-filter: none;
    transition: box-shadow 0.2s, transform 0.2s;
}
body.th-stripe-theme .product-tile:hover {
    box-shadow: var(--st-shadow);
    transform: translateY(-3px);
}
body.th-stripe-theme .product-tile__media {
    background: var(--st-bg-soft);
    aspect-ratio: 1;
}
body.th-stripe-theme .product-tile__body { padding: 1rem 1.1rem 1.15rem; }
body.th-stripe-theme .product-tile__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--st-navy);
}
body.th-stripe-theme .product-tile__price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--st-navy);
}
body.th-stripe-theme .product-tile__cta { color: var(--st-purple); font-weight: 600; }
body.th-stripe-theme .product-tile__badge {
    background: var(--st-purple);
    border-radius: 999px;
}

/* CTA band */
.st-cta {
    background: linear-gradient(135deg, var(--st-navy) 0%, rgba(211,47,47,0.15) 35%, #1a1a2e) 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
    margin-top: 0.5rem;
}
.st-cta h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
}
.st-cta p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.75);
    margin: 0 0 1.75rem;
}
.st-cta .st-btn--primary {
    background: var(--th-brand);
    color: #fff;
    box-shadow: 0 4px 18px rgba(211,47,47,0.15) 35%, transparent);
}
.st-cta .st-btn--primary:hover { background: var(--th-brand-hover); }

/* Footer */
body.th-stripe-theme .site-footer--rich {
    background: var(--st-bg-soft);
    border-top: 1px solid var(--st-border);
    color: var(--st-navy-soft);
}
body.th-stripe-theme .site-footer__heading { color: var(--st-navy); font-weight: 600; }
body.th-stripe-theme .site-footer__links a { color: var(--st-navy-soft); }
body.th-stripe-theme .site-footer__links a:hover { color: var(--st-purple); }
body.th-stripe-theme .site-footer__payments { background: #fff; border-color: var(--st-border); }
body.th-stripe-theme .site-footer__bottom { background: #fff; border-top: 1px solid var(--st-border); }

/* Inner pages */
body.th-stripe-theme .th-page { padding: 3rem 0 4rem; }
body.th-stripe-theme .th-container { max-width: 1180px; }
body.th-stripe-theme .th-card-panel {
    background: #fff;
    border: 1px solid var(--st-border);
    border-radius: var(--st-radius-lg);
    box-shadow: none;
}
body.th-stripe-theme .th-alert--success {
    background: #ecfdf5;
    color: #047857;
    border-bottom: 1px solid #a7f3d0;
}
body.th-stripe-theme .th-alert--error {
    background: #fef2f2;
    color: #b91c1c;
    border-bottom: 1px solid #fecaca;
}
body.th-stripe-theme h1, body.th-stripe-theme h2, body.th-stripe-theme h3 {
    color: var(--st-navy);
    letter-spacing: -0.02em;
}
body.th-stripe-theme .th-page h1 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
}
body.th-stripe-theme a:not(.st-header__pill--corp):not(.st-header__pill--corp-cta) { color: var(--st-purple); }
body.th-stripe-theme .st-header__sub--corporate a.st-header__pill--corp,
body.th-stripe-theme .st-header__sub--corporate a.st-header__pill--corp-cta {
    color: #fff !important;
}
body.th-stripe-theme .th-page a:not(.st-btn):not(.product-tile__link):not(.st-feature) {
    text-decoration: none;
    font-weight: 500;
}
body.th-stripe-theme .th-page a:not(.st-btn):hover { text-decoration: underline; }
body.th-stripe-theme .th-product-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
body.th-stripe-theme .th-empty {
    padding: 3rem;
    text-align: center;
    color: var(--st-navy-soft);
    background: var(--st-bg-soft);
    border-radius: var(--st-radius-lg);
    border: 1px dashed var(--st-border);
}

/* Footer */
.site-footer--rich {
    margin-top: 0;
    padding: 0;
    text-align: left;
    border-top: 1px solid var(--border-glass);
    background: color-mix(in srgb, var(--bg-secondary) 88%, transparent);
    backdrop-filter: blur(12px);
}
.site-footer__main {
    padding: 56px 24px 40px;
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}
@media (min-width: 640px) {
    .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
    .site-footer__grid { grid-template-columns: 1fr 1fr 1.4fr; gap: 48px; }
}
.site-footer__heading {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 800;
    margin: 0 0 18px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.site-footer__links a {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}
.site-footer__links a:hover {
    color: var(--brand-primary);
}
.site-footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.site-footer__contact li {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 8px 12px;
    font-size: 0.875rem;
    line-height: 1.55;
}
@media (max-width: 480px) {
    .site-footer__contact li { grid-template-columns: 1fr; gap: 4px; }
}
.site-footer__contact-label {
    font-weight: 600;
    color: var(--text-primary);
}
.site-footer__contact-value {
    color: var(--text-secondary);
}
.site-footer__contact-value a {
    color: var(--text-secondary);
    text-decoration: none;
}
.site-footer__contact-value a:hover {
    color: var(--brand-primary);
}
.site-footer__contact-value--stacked {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.site-footer__social-link:hover {
    color: var(--brand-primary);
    border-color: color-mix(in srgb, var(--brand-primary) 40%, transparent);
    background: var(--bg-card-hover);
}
.site-footer__payments {
    border-top: 1px solid var(--border-glass);
    padding: 28px 24px;
    background: color-mix(in srgb, var(--bg-primary) 50%, transparent);
}
.site-footer__payments-inner {
    text-align: center;
}
.site-footer__payments-title {
    margin: 0 0 16px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.site-footer__payments-img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    opacity: 0.92;
    filter: saturate(0.95);
}
[data-theme="dark"] .site-footer__payments-img {
    filter: brightness(1.15) saturate(0.9);
}
.site-footer__bottom {
    border-top: 1px solid var(--border-glass);
    padding: 20px 24px;
}
.site-footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.site-footer__bottom-inner--center {
    justify-content: center;
    text-align: center;
}
.site-footer__bottom-inner--center .site-footer__copyright {
    width: 100%;
    text-align: center;
}
.site-footer__brand {
    display: inline-flex;
    text-decoration: none;
}
.site-footer__copyright {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}
.sitemap-list {
    columns: 2;
    column-gap: 24px;
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0;
}
.sitemap-list a { color: var(--brand-primary); }
.cms-page__content { line-height: 1.7; }
.cms-page__content img { max-width: 100%; height: auto; }


body.th-stripe-theme .site-footer--rich { margin-top:0; background:#fff; border-top:1px solid var(--st-border); }
body.th-stripe-theme .st-header__top .st-header__top-inner.th-container {
    max-width: 100%;
    width: 100%;
}

/* News & events feed */
.corp-feed-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    margin-bottom: 1.75rem;
}
.corp-feed-header__cta { flex-shrink: 0; }
.corp-feed-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .corp-feed-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
    .corp-feed-grid { grid-template-columns: repeat(3, 1fr); }
}
.corp-feed-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--st-border, #e8ecf2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.corp-section--alt .corp-feed-card {
    background: #fff;
}
.corp-feed-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}
.corp-feed-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f1f5f9;
}
.corp-feed-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.corp-feed-card:hover .corp-feed-card__media img {
    transform: scale(1.04);
}
.corp-feed-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.1rem 1.15rem 1.25rem;
}
.corp-feed-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    margin: 0 0 0.6rem;
    font-size: 0.78rem;
    color: var(--text-secondary, #64748b);
}
.corp-feed-card__meta span:not(:last-child)::after {
    content: "·";
    margin-left: 0.75rem;
    color: #cbd5e1;
}
.corp-feed-card__title {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    line-height: 1.35;
}
.corp-feed-card__title a {
    color: var(--st-navy, #0f172a);
    text-decoration: none;
}
.corp-feed-card__title a:hover {
    color: var(--brand-primary, #c41e3a);
}
.corp-feed-card__excerpt {
    margin: 0 0 0.85rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-secondary, #64748b);
    flex: 1;
}
.corp-feed-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-primary, #c41e3a);
    text-decoration: none;
}
.corp-feed-card__link:hover {
    text-decoration: underline;
}

