:root {
  --c3w-petrol: #073b4c;
  --c3w-petrol-dark: #042a36;
  --c3w-navy: #0b192c;
  --c3w-mint: #8fe3ce;
  --c3w-magenta: #d6005b;
  --c3w-coral: #ff6b6b;
  --c3w-paper: #f4faf9;
  --c3w-white: #ffffff;
  --c3w-copy: #5d7782;
  --c3w-line: rgba(7, 59, 76, .13);
  --c3w-shadow: 0 16px 38px rgba(7, 59, 76, .08);
}

html { scroll-behavior: smooth; }
body.c3w-blog-theme {
  margin: 0;
  overflow-x: hidden;
  background: var(--c3w-paper);
  color: var(--c3w-petrol);
  font-family: Archivo, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.c3w-blog-theme *, body.c3w-blog-theme *::before, body.c3w-blog-theme *::after { box-sizing: border-box; }
body.c3w-blog-theme img { max-width: 100%; height: auto; }
body.c3w-blog-theme a { color: inherit; }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.c3w-blog-shell { width: min(1220px, calc(100% - 48px)); margin: 0 auto; }

/* Header */
.c3w-site-header {
  position: relative;
  z-index: 100;
  padding: 18px 0;
  background: #071c2c;
  color: #f4faf9;
}
.c3w-header-inner {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 26px;
}
.c3w-header-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 7px 20px;
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
}
.c3w-header-logo img { display: block; width: 118px; height: auto; mix-blend-mode: multiply; }
.c3w-header-menu { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 22px; min-width: 0; }
.c3w-primary-nav { display: flex; align-items: center; gap: 3px; min-width: 0; }
.c3w-primary-nav a {
  padding: 10px 11px;
  border-radius: 999px;
  color: rgba(244, 250, 249, .74);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}
.c3w-primary-nav a:hover, .c3w-primary-nav a.is-current { background: rgba(244, 250, 249, .12); color: #fff; }
.c3w-header-actions { display: flex; align-items: center; gap: 12px; }
.c3w-language-switcher { display: flex; padding: 3px; border-radius: 999px; background: rgba(244, 250, 249, .1); }
.c3w-language-switcher button {
  border: 0;
  border-radius: 999px;
  padding: 6px 8px;
  background: transparent;
  color: rgba(244, 250, 249, .68);
  font: 700 10px/1 Archivo, sans-serif;
  cursor: pointer;
}
.c3w-language-switcher button.is-active { background: var(--c3w-mint); color: var(--c3w-petrol-dark); }
.c3w-header-cta, a.c3w-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 42px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--c3w-magenta);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}
.c3w-header-cta:hover { transform: translateY(-1px); background: #b90a51; color: #fff; }
.c3w-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.c3w-menu-toggle > span:not(.screen-reader-text) { display: block; width: 18px; height: 2px; margin: 4px auto; background: #fff; }

/* Hero */
.c3w-blog-hero {
  position: relative;
  min-height: 385px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background-color: #071c2c;
}
.c3w-blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--c3w-hero-image);
  background-size: cover;
  background-position: center 56%;
  transform: scale(1.03);
}
.c3w-blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 28, 44, .98) 0%, rgba(7, 28, 44, .91) 45%, rgba(7, 28, 44, .58) 100%),
    linear-gradient(0deg, rgba(214, 0, 91, .06), transparent 60%);
}
.c3w-hero-layout { padding: 58px 0 64px; }
.c3w-blog-hero.has-featured .c3w-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  align-items: center;
  gap: clamp(42px, 5vw, 76px);
}
.c3w-hero-content { min-width: 0; }
.c3w-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; color: rgba(255,255,255,.58); font-size: 12px; }
.c3w-breadcrumb a { color: inherit; text-decoration: none; }
.c3w-breadcrumb a:hover { color: var(--c3w-mint); }
.c3w-eyebrow {
  margin: 0 0 18px;
  color: #ff6fa5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1.4;
  text-transform: uppercase;
}
.c3w-blog-hero h1 {
  max-width: 770px;
  margin: 0;
  color: #fff;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.03;
}
.c3w-blog-hero.has-featured h1 { max-width: 690px; font-size: clamp(40px, 4.2vw, 60px); }
.c3w-hero-description { max-width: 680px; margin: 22px 0 0; color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.7; }
.c3w-hero-featured {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 410px;
  justify-self: end;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.97);
  color: var(--c3w-petrol);
  box-shadow: 0 22px 48px rgba(0,0,0,.22);
}
.c3w-hero-featured::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c3w-magenta), #0b6675, var(--c3w-mint));
}
.c3w-hero-featured-image { display: block; overflow: hidden; aspect-ratio: 16 / 8.5; background: #dbe9e8; }
.c3w-hero-featured-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.c3w-hero-featured:hover .c3w-hero-featured-image img { transform: scale(1.03); }
.c3w-hero-featured-body { padding: 20px 22px 21px; }
.c3w-hero-featured-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.c3w-hero-featured-meta span, .c3w-hero-featured-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(214,0,91,.08);
  color: var(--c3w-magenta);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}
.c3w-hero-featured-meta a { background: rgba(11,102,117,.09); color: #0b6675; }
.c3w-hero-featured h2 { margin: 0; font: 700 clamp(21px, 2vw, 28px)/1.12 "Roboto Slab", Georgia, serif; letter-spacing: -.03em; }
.c3w-hero-featured h2 a { color: var(--c3w-petrol); text-decoration: none; }
.c3w-hero-featured h2 a:hover { color: #0b6675; }
.c3w-hero-featured-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 17px; }
.c3w-hero-featured-footer > a { color: #0b6675; font-size: 11px; font-weight: 800; text-decoration: none; }
.c3w-hero-featured-footer > a:hover { color: var(--c3w-magenta); }
.c3w-hero-featured-footer > span { color: #8b9ba1; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

/* Blog controls and grid */
.c3w-blog-library { padding: 68px 0 96px; background: var(--c3w-paper); }
.c3w-library-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 30px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--c3w-line);
}
.c3w-category-filters { display: flex; flex-wrap: wrap; gap: 10px; }
.c3w-category-filters a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 9px 18px;
  border: 1px solid var(--c3w-line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--c3w-copy);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, border .18s ease;
}
.c3w-category-filters a:hover, .c3w-category-filters a.is-active { background: var(--c3w-petrol-dark); border-color: var(--c3w-petrol-dark); color: #fff; }
.c3w-blog-search {
  flex: 0 1 250px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0 10px;
  border-bottom: 1px solid rgba(7, 59, 76, .24);
  color: rgba(7, 59, 76, .45);
}
.c3w-blog-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--c3w-petrol);
  font: 500 13px/1.2 Archivo, sans-serif;
}
.c3w-blog-search input::placeholder { color: rgba(7,59,76,.48); }
.c3w-post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; align-items: stretch; }
.c3w-post-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--c3w-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(7,59,76,.03);
  transition: transform .2s ease, box-shadow .2s ease;
}
.c3w-post-card::before { content: ""; position: absolute; z-index: 3; top: 0; left: 0; right: 0; height: 4px; background: var(--c3w-magenta); }
.c3w-post-card.is-teal::before { background: #0b6675; }
.c3w-post-card.is-mint::before { background: var(--c3w-mint); }
.c3w-post-card:hover { transform: translateY(-5px); box-shadow: var(--c3w-shadow); }
.c3w-card-image { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: #dbe9e8; }
.c3w-card-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.c3w-post-card:hover .c3w-card-image img { transform: scale(1.035); }
.c3w-card-body { flex: 1; display: flex; flex-direction: column; padding: 25px 26px 24px; }
.c3w-card-meta { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 17px; color: #80939a; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.c3w-card-meta a, .c3w-card-meta > span:first-child { color: var(--c3w-magenta); text-decoration: none; }
.c3w-post-card h2 { margin: 0; font-family: "Roboto Slab", Georgia, serif; font-size: clamp(22px, 2vw, 28px); letter-spacing: -.025em; line-height: 1.14; }
.c3w-post-card h2 a { color: var(--c3w-petrol); text-decoration: none; }
.c3w-post-card h2 a:hover { color: #0b6675; }
.c3w-card-body > p { margin: 18px 0 26px; color: var(--c3w-copy); font-size: 15px; line-height: 1.65; }
.c3w-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: auto; }
.c3w-card-footer a { color: #0b6675; font-size: 13px; font-weight: 800; text-decoration: none; }
.c3w-card-footer a:hover { color: var(--c3w-magenta); }
.c3w-card-footer time { color: #8b9ba1; font-size: 10px; letter-spacing: .08em; }
.c3w-pagination { margin-top: 50px; }
.c3w-pagination .nav-links { display: flex; justify-content: center; gap: 8px; }
.c3w-pagination .page-numbers { display: grid; place-items: center; min-width: 40px; height: 40px; padding: 0 10px; border: 1px solid var(--c3w-line); border-radius: 999px; background: #fff; color: var(--c3w-petrol); font-size: 12px; font-weight: 700; text-decoration: none; }
.c3w-pagination .page-numbers.current, .c3w-pagination a.page-numbers:hover { background: var(--c3w-petrol-dark); border-color: var(--c3w-petrol-dark); color: #fff; }
.c3w-empty-state { padding: 70px 0; text-align: center; }
.c3w-empty-state h2 { margin: 0; font: 700 34px/1.2 "Roboto Slab", serif; }

/* Single article */
.c3w-single-hero { padding: 76px 0 84px; background: linear-gradient(120deg, #071c2c, #075463); color: #fff; }
.c3w-single-hero-inner { max-width: 980px; }
.c3w-single-meta { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-bottom: 22px; color: rgba(255,255,255,.64); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.c3w-single-meta a { color: #ff6fa5; text-decoration: none; }
.c3w-single-hero h1 { max-width: 940px; margin: 0; color: #fff; font: 700 clamp(42px, 6vw, 76px)/1.02 "Roboto Slab", Georgia, serif; letter-spacing: -.045em; }
.c3w-single-deck { max-width: 760px; margin: 25px 0 0; color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.7; }
.c3w-single-layout { display: grid; grid-template-columns: minmax(0, 820px) minmax(220px, 1fr); gap: 70px; align-items: start; padding-top: 70px; padding-bottom: 70px; }
.c3w-single-image { overflow: hidden; margin: 0 0 42px; border-radius: 22px; aspect-ratio: 16 / 9; background: #dbe9e8; }
.c3w-single-image img { width: 100%; height: 100%; object-fit: cover; }
.c3w-article-content { color: #314f5b; font-family: Archivo, Helvetica, sans-serif; font-size: 18px; line-height: 1.85; }
.c3w-article-content > *:first-child { margin-top: 0; }
.c3w-article-content h2, .c3w-article-content h3, .c3w-article-content h4 { margin: 1.65em 0 .65em; color: var(--c3w-petrol); font-family: "Roboto Slab", Georgia, serif; line-height: 1.2; }
.c3w-article-content h2 { font-size: 36px; }
.c3w-article-content h3 { font-size: 27px; }
.c3w-article-content a { color: #0b6675; font-weight: 700; }
.c3w-article-content blockquote { margin: 38px 0; padding: 8px 0 8px 28px; border-left: 4px solid var(--c3w-magenta); color: var(--c3w-petrol); font: 500 24px/1.55 "Roboto Slab", serif; }
.c3w-article-content img { border-radius: 16px; }
.c3w-single-aside { position: sticky; top: 28px; padding: 28px; border: 1px solid var(--c3w-line); border-radius: 18px; background: #fff; box-shadow: 0 10px 26px rgba(7,59,76,.06); }
.c3w-single-aside strong { display: block; margin: 4px 0 10px; color: var(--c3w-petrol); font: 700 24px/1.2 "Roboto Slab", serif; }
.c3w-single-aside > p:not(.c3w-eyebrow) { margin: 0 0 22px; color: var(--c3w-copy); font-size: 14px; line-height: 1.65; }
.c3w-aside-cta { display: inline-flex; padding-bottom: 4px; border-bottom: 1px solid #0b6675; color: #0b6675; font-size: 13px; font-weight: 800; text-decoration: none; }
.c3w-post-navigation { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding-bottom: 85px; }
.c3w-post-navigation > div:last-child { text-align: right; }
.c3w-post-navigation a { color: var(--c3w-petrol); font: 700 15px/1.4 "Roboto Slab", serif; text-decoration: none; }
.c3w-post-navigation a:hover { color: var(--c3w-magenta); }
.c3w-page-main { padding: 70px 0; }
.c3w-standard-page { max-width: 900px; padding: 50px; border-radius: 22px; background: #fff; }
.c3w-standard-page h1 { margin-top: 0; font: 700 54px/1.08 "Roboto Slab", serif; }
.c3w-error-page { min-height: 62vh; display: grid; align-items: center; padding: 80px 0; background: var(--c3w-paper); }
.c3w-error-page h1 { margin: 0 0 16px; font: 700 clamp(42px, 6vw, 72px)/1 "Roboto Slab", serif; }
.c3w-error-page p:not(.c3w-eyebrow) { max-width: 580px; margin: 0 0 28px; color: var(--c3w-copy); font-size: 17px; line-height: 1.7; }

/* Footer */
.c3w-site-footer { padding: 62px 0 30px; background: #071c2c; color: rgba(244,250,249,.68); }
.c3w-footer-inner { width: min(1220px, calc(100% - 48px)); margin: 0 auto; display: grid; grid-template-columns: 1.2fr .8fr; gap: 45px; }
.c3w-footer-logo { width: 146px; padding: 8px 16px; border-radius: 999px; background: #fff; mix-blend-mode: normal; }
.c3w-footer-inner p { max-width: 450px; margin: 18px 0 0; font-size: 14px; line-height: 1.7; }
.c3w-site-footer nav { display: flex; flex-wrap: wrap; align-content: flex-start; justify-content: flex-end; gap: 11px 22px; }
.c3w-site-footer nav a, .c3w-footer-legal a { color: rgba(244,250,249,.72); font-size: 12px; font-weight: 600; text-decoration: none; }
.c3w-site-footer a:hover { color: var(--c3w-mint); }
.c3w-footer-legal { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }

@media (max-width: 1120px) {
  .c3w-menu-toggle { display: block; }
  .c3w-header-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 24px;
    right: 24px;
    display: none;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    background: #052e3b;
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
  }
  .c3w-header-menu.is-open { display: block; }
  .c3w-primary-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
  .c3w-primary-nav a { padding: 12px 14px; }
  .c3w-header-actions { justify-content: space-between; padding-top: 16px; margin-top: 14px; border-top: 1px solid rgba(255,255,255,.12); }
  .c3w-post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .c3w-blog-hero.has-featured .c3w-hero-layout { grid-template-columns: minmax(0, 1fr) 330px; gap: 34px; }
  .c3w-blog-hero.has-featured h1 { font-size: clamp(38px, 4.7vw, 54px); }
  .c3w-single-layout { grid-template-columns: 1fr; gap: 35px; }
  .c3w-single-aside { position: static; }
}

@media (max-width: 920px) {
  .c3w-blog-hero.has-featured .c3w-hero-layout { grid-template-columns: 1fr; }
  .c3w-hero-featured { max-width: 560px; justify-self: start; }
}

@media (max-width: 720px) {
  .c3w-blog-shell, .c3w-header-inner, .c3w-footer-inner { width: min(100% - 30px, 1220px); }
  .c3w-site-header { padding: 12px 0; }
  .c3w-header-logo { min-height: 42px; padding: 6px 14px; }
  .c3w-header-logo img { width: 100px; }
  .c3w-header-menu { left: 15px; right: 15px; }
  .c3w-primary-nav { grid-template-columns: 1fr; }
  .c3w-blog-hero { min-height: 430px; }
  .c3w-hero-layout { padding: 52px 0 58px; }
  .c3w-blog-hero.has-featured .c3w-hero-layout { gap: 34px; }
  .c3w-blog-hero h1 { font-size: clamp(38px, 12vw, 55px); }
  .c3w-blog-hero.has-featured h1 { font-size: clamp(36px, 11vw, 50px); }
  .c3w-hero-description { font-size: 15px; }
  .c3w-hero-featured { max-width: none; border-radius: 16px; }
  .c3w-hero-featured-body { padding: 18px 19px 19px; }
  .c3w-hero-featured h2 { font-size: clamp(21px, 7vw, 28px); }
  .c3w-hero-featured-footer { align-items: flex-start; flex-direction: column; gap: 10px; }
  .c3w-blog-library { padding: 45px 0 70px; }
  .c3w-library-controls { display: grid; gap: 24px; }
  .c3w-category-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .c3w-category-filters a { flex: none; }
  .c3w-blog-search { width: 100%; max-width: none; }
  .c3w-post-grid { grid-template-columns: 1fr; gap: 20px; }
  .c3w-card-body { padding: 23px 22px 22px; }
  .c3w-single-hero { padding: 58px 0 65px; }
  .c3w-single-hero h1 { font-size: clamp(38px, 12vw, 58px); }
  .c3w-single-layout { padding-top: 38px; padding-bottom: 45px; }
  .c3w-article-content { font-size: 17px; }
  .c3w-article-content h2 { font-size: 30px; }
  .c3w-standard-page { padding: 30px 22px; }
  .c3w-standard-page h1 { font-size: 42px; }
  .c3w-post-navigation { grid-template-columns: 1fr; padding-bottom: 60px; }
  .c3w-post-navigation > div:last-child { text-align: left; }
  .c3w-footer-inner { grid-template-columns: 1fr; }
  .c3w-site-footer nav { justify-content: flex-start; }
  .c3w-footer-legal { grid-column: auto; flex-wrap: wrap; }
}
