:root {
  --sfc-red: #f2382a;
  --sfc-red-dark: #cf281e;
  --sfc-blue: #183a59;
  --sfc-blue-dark: #0f2539;
  --sfc-light-blue: #2097d4;
  --sfc-sky: #eef9ff;
  --sfc-white: #ffffff;
  --sfc-black: #071622;
  --sfc-gray: #5f6d7a;
  --sfc-border: #d9e5ee;
  --sfc-container: 1400px;
  --sfc-radius-sm: 10px;
  --sfc-radius-md: 18px;
  --sfc-radius-lg: 28px;
  --sfc-shadow: 0 22px 60px rgba(7, 22, 34, 0.14);
  --sfc-font-base: "IBM Plex Sans", Arial, Helvetica, sans-serif;
  --sfc-font-heading: "IBM Plex Sans", Arial, Helvetica, sans-serif;
  --sfc-h1: clamp(2.4rem, 5vw, 5rem);
  --sfc-h2: clamp(2rem, 3.5vw, 3.35rem);
  --sfc-h3: clamp(1.35rem, 2vw, 1.75rem);
  --sfc-body: clamp(1rem, 1.05vw, 1.125rem);
  --sfc-section-y: clamp(64px, 7vw, 120px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--sfc-black);
  font-family: var(--sfc-font-base);
  font-size: var(--sfc-body);
  line-height: 1.65;
  background: var(--sfc-white);
  overflow-x: hidden;
}
body.sfc-menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--sfc-red); }
button, input, textarea, select { font: inherit; }
.screen-reader-text,
.sfc-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.sfc-skip-link:focus {
  z-index: 999999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  color: var(--sfc-white);
  background: var(--sfc-blue-dark);
  clip: auto;
  border-radius: 8px;
}
.sfc-container {
  width: min(calc(100% - 40px), var(--sfc-container));
  margin-inline: auto;
}
.sfc-section { padding: var(--sfc-section-y) 0; position: relative; }
.sfc-bg-white { background: var(--sfc-white); color: var(--sfc-black); }
.sfc-bg-sky { background: var(--sfc-sky); color: var(--sfc-black); }
.sfc-bg-blue { background: var(--sfc-blue); color: var(--sfc-white); }
.sfc-bg-light_blue { background: var(--sfc-light-blue); color: var(--sfc-white); }
.sfc-bg-red { background: var(--sfc-red); color: var(--sfc-white); }
.sfc-bg-dark { background: var(--sfc-blue-dark); color: var(--sfc-white); }
.sfc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--sfc-red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sfc-bg-red .sfc-eyebrow,
.sfc-bg-blue .sfc-eyebrow,
.sfc-bg-light_blue .sfc-eyebrow,
.sfc-bg-dark .sfc-eyebrow { color: var(--sfc-white); }
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 18px;
  font-family: var(--sfc-font-heading);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
h1 { font-size: var(--sfc-h1); }
h2 { font-size: var(--sfc-h2); }
h3 { font-size: var(--sfc-h3); }
p { margin: 0 0 24px; }
.sfc-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.sfc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  color: var(--sfc-white);
  background: var(--sfc-red);
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  box-shadow: 0 12px 26px rgba(242, 56, 42, 0.25);
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.sfc-btn:hover { color: var(--sfc-white); background: var(--sfc-red-dark); transform: translateY(-2px); }
.sfc-btn--small { min-height: 42px; padding: 11px 18px; font-size: 0.86rem; }
.sfc-btn--red { background: var(--sfc-red); }
.sfc-btn--blue { background: var(--sfc-blue); box-shadow: 0 12px 26px rgba(24,58,89,.22); }
.sfc-btn--blue:hover { background: var(--sfc-blue-dark); }
.sfc-btn--dark { background: var(--sfc-blue-dark); box-shadow: none; }
.sfc-btn--outline { color: inherit; background: transparent; border-color: currentColor; box-shadow: none; }
.sfc-btn--outline:hover { color: var(--sfc-white); background: var(--sfc-blue-dark); border-color: var(--sfc-blue-dark); }
.sfc-text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--sfc-red); font-weight: 900; }
.sfc-text-link::after { content: ""; width: 24px; height: 2px; background: currentColor; transition: width .2s ease; }
.sfc-text-link:hover::after { width: 36px; }
.sfc-section-heading { max-width: 820px; margin: 0 auto 46px; text-align: center; }
.sfc-section-heading--left { margin-inline: 0; text-align: left; }
.sfc-section-heading p { color: var(--sfc-gray); font-weight: 700; }
.sfc-bg-blue .sfc-section-heading p,
.sfc-bg-red .sfc-section-heading p,
.sfc-bg-light_blue .sfc-section-heading p,
.sfc-bg-dark .sfc-section-heading p { color: rgba(255,255,255,.86); }
.sfc-hero__grid,
.sfc-media-text__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
  gap: clamp(34px, 5vw, 84px);
  align-items: center;
}
.sfc-hero__content { max-width: 760px; }
.sfc-hero__content p { max-width: 690px; font-size: clamp(1.05rem, 1.45vw, 1.4rem); font-weight: 700; }
.sfc-hero__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sfc-hero__media figure { margin: 0; overflow: hidden; border-radius: var(--sfc-radius-lg); box-shadow: var(--sfc-shadow); }
.sfc-hero__media figure:first-child { grid-row: span 2; }
.sfc-hero__media img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.sfc-card-grid { display: grid; gap: 28px; }
.sfc-card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sfc-card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sfc-card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.sfc-card {
  overflow: hidden;
  background: var(--sfc-white);
  color: var(--sfc-black);
  border: 1px solid rgba(217, 229, 238, .85);
  border-radius: var(--sfc-radius-md);
  box-shadow: 0 16px 44px rgba(7, 22, 34, 0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.sfc-card:hover { transform: translateY(-5px); box-shadow: var(--sfc-shadow); }
.sfc-card__image { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sfc-sky); }
.sfc-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.sfc-card:hover .sfc-card__image img { transform: scale(1.04); }
.sfc-card__body { padding: clamp(22px, 3vw, 34px); }
.sfc-card__body p { color: var(--sfc-gray); }
.sfc-media-text--right .sfc-media-text__image { order: 2; }
.sfc-media-text__image img { width: 100%; border-radius: var(--sfc-radius-lg); box-shadow: var(--sfc-shadow); }
.sfc-rich-text { max-width: 920px; }
.sfc-rich-text a { color: var(--sfc-red); font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.sfc-rich-text ul, .sfc-rich-text ol { padding-left: 1.2em; }
.sfc-rich-text li { margin-bottom: 8px; }
.sfc-cta-banner__inner {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}
.sfc-template-ready__inner { max-width: 850px; text-align: center; }
.sfc-single-post__inner { max-width: 980px; }
.sfc-single-post__image { overflow: hidden; margin: 34px 0; border-radius: var(--sfc-radius-lg); }
.pagination { margin-top: 40px; }
@media (max-width: 1100px) {
  .sfc-card-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .sfc-hero__grid,
  .sfc-media-text__grid { grid-template-columns: 1fr; }
  .sfc-media-text--right .sfc-media-text__image { order: 0; }
  .sfc-card-grid--3,
  .sfc-card-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .sfc-container { width: min(calc(100% - 28px), var(--sfc-container)); }
  .sfc-actions { align-items: stretch; flex-direction: column; }
  .sfc-btn { width: 100%; }
  .sfc-hero__media { grid-template-columns: 1fr; }
  .sfc-card-grid--2,
  .sfc-card-grid--3,
  .sfc-card-grid--4 { grid-template-columns: 1fr; }
  .sfc-section-heading { text-align: left; }
}
