
@font-face {
  font-family: "Gabarito";
  src: url("/assets/fonts/Gabarito-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gabarito";
  src: url("/assets/fonts/Gabarito-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gabarito";
  src: url("/assets/fonts/Gabarito-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --blue: #152b4b;
  --orange: #ff4d12;
  --red: #ff4d12;
  --sky: #b7dcf1;
  --cream: #fff1cb;
  --white: #fff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--blue);
  font-family: "Gabarito", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.45;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
main { padding-top: 118px; }
.blog-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
}
.blog-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 86px) 0 clamp(22px, 4vw, 44px);
  text-align: center;
}
.blog-hero h1,
.article-hero h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(54px, 9vw, 118px);
  font-weight: 900;
  line-height: .86;
  text-transform: uppercase;
}
.blog-hero p {
  width: min(820px, 100%);
  margin: 24px auto 0;
  font-size: clamp(18px, 2vw, 24px);
}
.news-grid {
  width: min(1180px, calc(100% - 36px));
  margin: 10px auto 86px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.news-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 26px;
  text-decoration: none;
  background: var(--cream);
  box-shadow: 0 10px 0 rgba(21,43,75,.08);
  transition: transform .22s ease, box-shadow .22s ease;
}
.news-card:nth-child(3n+2) { background: #dff0fb; }
.news-card:nth-child(3n+3) { background: #ffe0d6; }
.news-card:hover {
  transform: translateY(-8px) rotate(-.45deg);
  box-shadow: 0 18px 0 rgba(21,43,75,.08);
}
.news-card-cat {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}
.news-card img {
  width: 100%;
  height: clamp(230px, 23vw, 285px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.news-card-copy {
  padding: 22px 22px 26px;
}
.news-date {
  color: var(--red);
  font-size: 14px;
}
.news-card h2 {
  margin: 8px 0 10px;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: .95;
}
.news-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}
.article-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 78px) 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 34px;
  align-items: end;
}
.blog-back {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  overflow: hidden;
  position: relative;
}
.blog-back::after,
.site-cta::after,
.site-footer-cta::after {
  content: "";
  position: absolute;
  inset: -45% -80%;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.4) 50%, transparent 65%);
  transform: translateX(-75%);
  transition: transform .55s ease;
}
.blog-back:hover::after,
.site-cta:hover::after,
.site-footer-cta:hover::after { transform: translateX(75%); }
.article-lead {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2.2vw, 25px);
}
.article-hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--cream);
  box-shadow: 0 10px 0 rgba(21,43,75,.08);
}
.article-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  max-height: 520px;
  object-fit: cover;
}
.article-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 18px auto 86px;
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(280px, 1fr);
  gap: 42px;
  align-items: start;
}
.article-content {
  min-width: 0;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.72;
}
.article-content > *:first-child { margin-top: 0; }
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
  color: var(--blue);
  font-weight: 900;
  line-height: .98;
}
.article-content h2 { margin: 46px 0 16px; font-size: clamp(34px, 4vw, 54px); }
.article-content h3 { margin: 34px 0 12px; font-size: clamp(26px, 3vw, 36px); }
.article-content p,
.article-content li { color: var(--blue); }
.article-content a { color: var(--red); font-weight: 700; text-decoration-thickness: 2px; }
.article-content ul,
.article-content ol { padding-left: 1.2em; }
.article-content figure { margin: 34px 0; }
.article-content img {
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 10px 0 rgba(21,43,75,.08);
}
.article-content blockquote {
  margin: 34px 0;
  padding: 24px;
  border-radius: 22px;
  background: var(--cream);
  border-left: 8px solid var(--orange);
  font-weight: 700;
}
.article-aside {
  position: sticky;
  top: 112px;
}
.aside-card {
  padding: 26px;
  border-radius: 26px;
  background: var(--cream);
  box-shadow: 0 10px 0 rgba(21,43,75,.08);
}
.aside-kicker {
  display: inline-flex;
  color: var(--red);
  margin-bottom: 10px;
}
.aside-card h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 900;
  line-height: .95;
}
.aside-card p {
  font-size: 17px;
}
.site-cta,
.site-footer-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
}
.site-footer {
  width: 100%;
  margin: 54px 0 0;
  background: var(--blue);
  color: #fff;
}
.site-footer-shell {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 42px 0 24px;
}
.site-footer-main {
  display: grid;
  grid-template-columns: 1.15fr .65fr .85fr .9fr;
  gap: 28px;
  align-items: start;
}
.site-footer-logo { width: 150px; margin-bottom: 20px; }
.site-footer-kicker {
  display: block;
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 10px;
}
.site-footer-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  line-height: .9;
}
.site-footer-text {
  margin: 14px 0 0;
  max-width: 460px;
  font-size: 16px;
  line-height: 1.45;
}
.site-footer-heading {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  text-transform: uppercase;
}
.site-footer-links,
.site-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer a {
  color: #fff;
  text-decoration: none;
}
.site-footer a:hover { color: var(--orange); }
.site-footer-card {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
}
.site-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.site-footer-pill {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
}
.site-footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.16);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}
.site-footer-stars {
  color: var(--red);
  display: inline-flex;
  gap: 10px;
}
@media (max-width: 980px) {
  main { padding-top: 88px; }
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-hero,
  .article-shell {
    grid-template-columns: 1fr;
  }
  .article-aside { position: static; }
  .site-footer-main { grid-template-columns: 1fr 1fr; }
  .site-footer-card { grid-column: span 2; }
}
@media (max-width: 640px) {
  .blog-hero,
  .article-hero,
  .article-shell,
  .news-grid,
  .site-footer-shell {
    width: min(100% - 24px, 1180px);
  }
  .blog-hero h1,
  .article-hero h1 {
    font-size: clamp(44px, 15vw, 76px);
  }
  .news-grid { grid-template-columns: 1fr; }
  .article-content { font-size: 17px; }
  .article-hero-media img { min-height: 240px; }
  .site-footer-main { grid-template-columns: 1fr; }
  .site-footer-card { grid-column: auto; }
  .site-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
