:root {
  --aero-navy: #1a2744;
  --aero-navy-light: #243352;
  --aero-blue: #4a90d9;
  --aero-blue-accent: #6fb1f0;
  --aero-white: #ffffff;
  --aero-gray-50: #f8f9fb;
  --aero-gray-100: #f0f2f5;
  --aero-gray-200: #e2e5ea;
  --aero-gray-300: #d1d5db;
  --aero-gray-600: #6b7280;
  --aero-gray-800: #374151;
  --aero-orange: #e8683a;
  --aero-orange-hover: #d55a2e;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--aero-gray-800);
  line-height: 1.6;
  background: #f3f4f6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.aero-page {
  width: 100%;
  flex: 1 0 auto;
}

.aero-page-limit {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.aero-hero {
  min-height: 30vh;
  display: flex;
  align-items: center;
  background: linear-gradient(168deg, var(--aero-navy) 0%, var(--aero-navy-light) 60%, #2c4a6e 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.aero-hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 144, 217, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.aero-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.aero-hero-title {
  color: var(--aero-white);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin: 0 0 16px;
}

.aero-hero-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  margin: 0;
}

.aero-hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.6;
}

.aero-hero-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--aero-white);
}

.aero-hero-card ul,
.aero-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.aero-bullets li::before,
.aero-hero-card li::before,
.aero-info-card li::before {
  content: "•";
  color: var(--aero-blue-accent);
  display: inline-block;
  width: 18px;
}

.aero-section {
  padding: 80px 0;
}

.aero-content-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}

.aero-section-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--aero-navy);
  letter-spacing: -0.5px;
  margin: 0 0 12px;
}

.aero-body-text {
  font-size: 16px;
  color: var(--aero-gray-600);
  line-height: 1.75;
  margin: 0 0 18px;
}

.aero-cta {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.aero-btn-primary,
.aero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.aero-btn-primary {
  background: var(--aero-orange);
  color: var(--aero-white);
  padding: 12px 22px;
  font-size: 14px;
}

.aero-btn-primary:link,
.aero-btn-primary:visited,
.aero-btn-primary:hover,
.aero-btn-primary:active,
.aero-btn-primary:focus {
  color: var(--aero-white);
}

.aero-btn-primary:hover {
  background: var(--aero-orange-hover);
  transform: translateY(-1px);
}

.aero-btn-secondary {
  background: transparent;
  color: var(--aero-navy);
  border: 1px solid var(--aero-gray-200);
  padding: 12px 22px;
  font-size: 14px;
}

.aero-btn-secondary:hover {
  background: var(--aero-gray-50);
  border-color: var(--aero-gray-300);
  transform: translateY(-1px);
}

.aero-btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.aero-btn-secondary.on-dark {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.25);
}

.aero-btn-secondary.on-dark:hover {
  color: var(--aero-white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.aero-cards-grid {
  display: grid;
  gap: 24px;
}

.aero-cards-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.aero-cards-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.aero-card {
  display: block;
  background: var(--aero-gray-50);
  border: 1px solid var(--aero-gray-200);
  border-radius: 12px;
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.aero-card:hover {
  border-color: var(--aero-blue);
  box-shadow: 0 8px 32px rgba(74, 144, 217, 0.1);
  transform: translateY(-2px);
}

.aero-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(74, 144, 217, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--aero-blue);
}

.aero-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--aero-navy);
}

.aero-card p {
  margin: 0;
  font-size: 15px;
  color: var(--aero-gray-600);
  line-height: 1.7;
}

.aero-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: var(--aero-gray-100);
  margin-bottom: 14px;
}

.aero-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aero-info-card {
  background: var(--aero-gray-50);
  border: 1px solid var(--aero-gray-200);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}

.aero-info-card h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--aero-navy);
}

.aero-info-card p,
.aero-info-card li {
  color: var(--aero-gray-600);
  font-size: 14px;
  line-height: 1.7;
}

.aero-info-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.aero-steps-list {
  display: grid;
  gap: 18px;
  margin: 24px 0 8px;
}

.aero-step {
  background: var(--aero-gray-50);
  border: 1px solid var(--aero-gray-200);
  border-radius: 12px;
  padding: 22px 24px;
}

.aero-step h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--aero-navy);
}

.aero-step ul {
  margin: 0;
  padding-left: 18px;
}

.aero-step li {
  color: var(--aero-gray-600);
  font-size: 15px;
  margin-bottom: 8px;
}

.aero-pill-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 8px;
}

.aero-pill-links a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--aero-navy);
  background: var(--aero-gray-50);
  border: 1px solid var(--aero-gray-200);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
}

.aero-pill-links a:hover {
  background: var(--aero-gray-100);
  border-color: var(--aero-gray-300);
}

.aero-faq-list {
  display: grid;
  gap: 10px;
}

.aero-faq-list details {
  background: var(--aero-white);
  border: 1px solid var(--aero-gray-200);
  border-radius: 10px;
  padding: 14px 16px;
}

.aero-faq-list summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--aero-navy);
  list-style: none;
}

.aero-faq-list summary::-webkit-details-marker {
  display: none;
}

.aero-faq-list details p {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--aero-gray-600);
  line-height: 1.7;
}

.aero-form-shell {
  background: var(--aero-white);
  border: 1px solid var(--aero-gray-200);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(26, 39, 68, 0.08);
}

.aero-form-grid {
  display: grid;
  gap: 18px;
}

.aero-form-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.aero-form-field {
  display: grid;
  gap: 8px;
}

.aero-form-field label {
  color: var(--aero-navy);
  font-size: 14px;
  font-weight: 700;
}

.aero-form-field input,
.aero-form-field textarea {
  width: 100%;
  border: 1px solid var(--aero-gray-300);
  border-radius: 10px;
  background: var(--aero-white);
  color: var(--aero-gray-800);
  font: inherit;
  padding: 14px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.aero-form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.aero-form-field input:focus,
.aero-form-field textarea:focus {
  outline: none;
  border-color: var(--aero-blue);
  box-shadow: 0 0 0 4px rgba(74, 144, 217, 0.12);
}

.aero-form-note {
  margin: 0;
  color: var(--aero-gray-600);
  font-size: 14px;
}

.aero-form-assist {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.aero-form-captcha {
  margin-top: 6px;
}

.aero-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.aero-form-status {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.aero-form-status.is-success {
  color: #157347;
}

.aero-form-status.is-error {
  color: #b42318;
}

.aero-btn-primary[disabled] {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.aero-site-header {
  background: rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid var(--aero-gray-200);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  position: relative;
  z-index: 1000;
}

.aero-site-header .aero-page-limit {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.aero-brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.aero-brand img {
  height: 60px;
  width: auto;
  display: block;
}

.aero-nav {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-left: auto;
  margin-right: 8px;
}

.aero-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--aero-gray-200);
  border-radius: 8px;
  background: var(--aero-white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.aero-nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--aero-navy);
}

.aero-nav-dropdown {
  position: relative;
}

.aero-nav-trigger {
  cursor: default;
  color: var(--aero-gray-600);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 8px;
  border: 0;
  background: transparent;
  font-family: inherit;
}

.aero-nav-dropdown:hover .aero-nav-trigger,
.aero-nav-dropdown:focus-within .aero-nav-trigger {
  color: var(--aero-navy);
}

.aero-nav-menu {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  min-width: 220px;
  background: var(--aero-white);
  border: 1px solid var(--aero-gray-200);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(26, 39, 68, 0.08);
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px) scaleY(0.92);
  transform-origin: top center;
  transition: opacity 0.2s ease, transform 0.24s ease, visibility 0s linear 0.24s;
}

.aero-nav-dropdown:hover .aero-nav-menu,
.aero-nav-dropdown:focus-within .aero-nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scaleY(1);
  transition-delay: 0s;
}

.aero-nav-menu li {
  margin: 0;
}

.aero-nav-menu a {
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  color: var(--aero-gray-600);
  font-weight: 600;
  font-size: 14px;
}

.aero-nav-menu a:hover,
.aero-nav-menu a.active {
  color: var(--aero-navy);
  background: var(--aero-gray-50);
}

.aero-header-cta {
  white-space: nowrap;
  padding: 10px 16px;
  font-size: 14px;
}

.aero-nav-mobile-cta {
  display: none;
}

.aero-nav a {
  text-decoration: none;
  color: var(--aero-gray-600);
  font-weight: 600;
  font-size: 14px;
}

.aero-nav a.active,
.aero-nav a:hover {
  color: var(--aero-navy);
}

.aero-site-footer {
  margin-top: 0;
  border-top: 1px solid var(--aero-gray-200);
  background: rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.aero-footer-inner {
  min-height: clamp(120px, 18vh, 220px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.aero-footer-brand-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.aero-footer-brand-link img {
  height: 34px;
  width: auto;
  display: block;
}

.aero-footer-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.aero-footer-nav a {
  text-decoration: none;
  color: var(--aero-gray-600);
  font-size: 14px;
  font-weight: 600;
}

.aero-footer-nav a:hover {
  color: var(--aero-navy);
}

.aero-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 600;
}

.aero-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.aero-breadcrumbs a:hover {
  color: var(--aero-white);
}

.aero-breadcrumb-sep {
  opacity: 0.7;
}

.aero-kicker {
  margin: 0 0 14px;
  color: var(--aero-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.aero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
}

.aero-stat-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.aero-stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 18px;
}

.aero-stat-value {
  margin: 0 0 6px;
  color: var(--aero-white);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.aero-stat-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.5;
}

.aero-section-shell {
  padding: 56px 0 96px;
}

.aero-surface {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 229, 234, 0.9);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(26, 39, 68, 0.08);
}

.aero-surface-pad {
  padding: 32px;
}

.aero-topic-list {
  display: grid;
  gap: 16px;
}

.aero-topic-card {
  display: grid;
  gap: 10px;
  padding: 22px 24px;
  background: var(--aero-white);
  border: 1px solid var(--aero-gray-200);
  border-radius: 16px;
}

.aero-topic-card h3 {
  margin: 0;
  color: var(--aero-navy);
  font-size: 19px;
  line-height: 1.3;
}

.aero-topic-card p {
  margin: 0;
  color: var(--aero-gray-600);
  font-size: 15px;
  line-height: 1.7;
}

.aero-topic-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--aero-gray-50);
  border: 1px solid var(--aero-gray-200);
  color: var(--aero-gray-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aero-inline-note {
  margin: 0;
  color: var(--aero-gray-600);
  font-size: 14px;
}

@media (max-width: 1060px) {
  .aero-hero-inner,
  .aero-content-grid {
    grid-template-columns: 1fr;
  }

  .aero-cards-grid.cols-3,
  .aero-cards-grid.cols-2 {
    grid-template-columns: 1fr;
  }

  .aero-form-grid.cols-2 {
    grid-template-columns: 1fr;
  }

  .aero-footer-inner {
    min-height: 120px;
    flex-direction: column;
    align-items: flex-start;
  }

  .aero-site-header .aero-page-limit {
    min-height: 72px;
    align-items: center;
    flex-wrap: nowrap;
  }

  .aero-brand img {
    height: 48px;
  }

  .aero-nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .aero-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    z-index: 1200;
    background: var(--aero-white);
    border: 1px solid var(--aero-gray-200);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(26, 39, 68, 0.1);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    gap: 0;
    max-height: min(70vh, 520px);
    overflow-y: auto;
  }

  .aero-site-header.nav-open .aero-nav {
    display: flex;
  }

  .aero-nav-trigger {
    cursor: pointer;
    width: 100%;
    padding: 10px 0;
    text-align: left;
  }

  .aero-nav-menu {
    position: static;
    display: none;
    box-shadow: none;
    border-radius: 10px;
    margin-top: 6px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .aero-nav-dropdown.is-open .aero-nav-menu {
    display: block;
  }

  .aero-nav-dropdown {
    border-bottom: 1px solid var(--aero-gray-200);
    padding-bottom: 6px;
    margin-bottom: 6px;
  }

  .aero-nav-dropdown:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .aero-header-cta {
    display: none;
  }

  .aero-nav-mobile-cta {
    display: inline-flex;
    margin-top: 8px;
    align-self: flex-start;
  }

  .aero-site-header.nav-open .aero-nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .aero-site-header.nav-open .aero-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .aero-site-header.nav-open .aero-nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .aero-nav-toggle span {
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
}

@media (max-width: 900px) {
  .aero-stat-grid {
    grid-template-columns: 1fr;
  }

  .aero-surface-pad {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .aero-page-limit {
    padding: 0 20px;
  }

  .aero-hero {
    padding: 64px 0;
  }

  .aero-hero-title {
    font-size: 32px;
  }

  .aero-section-title {
    font-size: 22px;
  }

  .aero-card,
  .aero-step,
  .aero-info-card {
    padding: 18px;
  }
}

.aero-blog-shell {
  padding: 56px 0 96px;
}

.aero-blog-layout {
  display: grid;
  gap: 32px;
}

.aero-blog-intro {
  max-width: 760px;
}

.aero-blog-kicker {
  margin: 0 0 12px;
  color: var(--aero-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aero-blog-title {
  margin: 0 0 16px;
  color: var(--aero-navy);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.aero-blog-lead {
  margin: 0;
  max-width: 700px;
  color: var(--aero-gray-600);
  font-size: 18px;
  line-height: 1.8;
}

.aero-blog-grid {
  display: grid;
  gap: 24px;
}

.aero-blog-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  background: var(--aero-white);
  border: 1px solid var(--aero-gray-200);
  border-radius: 18px;
  padding: 20px;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(26, 39, 68, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.aero-blog-card[hidden] {
  display: none !important;
}

.aero-blog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(74, 144, 217, 0.4);
  box-shadow: 0 24px 48px rgba(26, 39, 68, 0.08);
}

.aero-blog-card-meta,
.aero-blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  color: var(--aero-gray-600);
  font-size: 14px;
  font-weight: 600;
}

.aero-blog-card h2,
.aero-blog-post-header h1 {
  margin: 0;
  color: var(--aero-navy);
  letter-spacing: -0.03em;
}

.aero-blog-card h2 {
  font-size: 28px;
  line-height: 1.18;
}

.aero-blog-card p {
  margin: 10px 0 0;
  color: var(--aero-gray-600);
  font-size: 15px;
  line-height: 1.7;
}

.aero-blog-card-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--aero-blue);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.aero-blog-post {
  background: var(--aero-white);
  border: 1px solid var(--aero-gray-200);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(26, 39, 68, 0.05);
}

.aero-blog-post-header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--aero-gray-200);
  margin-bottom: 28px;
}

.aero-blog-post-header h1 {
  font-size: 40px;
  line-height: 1.1;
}

.aero-blog-backlink {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--aero-blue);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.aero-blog-richtext {
  color: var(--aero-gray-800);
  font-size: 17px;
  line-height: 1.85;
}

.aero-blog-richtext > *:first-child {
  margin-top: 0;
}

.aero-blog-richtext iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 14px;
  background: var(--aero-navy);
}

.aero-blog-richtext .sqs-html-content {
  margin: 0 0 20px;
}

.aero-blog-richtext p,
.aero-blog-richtext ul,
.aero-blog-richtext ol,
.aero-blog-richtext blockquote,
.aero-blog-richtext h2,
.aero-blog-richtext h3,
.aero-blog-richtext h4,
.aero-blog-richtext hr {
  margin-top: 0;
}

.aero-blog-richtext p,
.aero-blog-richtext ul,
.aero-blog-richtext ol,
.aero-blog-richtext blockquote {
  margin-bottom: 18px;
}

.aero-blog-richtext h2,
.aero-blog-richtext h3,
.aero-blog-richtext h4 {
  margin-bottom: 12px;
  color: var(--aero-navy);
  line-height: 1.25;
}

.aero-blog-richtext h2 {
  font-size: 28px;
}

.aero-blog-richtext h3 {
  font-size: 22px;
}

.aero-blog-richtext ul,
.aero-blog-richtext ol {
  padding-left: 22px;
}

.aero-blog-richtext li {
  margin-bottom: 8px;
}

.aero-blog-richtext blockquote {
  margin-left: 0;
  padding: 18px 20px;
  border-left: 4px solid var(--aero-blue);
  background: var(--aero-gray-50);
  border-radius: 0 12px 12px 0;
}

.aero-blog-richtext hr {
  border: 0;
  border-top: 1px solid var(--aero-gray-200);
  margin-bottom: 24px;
}

.aero-blog-richtext a {
  color: var(--aero-blue);
}

@media (max-width: 600px) {
  .aero-blog-shell {
    padding: 40px 0 72px;
  }

  .aero-blog-title,
  .aero-blog-post-header h1 {
    font-size: 32px;
  }

  .aero-blog-card,
  .aero-blog-post {
    padding: 22px;
  }

  .aero-blog-richtext {
    font-size: 16px;
  }

  .aero-blog-richtext iframe {
    min-height: 220px;
  }
}

.aero-blog-hero {
  padding: 40px 0 24px;
}

.aero-blog-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.aero-blog-hero-copy,
.aero-blog-hero-media {
  min-width: 0;
}

.aero-blog-hero-copy {
  padding: 28px 0 8px;
}

.aero-blog-hero-media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 24px 60px rgba(26, 39, 68, 0.12);
  min-height: 320px;
}

.aero-blog-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-index-page .aero-site-footer {
  margin-top: 0;
}

.blog-index-page .aero-footer-inner {
  min-height: 120px;
}

.aero-blog-index-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.aero-blog-pagination-meta {
  color: var(--aero-gray-600);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.aero-blog-pagination-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.aero-blog-page-arrow {
  min-width: 46px;
  padding: 10px 14px;
}

.aero-blog-card-thumb {
  display: block;
  width: 100%;
  max-width: 170px;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: var(--aero-gray-100);
  align-self: start;
}

.aero-blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.aero-blog-card:hover .aero-blog-card-thumb img {
  transform: scale(1.03);
}

.aero-blog-card-body {
  min-width: 0;
}

.aero-blog-card h3 {
  margin: 0;
  color: var(--aero-navy);
  font-size: 28px;
  line-height: 1.18;
}

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

.aero-blog-card h3 a:hover {
  color: var(--aero-blue);
}

.aero-blog-pagination {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.aero-blog-pagination .aero-blog-pagination-meta {
  text-align: center;
}

.aero-blog-pagination button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 900px) {
  .aero-blog-hero-inner {
    grid-template-columns: 1fr;
  }

  .aero-blog-index-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .aero-blog-pagination-inline {
    align-self: stretch;
    justify-content: flex-start;
  }

  .aero-blog-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .aero-blog-hero {
    padding: 24px 0 8px;
  }

  .aero-blog-hero-copy {
    padding-top: 12px;
  }

  .aero-blog-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .aero-blog-card-thumb {
    max-width: 180px;
  }

  .aero-blog-pagination {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .aero-blog-pagination .aero-blog-pagination-meta {
    width: 100%;
    order: -1;
    text-align: left;
  }

  .aero-blog-pagination .aero-btn-secondary {
    flex: 0 0 auto;
  }
}

.aero-blog-post-hero {
  margin: 0 0 28px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--aero-gray-100);
  border: 1px solid var(--aero-gray-200);
}

.aero-blog-post-hero img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.aero-blog-richtext img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 0 24px;
  border-radius: 16px;
}

.aero-blog-captioned-image {
  margin: 0 0 24px;
}

.aero-blog-captioned-image img {
  margin-bottom: 10px;
}

.aero-blog-captioned-image figcaption {
  color: var(--aero-gray-600);
  font-size: 14px;
  text-align: center;
}

.aero-blog-richtext .accordion-items-container {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  background: var(--aero-gray-50);
  border: 1px solid var(--aero-gray-200);
  border-radius: 16px;
  overflow: hidden;
}

.aero-blog-richtext .accordion-item {
  margin: 0;
}

.aero-blog-richtext .accordion-item + .accordion-item {
  border-top: 1px solid var(--aero-gray-200);
}

.aero-blog-richtext .accordion-divider,
.aero-blog-richtext .accordion-icon-container {
  display: none !important;
}

.aero-blog-richtext .accordion-item__title-wrapper {
  margin: 0;
}

.aero-blog-richtext .accordion-item__click-target {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px !important;
  border: 0;
  background: transparent;
  color: var(--aero-navy);
  font: inherit;
  font-weight: 700;
  text-align: left;
}

.aero-blog-richtext .accordion-item__title {
  padding-left: 0 !important;
}

.aero-blog-richtext .accordion-item__dropdown {
  display: block;
}

.aero-blog-richtext .accordion-item__description {
  max-width: none !important;
  min-width: 0 !important;
  padding: 0 20px 20px !important;
}
