/*
Theme Name: FlyClaimer Child
Template: generatepress
Version: 1.1.5
*/

:root{
  --fc-bg: #f7f8fb;
  --fc-surface: #ffffff;
  --fc-text: #1d2733;
  --fc-muted: #5e6b78;
  --fc-accent: #1e73be;
  --fc-accent-dark: #155a95;
  --fc-border: #e7ebf0;
  --fc-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  --fc-radius: 18px;
  --fc-wrap: 1200px;
}

.fc-wrap{
  width: min(var(--fc-wrap), calc(100% - 32px));
  margin-inline: auto;
}

.fc-section{
  padding: 80px 0;
  background: #fff;
}

.fc-section--alt{
  background: var(--fc-bg);
}

.fc-section-head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.fc-section-head h2{
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.15;
}

.fc-section-head p{
  margin: 0;
  color: var(--fc-muted);
  font-size: 1.05rem;
}

.fc-hero{
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    url('/vendor/flyclaimer/uploads/2026/03/airport-2373727_1920-1.webp') center center / cover no-repeat;
  overflow: hidden;
}

.fc-hero__overlay{
  position: absolute;
  inset: 0;
  background: rgba(12, 22, 34, 0.62);
}

.fc-hero__inner{
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 90px 0;
}

.fc-hero__content{
  max-width: 820px;
  color: #fff;
  margin: 0 auto;
  text-align: center;
}

.fc-hero__actions{
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  flex-wrap: wrap;
}

.fc-hero__note{
  margin-top: 18px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  text-align: center;
}

.fc-kicker{
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.95;
}

.fc-hero__eyebrow{
  margin: 0 0 12px;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

.fc-hero h1.fc-hero__eyebrow{
  margin: 0 0 12px;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

.fc-hero h1{
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1.05;
  color: #fff;
}

.fc-hero__title{
  margin: 0 0 20px;
  font-size: clamp(2.3rem, 4.8vw, 4.1rem);
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.025em;
}

.fc-hero__content > h1:not(.fc-hero__eyebrow){
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.fc-hero__content > h2.fc-hero__title{
  margin: 0 0 20px;
}

.fc-hero p{
  margin: 0 0 22px;
  color: rgba(255,255,255,0.92);
  font-size: 1.08rem;
  line-height: 1.7;
}

.fc-hero__actions{
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 26px;
  flex-wrap: wrap;
}

.fc-hero__note{
  margin-top: 18px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}

.fc-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  background: var(--fc-accent);
  color: #fff;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  box-shadow: 0 12px 24px rgba(30,115,190,.2);
}

.fc-btn:hover{
  background: var(--fc-accent-dark);
  color: #fff;
  transform: translateY(-1px);
}

.fc-btn--light{
  background: #fff;
  color: var(--fc-text);
  box-shadow: none;
}

.fc-btn--light:hover{
  background: #f4f6f8;
  color: var(--fc-text);
}

.fc-grid{
  display: grid;
  gap: 24px;
}

.fc-grid-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fc-grid-4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fc-card{
  background: var(--fc-surface);
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius);
  padding: 28px;
  box-shadow: var(--fc-shadow);
  height: 100%;
}

.fc-card h3{
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.3;
}

.fc-card p{
  margin: 0;
  color: var(--fc-muted);
  line-height: 1.7;
}

.fc-card__icon{
  font-size: 1.7rem;
  margin-bottom: 14px;
}

.fc-why{
  max-width: 900px;
  margin: 0 auto;
}

.fc-points{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.fc-points li{
  position: relative;
  padding-left: 28px;
  color: var(--fc-text);
  line-height: 1.7;
}

.fc-points li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--fc-accent);
}

.fc-cta-strip{
  padding: 70px 0;
  background: linear-gradient(135deg, #15344e, #1c4f78);
  color: #fff;
}

.fc-cta-strip__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.fc-cta-strip h2{
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.fc-cta-strip p{
  margin: 0;
  color: rgba(255,255,255,0.88);
  max-width: 700px;
}

.fc-content-band{
  padding: 72px 0;
  background: #fff;
}

.fc-content-band--alt{
  background: var(--fc-bg);
}

.fc-content-band__inner{
  max-width: 860px;
  margin: 0 auto;
}

.fc-content-band__inner + .fc-content-band__inner{
  margin-top: 24px;
}

.fc-rich-section{
  padding: 0 24px 56px;
  border-bottom: 1px solid #f1f5f9;
}

.fc-rich-section:last-child{
  border-bottom: 0;
  padding-bottom: 0;
}

.fc-rich-section__badge{
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1a56db;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.fc-rich-section__title{
  margin: 0 0 12px;
  color: #111827;
  font-size: clamp(1.7rem, 2.7vw, 2.4rem);
  line-height: 1.18;
}

.fc-rich-section__lead,
.fc-rich-section__text{
  color: #374151;
  line-height: 1.75;
}

.fc-rich-section__lead{
  margin: 0 0 24px;
  font-size: 1rem;
}

.fc-rich-section__text{
  margin: 0;
  font-size: 0.96rem;
}

.fc-rich-section__note{
  margin: 0 0 18px;
  color: #6b7280;
  font-size: 0.82rem;
  line-height: 1.6;
  font-style: italic;
}

.fc-table-wrap{
  overflow-x: auto;
  margin-bottom: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.fc-table{
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.fc-table th{
  padding: 13px 16px;
  background: #1a56db;
  color: #fff;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
}

.fc-table th:last-child,
.fc-table td:last-child{
  text-align: right;
}

.fc-table td{
  padding: 12px 16px;
  border-bottom: 1px solid #e8edf5;
  color: #374151;
  font-size: 14px;
  background: #fff;
}

.fc-table tbody tr:nth-child(even) td{
  background: #f8faff;
}

.fc-table tbody tr:last-child td{
  border-bottom: 0;
}

.fc-table td.fc-table__value{
  color: #1a56db;
  font-size: 15px;
  font-weight: 700;
}

.fc-info-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fc-info-card{
  padding: 18px 20px;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #1a56db;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.fc-info-card h3{
  margin: 0 0 7px;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
}

.fc-info-card p{
  margin: 0;
  color: #374151;
  font-size: 13px;
  line-height: 1.7;
}

.fc-pill-row{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.fc-pill{
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1a56db;
  font-size: 12px;
  font-weight: 600;
}

.fc-callout{
  margin-bottom: 24px;
  padding: 13px 16px;
  border-left: 4px solid #1a56db;
  border-radius: 0 8px 8px 0;
  background: #eff6ff;
  color: #1e3a8a;
  font-size: 13px;
  line-height: 1.65;
}

.fc-callout strong{
  color: #111827;
}

.fc-airport-grid,
.fc-stats-grid{
  display: grid;
  gap: 12px;
}

.fc-airport-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fc-airport-card{
  padding: 16px 18px;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: #f8faff;
}

.fc-airport-card__code{
  margin-bottom: 3px;
  color: #1a56db;
  font-size: 20px;
  font-weight: 800;
}

.fc-airport-card h3{
  margin: 0 0 7px;
  color: #111827;
  font-size: 12px;
  font-weight: 700;
}

.fc-airport-card p{
  margin: 0;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.6;
}

.fc-stats-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 14px;
}

.fc-stat{
  padding: 26px 16px;
  text-align: center;
  background: #eff6ff;
}

.fc-stat + .fc-stat{
  border-left: 1px solid #dbeafe;
}

.fc-stat:nth-child(2){
  background: #e0eeff;
}

.fc-stat__value{
  margin-bottom: 5px;
  color: #1a56db;
  font-size: clamp(1.9rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1;
}

.fc-stat__label{
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
}

.fc-rich-section.fc-generic-statbar{
  margin-top: 8px;
  padding: 34px 32px 36px;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.95), rgba(255, 255, 255, 0.98));
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.fc-rich-section.fc-generic-statbar .fc-rich-section__title{
  max-width: 640px;
  margin-bottom: 22px;
}

.fc-rich-section.fc-generic-statbar .fc-stats-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
  border: 0;
  border-radius: 0;
}

.fc-rich-section.fc-generic-statbar .fc-stat{
  display: flex;
  min-height: 124px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 24px;
  border: 1px solid #d7e7fb;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
  text-align: left;
}

.fc-rich-section.fc-generic-statbar .fc-stat + .fc-stat{
  border-left: 1px solid #d7e7fb;
}

.fc-rich-section.fc-generic-statbar .fc-stat:nth-child(2){
  background: #fff;
}

.fc-rich-section.fc-generic-statbar .fc-stat__value{
  margin-bottom: 14px;
  color: #123f70;
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.18;
}

.fc-rich-section.fc-generic-statbar .fc-stat__label{
  max-width: 260px;
  color: #526172;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.fc-home-faq details{
  margin: 0 0 12px;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
  overflow: hidden;
}

.fc-home-faq summary{
  cursor: pointer;
  color: #123f70;
  font-weight: 800;
  list-style: none;
  padding: 18px 20px;
}

.fc-home-faq summary::-webkit-details-marker{
  display: none;
}

.fc-home-faq summary::after{
  content: '+';
  float: right;
  color: #1a56db;
  font-weight: 900;
}

.fc-home-faq details[open] summary::after{
  content: '-';
}

.fc-home-faq details p{
  margin: 0;
  border-top: 1px solid #e8edf5;
  color: #526172;
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 20px 18px;
}

.fc-rich-section[data-flyclaimer-home-section="final-home-cta"] .fc-btn{
  margin-top: 4px;
}

@media (max-width: 1024px){
  .fc-grid-4{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fc-grid-3{
    grid-template-columns: 1fr;
  }

  .fc-cta-strip__inner{
    flex-direction: column;
    align-items: flex-start;
  }

  .fc-airport-grid{
    grid-template-columns: 1fr;
  }

  .fc-rich-section.fc-generic-statbar{
    padding: 28px 24px 30px;
  }
}

@media (max-width: 768px){
  .fc-section{
    padding: 56px 0;
  }

  .fc-hero{
    min-height: auto;
  }

  .fc-hero__inner{
    padding: 72px 0 60px;
  }

  .fc-grid-4{
    grid-template-columns: 1fr;
  }

  .fc-card{
    padding: 22px;
  }

  .fc-wrap{
    width: min(var(--fc-wrap), calc(100% - 24px));
  }

  .fc-hero__eyebrow{
    font-size: 1rem;
  }

  .fc-hero h1.fc-hero__eyebrow{
    font-size: 1rem;
  }

  .fc-hero__title{
    font-size: clamp(2rem, 7vw, 2.9rem);
  }

  .fc-content-band{
    padding: 56px 0;
  }

  .fc-rich-section{
    padding: 0 0 44px;
  }

  .fc-info-grid,
  .fc-stats-grid{
    grid-template-columns: 1fr;
  }

  .fc-stat + .fc-stat{
    border-left: 0;
    border-top: 1px solid #dbeafe;
  }

  .fc-rich-section.fc-generic-statbar .fc-stats-grid{
    grid-template-columns: 1fr;
  }

  .fc-stat{
    min-height: auto;
  }

  .fc-rich-section.fc-generic-statbar .fc-stat + .fc-stat{
    border-top: 1px solid #d7e7fb;
  }
}

.fc-hero__widget{
  margin: 28px auto 0;
  max-width: 760px;
  width: 100%;
}

/* =========================
   GLOBAL MODERN SUBMENUS
   ========================= */

/* Desktop dropdown panel */
.main-navigation .main-nav ul ul {
  background: #ffffff !important;
  border: 1px solid #e8edf3;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  padding: 10px 0;
  min-width: 240px;
  overflow: hidden;
}

/* Dropdown items */
.main-navigation .main-nav ul ul li {
  background: transparent !important;
}

/* Dropdown links */
.main-navigation .main-nav ul ul li a {
  display: block;
  color: #172033 !important;
  background: transparent !important;
  padding: 12px 18px !important;
  line-height: 1.4;
  font-size: 15px;
  font-weight: 500;
  transition: background .18s ease, color .18s ease, padding .18s ease;
}

/* Hover / focus */
.main-navigation .main-nav ul ul li a:hover,
.main-navigation .main-nav ul ul li a:focus,
.main-navigation .main-nav ul ul li.current-menu-item > a,
.main-navigation .main-nav ul ul li.current-menu-ancestor > a {
  background: #f6f8fb !important;
  color: #0f172a !important;
  padding-left: 22px !important;
}

/* Remove weird inherited backgrounds */
.main-navigation .main-nav ul ul li[class*="current-menu-"] > a {
  color: #0f172a !important;
  background: #f6f8fb !important;
}

/* Optional small separation between submenu items */
.main-navigation .main-nav ul ul li + li {
  border-top: 1px solid rgba(232, 237, 243, 0.7);
}

/* =========================
   DESKTOP MEGA MENU
   ========================= */

@media (min-width: 769px) {
  .main-navigation .main-nav > ul > li.fc-mobile-only-menu,
  .main-navigation .main-nav > ul > li.fc-mega-menu > ul > li.fc-mobile-only-menu,
  .main-navigation .main-nav > ul > li.fc-mobile-only-menu > ul,
  .main-navigation .main-nav > ul > li.fc-mega-menu > ul > li.fc-mobile-only-menu > ul,
  .main-navigation .main-nav > ul > li.fc-mobile-only-menu > ul > li {
    display: none !important;
  }

  .main-navigation .main-nav > ul > li.fc-mega-menu {
    position: static;
  }

  .main-navigation .main-nav > ul > li.fc-mega-menu > ul {
    position: absolute;
    left: 50% !important;
    top: calc(100% - 2px);
    right: auto !important;
    transform: translateX(-50%);
    width: min(940px, calc(100vw - 56px));
    max-width: min(940px, calc(100vw - 56px));
    min-width: min(940px, calc(100vw - 56px));
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding: 20px 22px !important;
    align-items: start;
    box-sizing: border-box;
  }

  .main-navigation .main-nav > ul > li.fc-mega-menu > ul > li {
    border-top: 0 !important;
    padding: 0;
    background: transparent !important;
  }

  .main-navigation .main-nav > ul > li.fc-mega-menu > ul > li > a {
    padding: 0 0 12px !important;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280 !important;
    background: transparent !important;
    pointer-events: auto;
  }

  .main-navigation .main-nav > ul > li.fc-mega-menu > ul > li > a:hover,
  .main-navigation .main-nav > ul > li.fc-mega-menu > ul > li > a:focus {
    padding-left: 0 !important;
    color: #172033 !important;
    background: transparent !important;
  }

  .main-navigation .main-nav > ul > li.fc-mega-menu > ul > li > ul {
    position: static;
    left: auto !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    min-width: 0;
    width: 100%;
    background: transparent !important;
    padding: 0 !important;
    overflow: visible !important;
    display: block !important;
    height: auto !important;
  }

  .main-navigation .main-nav > ul > li.fc-mega-menu > ul > li > ul > li {
    border-top: 1px solid rgba(232, 237, 243, 0.7);
    background: transparent !important;
  }

  .main-navigation .main-nav > ul > li.fc-mega-menu > ul > li > ul > li:first-child {
    border-top: 0;
  }

  .main-navigation .main-nav > ul > li.fc-mega-menu > ul > li > ul > li > a {
    padding: 11px 0 !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #172033 !important;
    background: transparent !important;
  }

  .main-navigation .main-nav > ul > li.fc-mega-menu > ul > li > ul > li > a:hover,
  .main-navigation .main-nav > ul > li.fc-mega-menu > ul > li > ul > li > a:focus,
  .main-navigation .main-nav > ul > li.fc-mega-menu > ul > li > ul > li.current-menu-item > a,
  .main-navigation .main-nav > ul > li.fc-mega-menu > ul > li > ul > li.current-menu-ancestor > a {
    padding-left: 6px !important;
    color: #0f172a !important;
    background: transparent !important;
  }

  .main-navigation .main-nav > ul > li.fc-mega-menu::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -18px;
    height: 18px;
  }
}

@media (max-width: 768px) {
  .main-navigation .main-nav > ul > li.fc-mega-menu > ul > li.fc-mega-heading--issues,
  .main-navigation .main-nav > ul > li.fc-mega-menu > ul > li.fc-mega-heading--airlines,
  .main-navigation .main-nav > ul > li.fc-mega-menu > ul > li.fc-mega-heading--airports {
    display: none !important;
  }
}

/* =========================
   HOMEPAGE TRANSPARENT HEADER
   ========================= */

body.home {
  overflow-x: hidden;
}

/* Header sits over hero */
body.home .site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  box-shadow: none !important;
  z-index: 1000;
}

/* Remove inner header backgrounds */
body.home .inside-header,
body.home .main-navigation,
body.home .navigation-branding,
body.home .site-branding-container,
body.home .header-wrap {
  background: transparent !important;
  box-shadow: none !important;
}

/* Header container spacing */
body.home .inside-header {
  padding-top: 36px;
  padding-bottom: 20px;
}

/* White logo/site title */
body.home .site-logo a,
body.home .site-branding a,
body.home .main-title a,
body.home .site-description {
  color: #fff !important;
}

/* Top-level menu items only */
body.home .main-navigation .main-nav > ul > li > a,
body.home .main-navigation .menu-toggle,
body.home .menu-toggle,
body.home .main-navigation .main-nav > ul > li[class*="current-menu-"] > a {
  color: #fff !important;
  background: transparent !important;
}

/* Hover state for top-level only */
body.home .main-navigation .main-nav > ul > li > a:hover,
body.home .main-navigation .main-nav > ul > li > a:focus {
  color: rgba(255,255,255,0.82) !important;
}

/* Homepage dropdown panel */
body.home .main-navigation .main-nav ul ul {
  background: #ffffff !important;
  border: 1px solid #e8edf3;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  padding: 10px 0;
  overflow: hidden;
}

/* IMPORTANT: force dark text inside homepage submenu */
body.home .main-navigation .main-nav ul ul li a,
body.home .main-navigation .main-nav ul ul li[class*="current-menu-"] > a,
body.home .main-navigation .main-nav ul li.menu-item-has-children ul li a {
  color: #172033 !important;
  background: transparent !important;
}

/* Homepage submenu hover */
body.home .main-navigation .main-nav ul ul li a:hover,
body.home .main-navigation .main-nav ul ul li a:focus,
body.home .main-navigation .main-nav ul ul li.current-menu-item > a,
body.home .main-navigation .main-nav ul ul li.current-menu-ancestor > a {
  background: #f6f8fb !important;
  color: #0f172a !important;
}

/* If you use a header button */
body.home .menu-item-button a,
body.home .gb-button,
body.home .button {
  transition: all .2s ease;
}

/* Hero needs extra top padding because header overlaps it */
body.home .fc-hero {
  margin-top: 0 !important;
}

body.home .fc-hero__inner {
  padding-top: 150px;
}

/* Mobile hamburger icon white */
body.home button.menu-toggle,
body.home .mobile-menu-control-wrapper .menu-toggle {
  color: #fff !important;
  border-color: rgba(255,255,255,0.35) !important;
}

/* =========================
   MOBILE MENU
   ========================= */

@media (max-width: 768px) {
  body.home .site-header {
    position: absolute;
  }

  body.home .inside-header {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  body.home .fc-hero__inner {
    padding-top: 120px;
  }

  body.flyclaimer-visual .main-navigation.toggled,
  body.flyclaimer-visual .main-navigation.is-open,
  body.flyclaimer-visual .has-inline-mobile-toggle #site-navigation.toggled,
  body.flyclaimer-visual #site-navigation.toggled .inside-navigation {
    background: #15344e !important;
    border-radius: 14px;
  }

  body.home .main-navigation.toggled .main-nav ul li a,
  body.home #site-navigation.toggled .main-nav ul li a {
    color: #fff !important;
  }

  body.home .main-navigation.toggled .main-nav ul ul,
  body.home #site-navigation.toggled .main-nav ul ul {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: none;
    border-radius: 10px;
    padding: 6px 0;
  }

  body.home .main-navigation.toggled .main-nav ul ul li,
  body.home #site-navigation.toggled .main-nav ul ul li {
    border-top: 0;
  }

  body.home .main-navigation.toggled .main-nav ul ul li a,
  body.home #site-navigation.toggled .main-nav ul ul li a {
    color: #fff !important;
    background: transparent !important;
    padding: 10px 16px !important;
  }

  body.home .main-navigation.toggled .main-nav ul ul li a:hover,
  body.home #site-navigation.toggled .main-nav ul ul li a:hover {
    background: rgba(255,255,255,0.08) !important;
  }
}
/* Homepage logo image turns white */
body.home .site-logo img,
body.home .custom-logo {
  filter: brightness(0) invert(1);
}

.fc-page-hero{
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  background: url('/vendor/flyclaimer/uploads/2026/03/about-bg-img.webp') center center / cover no-repeat;
  overflow: hidden;
}

.fc-page-hero--small{
  min-height: 360px;
}

.fc-page-hero__overlay{
  position: absolute;
  inset: 0;
  background: rgba(12, 22, 34, 0.62);
}

.fc-page-hero__inner{
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 150px 0 70px;
}

.fc-page-hero__content{
  max-width: 760px;
  color: #fff;
  text-align: center;
  margin: 0 auto;
}

.fc-page-hero__content h1{
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.fc-page-hero__content p{
  margin: 0;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  font-size: 1.05rem;
}

.fc-narrow{
  max-width: 860px;
}

.fc-prose p{
  color: var(--fc-muted);
  line-height: 1.8;
  margin: 0 0 18px;
  font-size: 1.05rem;
}

.fc-disclosure{
  background: #fff;
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius);
  padding: 28px;
  box-shadow: var(--fc-shadow);
}

.fc-disclosure h2{
  margin-top: 0;
  margin-bottom: 14px;
}

.fc-disclosure p{
  margin: 0 0 14px;
  color: var(--fc-muted);
  line-height: 1.8;
}

.fc-disclosure p:last-child{
  margin-bottom: 0;
}

@media (max-width: 768px){
  .fc-page-hero__inner{
    padding: 120px 0 50px;
  }

  .fc-page-hero{
    min-height: 300px;
  }
}

.fc-faq-page{
  padding: 70px 0 90px;
  background: #fff;
}

.fc-faq-search{
  margin: 0 auto 36px;
  max-width: 760px;
}

.fc-faq-search input{
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--fc-border);
  border-radius: 14px;
  padding: 0 18px;
  font-size: 1rem;
  background: #fff;
  color: var(--fc-text);
  box-shadow: var(--fc-shadow);
}

.fc-faq-group{
  margin-bottom: 42px;
}

.fc-faq-group h2{
  margin: 0 0 16px;
  font-size: 1.5rem;
}

.fc-faq-group details{
  background: #fff;
  border: 1px solid var(--fc-border);
  border-radius: 16px;
  box-shadow: var(--fc-shadow);
  margin-bottom: 14px;
  overflow: hidden;
}

.fc-faq-group summary{
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  color: var(--fc-text);
  position: relative;
  padding-right: 54px;
}

.fc-faq-group summary::-webkit-details-marker{
  display: none;
}

.fc-faq-group summary::after{
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--fc-accent);
}

.fc-faq-group details[open] summary::after{
  content: "–";
}

.fc-faq-group details p{
  margin: 0;
  padding: 0 22px 20px;
  color: var(--fc-muted);
  line-height: 1.8;
}

.fc-faq-cta{
  text-align: center;
  margin-top: 28px;
  padding-top: 14px;
}

.fc-faq-cta p{
  margin-bottom: 16px;
  color: var(--fc-text);
  font-weight: 600;
}

@media (max-width: 768px){
  .fc-faq-page{
    padding: 50px 0 70px;
  }

  .fc-faq-group summary{
    padding: 16px 18px;
    padding-right: 48px;
  }

  .fc-faq-group details p{
    padding: 0 18px 18px;
  }
}

.fc-page-hero--guide{
  background: linear-gradient(135deg, #15344e, #1c4f78);
}

.fc-table-wrap{
  overflow-x: auto;
  margin: 0 auto 24px;
}

.fc-table{
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--fc-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--fc-shadow);
}

.fc-table th,
.fc-table td{
  padding: 16px 18px;
  border-bottom: 1px solid var(--fc-border);
  text-align: left;
  vertical-align: top;
}

.fc-table th{
  background: #f7f8fb;
  color: var(--fc-text);
  font-weight: 700;
}

.fc-table tr:last-child td{
  border-bottom: 0;
}

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

.fc-note-box{
  margin: 28px auto 0;
  background: #fff;
  border-left: 4px solid var(--fc-accent);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: var(--fc-shadow);
}

.fc-steps{
  margin: 0;
  padding-left: 20px;
}

.fc-steps li{
  margin-bottom: 12px;
  line-height: 1.7;
  color: var(--fc-text);
}

.fc-links{
  margin: 0;
  padding-left: 18px;
}

.fc-links li{
  margin-bottom: 10px;
}

@media (max-width: 1024px){
  .fc-grid-2{
    grid-template-columns: 1fr;
  }
}

/* =========================
   IMPORTED AIRPORT GUIDE POLISH
   ========================= */

.fc-airport-live-content .route-grid,
.fc-airport-live-content .pattern-grid,
.fc-airport-live-content .airline-grid,
.fc-airport-live-content .cannot-grid {
  display: grid;
  gap: 16px;
  margin: 24px 0 32px;
}

.fc-airport-live-content .route-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fc-airport-live-content .pattern-grid,
.fc-airport-live-content .airline-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fc-airport-live-content .cannot-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.fc-airport-live-content .route-card,
.fc-airport-live-content .pattern-card,
.fc-airport-live-content .airline-card,
.fc-airport-live-content .cannot-card,
.fc-airport-live-content .calc-wrap,
.fc-airport-live-content .cta-inline {
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.fc-airport-live-content .route-card,
.fc-airport-live-content .pattern-card,
.fc-airport-live-content .airline-card,
.fc-airport-live-content .cannot-card {
  padding: 18px;
}

.fc-airport-live-content .route-card.hot,
.fc-airport-live-content .airline-card.priority {
  border-color: #bfdbfe;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.fc-airport-live-content .route-pair,
.fc-airport-live-content .pattern-title,
.fc-airport-live-content .card-name,
.fc-airport-live-content .cannot-card__title {
  color: #102033;
  font-weight: 800;
  line-height: 1.25;
}

.fc-airport-live-content .route-pair {
  font-size: 1.02rem;
}

.fc-airport-live-content .route-meta,
.fc-airport-live-content .pattern-desc,
.fc-airport-live-content .card-desc {
  margin-top: 8px;
  color: #526174;
  font-size: .93rem;
  line-height: 1.55;
}

.fc-airport-live-content .route-amount {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 14px;
  border-radius: 999px;
  background: #e0f2fe;
  padding: 7px 11px;
  color: #075985;
  font-weight: 850;
}

.fc-airport-live-content .pattern-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
}

.fc-airport-live-content .pattern-icon {
  grid-row: span 3;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #f1f5f9;
  font-size: 1.25rem;
}

.fc-airport-live-content .pattern-card p {
  margin: 0;
}

.fc-airport-live-content .pattern-tag,
.fc-airport-live-content .card-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .78rem;
  font-weight: 850;
  line-height: 1;
}

.fc-airport-live-content .pattern-tag--compensable,
.fc-airport-live-content .tag-ecaa {
  background: #dcfce7;
  color: #166534;
}

.fc-airport-live-content .pattern-tag--depends,
.fc-airport-live-content .tag-full {
  background: #fff7ed;
  color: #9a3412;
}

.fc-airport-live-content .tag-lcc {
  background: #dbeafe;
  color: #1d4ed8;
}

.fc-airport-live-content .callout,
.fc-airport-live-content .fc-callout {
  margin: 24px 0 32px;
  border: 1px solid #cfe0f6;
  border-left: 5px solid #2563eb;
  border-radius: 8px;
  background: #f8fbff;
  padding: 18px 20px;
}

.fc-airport-live-content .callout--warn {
  border-color: #fde68a;
  border-left-color: #f59e0b;
  background: #fffbeb;
}

.fc-airport-live-content .callout__title {
  margin-bottom: 7px;
  color: #102033;
  font-weight: 850;
}

.fc-airport-live-content .callout p,
.fc-airport-live-content .cta-inline p {
  margin-bottom: 0;
}

.fc-airport-live-content .cta-inline,
.fc-airport-live-content .calc-wrap {
  margin: 28px 0 34px;
  padding: 24px;
  background: linear-gradient(135deg, #102033 0%, #1e3a5f 100%);
  color: #ffffff;
}

.fc-airport-live-content section.cta-inline,
.fc-airport-live-content div.cta-inline {
  border-color: #1e3a5f;
  background: linear-gradient(135deg, #0f2945 0%, #123f73 58%, #1d4ed8 100%) !important;
  color: #ffffff !important;
}

.fc-airport-live-content .cta-inline h2,
.fc-airport-live-content .cta-inline h3,
.fc-airport-live-content .calc-wrap h2,
.fc-airport-live-content .calc-wrap h3 {
  margin-top: 0;
  color: #ffffff !important;
}

.fc-airport-live-content .cta-inline p,
.fc-airport-live-content .calc-wrap p,
.fc-airport-live-content .cta-note {
  color: rgba(255, 255, 255, .82) !important;
}

.fc-airport-live-content a.btn-primary,
.fc-airport-live-content .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 14px;
  border-radius: 999px;
  background: #ffffff;
  padding: 0 18px;
  color: #102033 !important;
  font-weight: 850;
  text-decoration: none;
  box-shadow: none;
}

.fc-airport-live-content .cta-inline a.btn-primary,
.fc-airport-live-content .cta-inline .btn-primary {
  border: 1px solid rgba(255, 255, 255, .28);
  background: #0b4ea2 !important;
  color: #ffffff !important;
}

.fc-airport-live-content .cta-inline a.btn-primary:hover,
.fc-airport-live-content .cta-inline .btn-primary:hover {
  background: #073b7d !important;
  color: #ffffff !important;
  text-decoration: none;
}

.fc-airport-live-content .calc-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.fc-airport-live-content .calc-btn {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  color: #ffffff;
  padding: 10px 12px;
  font-weight: 750;
  cursor: pointer;
}

.fc-airport-live-content .card-top,
.fc-airport-live-content .card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fc-airport-live-content .card-bottom {
  margin-top: 16px;
  border-top: 1px solid #e7edf5;
  padding-top: 14px;
}

.fc-airport-live-content .card-amt,
.fc-airport-live-content .card-link {
  color: #1d4ed8;
  font-weight: 800;
}

.fc-airport-live-content .cannot-card ul,
.fc-airport-live-content ul.timeline,
.fc-airport-live-content ol.steps {
  margin: 16px 0 30px;
  padding: 0;
  list-style: none;
}

.fc-airport-live-content .cannot-card li,
.fc-airport-live-content ul.timeline li,
.fc-airport-live-content ol.steps li {
  position: relative;
  margin: 0;
  padding: 12px 0 12px 26px;
  border-top: 1px solid #edf2f7;
  color: #3f4d60;
  line-height: 1.55;
}

.fc-airport-live-content .cannot-card li::before,
.fc-airport-live-content ul.timeline li::before,
.fc-airport-live-content ol.steps li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2563eb;
}

.fc-airport-live-content ul.timeline li > strong,
.fc-airport-live-content ol.steps li strong {
  display: block;
  margin-bottom: 6px;
  color: #102033;
}

.fc-airport-live-content ol.steps li > div {
  display: block;
}

.fc-airport-live-content ul.timeline li p,
.fc-airport-live-content ol.steps li p {
  margin: 6px 0 0;
}

.fc-airport-live-content .cannot-card--no li::before {
  background: #ef4444;
}

.fc-airport-live-content .cannot-card--yes li::before {
  background: #22c55e;
}

.fc-airport-live-content .section-intro {
  margin: 28px 0 14px;
  color: #102033;
  font-weight: 850;
}

.fc-airport-live-content .airport-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 30px;
}

.fc-airport-live-content .airport-badge,
.fc-airport-live-content .airport-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #dbe4ef;
  border-radius: 999px;
  background: #ffffff;
  padding: 8px 12px;
  color: #102033;
  text-decoration: none;
  font-weight: 750;
}

.fc-airport-live-content .airport-badge.current,
.fc-airport-live-content .airport-strip a.current {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.fc-airport-live-content .airport-strip a {
  flex-direction: column;
  gap: 2px;
  min-width: 88px;
  text-align: center;
}

.fc-airport-live-content .airport-strip a strong {
  color: #1d4ed8;
  font-weight: 900;
  letter-spacing: .04em;
}

.fc-airport-live-content .airport-strip a span {
  color: #64748b;
  font-size: .74rem;
  line-height: 1.35;
}

.fc-airport-live-content .fc-ap-statbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0 34px;
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  background: #dfe7f2;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .06);
}

.fc-airport-live-content .fc-ap-stat {
  background: #ffffff;
  padding: 18px 14px;
  text-align: center;
}

.fc-airport-live-content .fc-ap-stat strong {
  display: block;
  color: #1d4ed8;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.05;
}

.fc-airport-live-content .fc-ap-stat span {
  display: block;
  margin-top: 5px;
  color: #64748b;
  font-size: .8rem;
  line-height: 1.35;
}

.fc-airport-live-content .fc-ap-grid,
.fc-airport-live-content .fc-ap-airlines {
  display: grid;
  gap: 16px;
  margin: 22px 0 32px;
}

.fc-airport-live-content .fc-ap-grid--routes,
.fc-airport-live-content .fc-ap-airlines {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fc-airport-live-content .fc-ap-card,
.fc-airport-live-content .fc-ap-airline {
  position: relative;
  overflow: hidden;
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
  color: #102033;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
}

.fc-airport-live-content .fc-ap-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: #2563eb;
}

.fc-airport-live-content .fc-ap-card.hot::before {
  background: #f59e0b;
}

.fc-airport-live-content .fc-ap-card h3,
.fc-airport-live-content .fc-ap-airline strong {
  display: block;
  margin: 0 0 8px;
  color: #102033;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.3;
}

.fc-airport-live-content .fc-ap-card p,
.fc-airport-live-content .fc-ap-airline span {
  display: block;
  margin: 0;
  color: #526174;
  font-size: .92rem;
  line-height: 1.55;
}

.fc-airport-live-content .fc-ap-card .amount,
.fc-airport-live-content .fc-amt,
.fc-airport-live-content td.amt {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  border-radius: 999px;
  background: #e0f2fe;
  padding: 6px 10px;
  color: #075985;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
  vertical-align: middle;
}

.fc-airport-live-content .fc-ap-card .amount {
  margin-top: 13px;
}

.fc-airport-live-content td .fc-amt {
  margin: 0;
}

.fc-airport-live-content .fc-ap-airline:hover {
  border-color: #bfdbfe;
  background: #f8fbff;
  text-decoration: none;
}

.fc-airport-live-content .fc-table-wrap {
  margin: 20px 0 30px;
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  overflow-x: auto;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
}

.fc-airport-live-content table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  font-size: .93rem;
}

.fc-airport-live-content th {
  background: #153a5b;
  color: #ffffff;
  padding: 13px 15px;
  text-align: left;
  font-size: .76rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.fc-airport-live-content td {
  border-bottom: 1px solid #edf2f7;
  padding: 13px 15px;
  color: #27364a;
  overflow: visible;
  vertical-align: middle;
}

.fc-airport-live-content tbody tr:nth-child(even) {
  background: #f8fafc;
}

.fc-airport-live-content tbody tr:last-child td {
  border-bottom: 0;
}

.fc-airport-live-content .fc-callout--ok {
  border-color: #bbf7d0;
  border-left-color: #16a34a;
  background: #f0fdf4;
}

.fc-airport-live-content .fc-callout--warn {
  border-color: #fde68a;
  border-left-color: #f59e0b;
  background: #fffbeb;
}

.fc-airport-live-content .fc-callout strong:first-child {
  display: block;
  margin-bottom: 7px;
  color: #102033;
  font-weight: 850;
}

.fc-airport-live-content .fc-callout--ok strong:first-child {
  color: #166534;
}

.fc-airport-live-content .fc-callout--warn strong:first-child {
  color: #92400e;
}

.fc-airport-live-content .fc-ap-cta {
  margin: 34px 0 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, #102033 0%, #1e3a5f 62%, #1d4ed8 100%);
  padding: 30px 26px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, .14);
}

.fc-airport-live-content .fc-ap-cta h2,
.fc-airport-live-content .fc-ap-cta h3 {
  margin: 0 0 10px;
  border: 0;
  padding: 0;
  color: #ffffff !important;
}

.fc-airport-live-content .fc-ap-cta p {
  max-width: 620px;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, .84) !important;
}

.fc-airport-live-content .fc-ap-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  background: #f8fafc;
  padding: 0 20px;
  color: #102033 !important;
  font-weight: 900;
  text-decoration: none !important;
}

.fc-airport-live-content .fc-ap-faq {
  margin: 22px 0 34px;
}

.fc-airport-live-content .fc-ap-faq details {
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  background: #ffffff;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .04);
}

.fc-airport-live-content .fc-ap-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  list-style: none;
  background: #f8fafc;
  padding: 15px 18px;
  color: #102033;
  font-weight: 850;
}

.fc-airport-live-content .fc-ap-faq summary::-webkit-details-marker {
  display: none;
}

.fc-airport-live-content .fc-ap-faq summary::after {
  content: "+";
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}

.fc-airport-live-content .fc-ap-faq details[open] summary {
  border-bottom: 1px solid #dfe7f2;
  background: #eff6ff;
}

.fc-airport-live-content .fc-ap-faq details[open] summary::after {
  content: "-";
  background: #1d4ed8;
  color: #ffffff;
}

.fc-airport-live-content .fc-ap-faq .answer {
  padding: 16px 18px;
  color: #526174;
  line-height: 1.65;
}

.fc-airport-live-content .fc-ap-airport-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 34px;
}

.fc-airport-live-content .fc-ap-airport-strip a {
  display: inline-flex;
  min-width: 86px;
  flex-direction: column;
  align-items: center;
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  background: #ffffff;
  padding: 10px 13px;
  color: #102033;
  text-align: center;
  text-decoration: none;
}

.fc-airport-live-content .fc-ap-airport-strip a.current {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.fc-airport-live-content .fc-ap-airport-strip strong {
  color: #1d4ed8;
  font-weight: 900;
  letter-spacing: .04em;
}

.fc-airport-live-content .fc-ap-airport-strip span {
  color: #64748b;
  font-size: .74rem;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .fc-airport-live-content .route-grid,
  .fc-airport-live-content .pattern-grid,
  .fc-airport-live-content .airline-grid,
  .fc-airport-live-content .cannot-grid,
  .fc-airport-live-content .calc-row,
  .fc-airport-live-content .fc-ap-grid--routes,
  .fc-airport-live-content .fc-ap-airlines {
    grid-template-columns: 1fr;
  }

  .fc-airport-live-content .fc-ap-statbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================
   CUSTOM FOOTER
   ========================= */

.fc-footer{
  background: #102433;
  color: rgba(255,255,255,0.88);
  padding: 64px 0 24px;
  margin-top: 0;
}

.fc-footer__grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
}

.fc-footer__col h3,
.fc-footer__col h4{
  color: #fff;
  margin: 0 0 14px;
  font-size: 1.15rem;
}

.fc-footer__brand p,
.fc-footer__col p{
  margin: 0;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
}

.fc-footer__col ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.fc-footer__col li{
  margin-bottom: 10px;
}

.fc-footer__col a{
  color: rgba(255,255,255,0.84);
  text-decoration: none;
  transition: color .18s ease, opacity .18s ease;
}

.fc-footer__col a:hover{
  color: #fff;
}

.fc-footer__bottom{
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  gap: 8px;
}

.fc-footer__bottom p{
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
}

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

@media (max-width: 640px){
  .fc-footer{
    padding: 48px 0 22px;
  }

  .fc-footer__grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

.fc-wrap{max-width:1200px;margin:0 auto;padding:0 20px}
.fc-narrow{max-width:820px}
.fc-section{padding:56px 0}
.fc-section--soft{background:#f8fafc}
.fc-section--tight{padding-top:20px;padding-bottom:40px}
.fc-hero--inner{
  min-height: auto;
  align-items: flex-start;
  background: linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
  padding: 52px 0 36px;
}
.fc-eyebrow{display:inline-block;margin-bottom:12px;font-size:13px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:#2563eb}

body.fc-transparent-header {
  overflow-x: hidden;
}

body.fc-transparent-header .site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  box-shadow: none !important;
  z-index: 1000;
}

body.fc-transparent-header .inside-header,
body.fc-transparent-header .main-navigation,
body.fc-transparent-header .navigation-branding,
body.fc-transparent-header .site-branding-container,
body.fc-transparent-header .header-wrap {
  background: transparent !important;
  box-shadow: none !important;
}

body.fc-transparent-header .inside-header {
  padding-top: 36px;
  padding-bottom: 20px;
}

body.fc-transparent-header .site-logo a,
body.fc-transparent-header .site-branding a,
body.fc-transparent-header .main-title a,
body.fc-transparent-header .site-description,
body.fc-transparent-header .main-navigation .main-nav > ul > li > a,
body.fc-transparent-header .main-navigation .menu-toggle,
body.fc-transparent-header .menu-toggle,
body.fc-transparent-header .main-navigation .main-nav > ul > li[class*="current-menu-"] > a {
  color: #fff !important;
  background: transparent !important;
}

body.fc-transparent-header .main-navigation .main-nav > ul > li > a:hover,
body.fc-transparent-header .main-navigation .main-nav > ul > li > a:focus {
  color: rgba(255,255,255,0.82) !important;
}

body.fc-transparent-header .main-navigation .main-nav ul ul {
  background: #ffffff !important;
  border: 1px solid #e8edf3;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  padding: 10px 0;
  overflow: hidden;
}

body.fc-transparent-header .main-navigation .main-nav ul ul li a,
body.fc-transparent-header .main-navigation .main-nav ul ul li[class*="current-menu-"] > a,
body.fc-transparent-header .main-navigation .main-nav ul li.menu-item-has-children ul li a {
  color: #172033 !important;
  background: transparent !important;
}

body.fc-transparent-header .main-navigation .main-nav ul ul li a:hover,
body.fc-transparent-header .main-navigation .main-nav ul ul li a:focus,
body.fc-transparent-header .main-navigation .main-nav ul ul li.current-menu-item > a,
body.fc-transparent-header .main-navigation .main-nav ul ul li.current-menu-ancestor > a {
  background: #f6f8fb !important;
  color: #0f172a !important;
}

body.fc-transparent-header .site-logo img,
body.fc-transparent-header .custom-logo {
  filter: brightness(0) invert(1);
}

.fc-footer__logo {
  margin: 0 0 14px;
}

.fc-footer__logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.fc-footer__logo .custom-logo {
  max-height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
}

.single-post .post-navigation,
.single-post .paging-navigation {
  display: none !important;
}

.single-post .footer-entry-meta,
.single-post .cat-links {
  display: none !important;
}

.single-post .inside-header {
  padding: 20px 40px !important;
}

@media (max-width: 768px) {
  .single-post .inside-header {
    padding: 15px 20px !important;
  }
}

body.fc-check-flight-page .fc-hero__inner,
body.fc-check-flight-page .fc-page-hero__inner {
  padding-top: 190px;
}

@media (max-width: 768px) {
  body.fc-transparent-header .site-header {
    position: absolute;
  }

  body.fc-transparent-header .inside-header {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  body.fc-transparent-header .main-navigation.toggled,
  body.fc-transparent-header .main-navigation.is-open,
  body.fc-transparent-header .has-inline-mobile-toggle #site-navigation.toggled,
  body.fc-transparent-header #site-navigation.toggled .inside-navigation {
    background: #15344e !important;
    border-radius: 14px;
  }

  body.fc-transparent-header .main-navigation.toggled .main-nav ul li a,
  body.fc-transparent-header #site-navigation.toggled .main-nav ul li a {
    color: #fff !important;
  }

  body.fc-transparent-header .main-navigation.toggled .main-nav ul ul,
  body.fc-transparent-header #site-navigation.toggled .main-nav ul ul {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: none;
    border-radius: 10px;
    padding: 6px 0;
  }

  body.fc-transparent-header .main-navigation.toggled .main-nav ul ul li a,
  body.fc-transparent-header #site-navigation.toggled .main-nav ul ul li a {
    color: #fff !important;
    background: transparent !important;
    padding: 10px 16px !important;
  }

  body.home .fc-hero__content > h2.fc-hero__title,
  body.home .fc-hero__content > p:not(.fc-hero__note) {
    display: none;
  }

  body.home .fc-hero__actions {
    margin-bottom: 84px;
  }

  body.fc-check-flight-page .fc-hero__inner,
  body.fc-check-flight-page .fc-page-hero__inner {
    padding-top: 136px;
  }
}
.fc-hero--inner h1{font-size:clamp(1.8rem,3vw,2.7rem);line-height:1.1;margin:0 0 12px;color:#111827}
.fc-hero--inner p{max-width:720px;font-size:1rem;line-height:1.7;color:#4b5563}
.fc-hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:24px}
.fc-btn{display:inline-flex;align-items:center;justify-content:center;padding:13px 20px;border-radius:999px;text-decoration:none;font-weight:700}
.fc-btn--primary{background:#0f172a;color:#fff}
.fc-btn--ghost{background:#fff;color:#0f172a;border:1px solid #dbe3ee}
.fc-card-grid{display:grid;gap:24px}
.fc-card-grid--3{grid-template-columns:repeat(3,minmax(0,1fr))}
.fc-card{display:block;background:#fff;border:1px solid #e5e7eb;border-radius:18px;padding:24px;text-decoration:none;box-shadow:0 8px 24px rgba(15,23,42,.04);transition:transform .2s ease, box-shadow .2s ease}
.fc-card:hover{transform:translateY(-3px);box-shadow:0 14px 30px rgba(15,23,42,.08)}
.fc-card h3{margin:0 0 10px;color:#111827;font-size:1.2rem}
.fc-card p{margin:0;color:#6b7280;line-height:1.7}
.fc-list{padding-left:20px;color:#4b5563;line-height:1.8}
.fc-cta-box{background:linear-gradient(180deg,#eff6ff 0%,#f8fafc 100%);border:1px solid #dbeafe;border-radius:22px;padding:32px}
.fc-cta-box h2{margin-top:0;color:#111827}
.fc-cta-box p{color:#4b5563;max-width:760px}
.fc-small{font-size:14px;color:#6b7280}

.main-navigation .main-nav > ul > li.fc-header-cta > a.fc-nav-pill,
body.home .main-navigation .main-nav > ul > li.fc-header-cta > a.fc-nav-pill,
body.fc-transparent-header .main-navigation .main-nav > ul > li.fc-header-cta > a.fc-nav-pill,
.main-navigation .main-nav > ul > li.fc-header-cta > span.fc-nav-pill {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 13px !important;
  border: 1px solid #d8dee8;
  border-radius: 999px;
  background: #f3f4f6 !important;
  color: #172033 !important;
  box-shadow: none !important;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.main-navigation .main-nav > ul > li.fc-header-cta > a.fc-nav-pill:hover,
.main-navigation .main-nav > ul > li.fc-header-cta > a.fc-nav-pill:focus {
  background: #e8ecf2 !important;
  border-color: #c8d0dc;
  color: #0f172a !important;
}

.main-navigation .main-nav > ul > li.fc-header-cta > span.fc-nav-disabled {
  opacity: .72;
}

@media (max-width: 768px) {
  .main-navigation .main-nav > ul > li.fc-header-cta > a.fc-nav-pill,
  .main-navigation .main-nav > ul > li.fc-header-cta > span.fc-nav-pill {
    width: fit-content;
    margin: 8px 14px;
  }
}

@media (max-width: 1024px){
  .fc-card-grid--3{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 767px){
  .fc-section{padding:42px 0}
  .fc-hero--inner{
    min-height: auto;
    padding: 42px 0 30px;
  }
  .fc-card-grid--3{grid-template-columns:1fr}
}

.fc-contact-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}
.fc-contact-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:24px;
  box-shadow:0 8px 24px rgba(15,23,42,.04);
}
.fc-contact-card h2{
  margin-top:0;
  color:#111827;
}
.fc-contact-card p{
  color:#4b5563;
  line-height:1.75;
}
@media (max-width: 767px){
  .fc-contact-grid{
    grid-template-columns:1fr;
  }
}

.fc-hero--claim .fc-hero__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}



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

.fc-step-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.fc-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}

.fc-step-card h3 {
  margin: 0 0 10px;
  color: #111827;
}

.fc-step-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.7;
}

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

.fc-claim-widget-box {
    padding: 16px;
    border-radius: 18px;
  }
}

/* Missed connection guide page */
.fc-missed-connection-page .inside-article,
.fc-missed-shell{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.fc-missed{
  --brand: #1B3F8B;
  --brand-dark: #122A5E;
  --brand-light: #EEF3FB;
  --accent: #E84040;
  --accent-soft: #FEF0F0;
  --success: #0F6E56;
  --success-soft: #E1F5EE;
  --warn: #92500A;
  --warn-soft: #FEF3E2;
  --text: #1A1A1A;
  --muted: #5A5A68;
  --border: #DDE2EE;
  --bg: #F7F8FC;
  --white: #FFFFFF;
  --radius: 10px;
  --radius-lg: 16px;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --max: 760px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px 60px;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.75;
}

.fc-missed .breadcrumb{
  padding: 18px 0 0;
  font-size: 0.76rem;
  color: var(--muted);
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.fc-missed .breadcrumb a{
  color: var(--brand);
  text-decoration: none;
}

.fc-missed .hero{
  padding: 36px 0 32px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.fc-missed .hero-meta{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.fc-missed .tag{
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.fc-missed .tag-rights{ background: var(--brand-light); color: var(--brand); }
.fc-missed .tag-updated{ background: var(--bg); color: var(--muted); }

.fc-missed h1{
  margin-bottom: 16px;
  color: var(--text);
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4.5vw, 2.3rem);
  font-weight: 600;
  line-height: 1.2;
}

.fc-missed .hero-lead{
  max-width: 640px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.fc-missed .btn-primary,
.fc-missed .btn-secondary,
.fc-missed .btn-cta-white{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background .18s, transform .12s, opacity .15s;
}

.fc-missed .btn-primary{
  padding: 13px 26px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

.fc-missed .btn-primary:hover{ background: var(--brand-dark); transform: translateY(-1px); }

.fc-missed .btn-secondary{
  margin-left: 10px;
  padding: 11px 22px;
  border: 1.5px solid var(--brand);
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 500;
}

.fc-missed .btn-secondary:hover{ background: var(--brand-light); }

.fc-missed .toc{
  margin-bottom: 40px;
  padding: 22px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
}

.fc-missed .toc-title{
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fc-missed .toc ol{
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 18px;
}

.fc-missed .toc a{
  color: var(--brand);
  text-decoration: none;
}

.fc-missed .article-body h2{
  margin: 48px 0 16px;
  padding-top: 8px;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.3;
}

.fc-missed .article-body h3{
  margin: 28px 0 10px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 500;
}

.fc-missed .article-body p,
.fc-missed .article-body li{
  color: var(--text);
  font-size: 0.97rem;
}

.fc-missed .article-body p{ margin-bottom: 18px; }
.fc-missed .article-body ul,
.fc-missed .article-body ol{ padding-left: 22px; margin-bottom: 18px; }
.fc-missed .article-body li{ margin-bottom: 7px; }
.fc-missed .article-body a{ color: var(--brand); }
.fc-missed .article-body strong{ font-weight: 500; }

.fc-missed .rule-box,
.fc-missed .warn-box,
.fc-missed .success-box{
  margin: 26px 0;
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.fc-missed .rule-box{
  background: var(--brand-light);
  border-left: 4px solid var(--brand);
}

.fc-missed .warn-box{
  background: var(--warn-soft);
  border-left: 4px solid #E08A2C;
}

.fc-missed .success-box{
  background: var(--success-soft);
  border-left: 4px solid var(--success);
}

.fc-missed .rule-box p,
.fc-missed .warn-box p,
.fc-missed .success-box p{
  margin: 0;
  font-size: 0.95rem;
}

.fc-missed .comp-table-wrap{
  overflow-x: auto;
  margin: 28px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.fc-missed .comp-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.fc-missed .comp-table thead{
  background: var(--brand);
  color: var(--white);
}

.fc-missed .comp-table th,
.fc-missed .comp-table td{
  padding: 13px 18px;
  text-align: left;
}

.fc-missed .comp-table tbody tr:nth-child(even){ background: var(--bg); }
.fc-missed .comp-table tbody td{ border-bottom: 1px solid var(--border); }
.fc-missed .comp-table tbody tr:last-child td{ border-bottom: 0; }

.fc-missed .amount{
  color: var(--brand);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
}

.fc-missed .table-note{
  padding: 0 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.fc-missed .steps{
  display: flex;
  flex-direction: column;
  margin: 28px 0;
}

.fc-missed .step-item{
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.fc-missed .step-item:last-child{ border-bottom: 0; }

.fc-missed .step-num{
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 500;
}

.fc-missed .step-content p{
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.fc-missed .scenario-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.fc-missed .scenario-card{
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.fc-missed .scenario-card.yes{ border-color: #9FE1CB; background: var(--success-soft); }
.fc-missed .scenario-card.no{ border-color: #F5C4B3; background: var(--accent-soft); }

.fc-missed .scenario-verdict{
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.fc-missed .scenario-verdict.yes{ color: var(--success); }
.fc-missed .scenario-verdict.no{ color: var(--accent); }

.fc-missed .cta-banner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 44px 0;
  padding: 30px 32px;
  border-radius: var(--radius-lg);
  background: var(--brand);
}

.fc-missed .cta-banner-text h3{
  margin: 0 0 5px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
}

.fc-missed .cta-banner-text p{
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 0.88rem;
}

.fc-missed .btn-cta-white{
  padding: 12px 24px;
  background: var(--white);
  color: var(--brand);
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 500;
}

.fc-missed .airport-pills{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.fc-missed .airport-pill{
  padding: 5px 12px;
  border: 1px solid #C8D6F2;
  border-radius: 20px;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 500;
}

.fc-missed .faq{
  margin: 12px 0;
}

.fc-missed details{
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.fc-missed details[open]{ border-color: var(--brand); }

.fc-missed summary{
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 17px 20px;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 500;
}

.fc-missed summary::after{
  content: '+';
  color: var(--brand);
  font-size: 1.2rem;
}

.fc-missed details[open] summary::after{ transform: rotate(45deg); }

.fc-missed .faq-answer{
  padding: 0 20px 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.93rem;
}

.fc-missed .related{
  margin: 44px 0 0;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg);
}

.fc-missed .related h3{
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fc-missed .related-links{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fc-missed .related-link{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--brand);
  font-size: 0.92rem;
  text-decoration: none;
}

.fc-missed .related-link:last-child{ border-bottom: 0; }
.fc-missed .related-link::before{ content: '→'; font-size: 0.8rem; flex-shrink: 0; }

.fc-missed .article-footer{
  margin: 48px 0 60px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

@media (max-width: 540px){
  .fc-missed .scenario-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px){
  .fc-missed{
    padding: 0 18px 44px;
  }

  .fc-missed .btn-secondary{
    margin-top: 12px;
    margin-left: 0;
  }

  .fc-missed .step-item{
    gap: 14px;
  }
}

/* =========================
   AIRLINES INDEX PAGE
   ========================= */

.fc-airlines-page .inside-article,
.fc-airlines-shell {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.fc-airlines {
  --fc-al-blue:       #1d3fbb;
  --fc-al-blue-dark:  #152d8e;
  --fc-al-blue-tint:  #eef2ff;
  --fc-al-orange:     #f47c20;
  --fc-al-text:       #0f1523;
  --fc-al-text-2:     #3d3d3a;
  --fc-al-text-3:     #6b7280;
  --fc-al-border:     #e5e7eb;
  --fc-al-bg:         #f9fafb;
  --fc-al-white:      #ffffff;
  --fc-al-green:      #15803d;
  --fc-al-green-lt:   #f0fdf4;
  --fc-al-green-bd:   #16a34a;
  --fc-al-red:        #dc2626;
  --fc-al-red-lt:     #fff5f5;

  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px 60px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.75;
  color: var(--fc-al-text-2);
  -webkit-font-smoothing: antialiased;
}

/* Breadcrumb */
.fc-airlines__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 18px 0 0;
  font-size: 0.8125rem;
  color: var(--fc-al-text-3);
  line-height: 1.4;
}
.fc-airlines__breadcrumb a { color: var(--fc-al-text-3); text-decoration: none; }
.fc-airlines__breadcrumb a:hover { color: var(--fc-al-blue); }
.fc-airlines__breadcrumb .sep { opacity: 0.5; }

/* Page label pill */
.fc-al-label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0 18px;
  font-size: 0.8125rem;
}
.fc-al-label__cat {
  background: var(--fc-al-blue-tint);
  color: var(--fc-al-blue);
  font-weight: 600;
  padding: 3px 11px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}
.fc-al-label__date { color: var(--fc-al-text-3); }

/* H1 */
.fc-airlines h1 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--fc-al-text);
  margin-bottom: 18px;
}

/* H2 */
.fc-airlines h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fc-al-text);
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 40px 0 14px;
  scroll-margin-top: 80px;
}

/* H3 */
.fc-airlines h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fc-al-text);
  margin: 22px 0 8px;
  line-height: 1.35;
}

/* Body text */
.fc-airlines p {
  margin-bottom: 14px;
  color: var(--fc-al-text-2);
  font-size: 0.9375rem;
}
.fc-airlines ul,
.fc-airlines ol { padding-left: 22px; margin-bottom: 14px; }
.fc-airlines li { color: var(--fc-al-text-2); margin-bottom: 5px; font-size: 0.9375rem; }
.fc-airlines a { color: var(--fc-al-blue); text-decoration: none; }
.fc-airlines a:hover { text-decoration: underline; }
.fc-airlines strong { color: var(--fc-al-text); font-weight: 600; }

/* Intro paragraph */
.fc-al-intro {
  font-size: 1rem;
  color: var(--fc-al-text-2);
  line-height: 1.72;
  margin-bottom: 22px;
  max-width: 680px;
}

/* CTA row */
.fc-al-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.fc-al-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--fc-al-blue);
  color: var(--fc-al-white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.fc-airlines a.fc-al-btn-primary,
.fc-airlines a.fc-al-btn-primary:visited,
.fc-airlines a.fc-al-btn-primary:focus,
.fc-airlines a.fc-al-btn-primary:active,
.fc-airlines a.fc-al-btn-primary:hover {
  color: var(--fc-al-white);
  text-decoration: none;
}
.fc-al-btn-primary:hover { background: var(--fc-al-blue-dark); }
.fc-al-btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--fc-al-blue);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 0;
  text-decoration: none;
}
.fc-al-btn-arrow:hover { text-decoration: underline; }

/* Stat bar */
.fc-al-stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--fc-al-border);
  border-radius: 8px;
  overflow: hidden;
  margin: 0 0 36px;
}
.fc-al-stat-bar__cell {
  background: var(--fc-al-white);
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid var(--fc-al-border);
}
.fc-al-stat-bar__cell:last-child { border-right: none; }
.fc-al-stat-bar__num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fc-al-blue);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.fc-al-stat-bar__label {
  display: block;
  font-size: 0.72rem;
  color: var(--fc-al-text-3);
  margin-top: 3px;
  line-height: 1.3;
}

/* TOC */
.fc-al-toc {
  background: var(--fc-al-bg);
  border: 1px solid var(--fc-al-border);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 0 0 36px;
}
.fc-al-toc > p {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fc-al-text-3);
  margin-bottom: 10px;
}
.fc-al-toc ol {
  list-style: decimal;
  padding-left: 18px;
  margin: 0;
}
.fc-al-toc ol li {
  font-size: 0.875rem;
  color: var(--fc-al-text-2);
  margin-bottom: 4px;
}
.fc-al-toc ol li a {
  color: var(--fc-al-blue);
  font-weight: 500;
  text-decoration: none;
}
.fc-al-toc ol li a:hover { text-decoration: underline; }

/* Airport strip */
.fc-al-airport-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 22px;
}
.fc-al-airport-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--fc-al-bg);
  border: 1px solid var(--fc-al-border);
  border-radius: 8px;
  padding: 8px 14px;
  min-width: 78px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--fc-al-blue);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.fc-al-airport-badge span {
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--fc-al-text-3);
  letter-spacing: 0;
  margin-top: 2px;
}

/* Callout boxes */
.fc-al-callout {
  border-left: 4px solid;
  border-radius: 0 6px 6px 0;
  padding: 14px 18px;
  margin: 18px 0 22px;
  font-size: 0.9rem;
}
.fc-al-callout--ok   { background: var(--fc-al-green-lt); border-color: var(--fc-al-green-bd); }
.fc-al-callout--warn { background: #fffbeb;               border-color: var(--fc-al-orange);   }
.fc-al-callout--info { background: var(--fc-al-blue-tint); border-color: var(--fc-al-blue);    }
.fc-al-callout__title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 5px;
}
.fc-al-callout--ok   .fc-al-callout__title { color: var(--fc-al-green);  }
.fc-al-callout--warn .fc-al-callout__title { color: #92400e;              }
.fc-al-callout--info .fc-al-callout__title { color: var(--fc-al-blue);   }
.fc-al-callout p { margin: 0; color: var(--fc-al-text); font-size: 0.9rem; }

/* Compensation table */
.fc-al-tbl-wrap {
  overflow-x: auto;
  border: 1px solid var(--fc-al-border);
  border-radius: 8px;
  margin: 16px 0 20px;
}
.fc-al-tbl-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.fc-al-tbl-wrap thead { background: var(--fc-al-text); color: var(--fc-al-white); }
.fc-al-tbl-wrap thead th {
  padding: 11px 16px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.fc-al-tbl-wrap tbody td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--fc-al-border);
  vertical-align: top;
  color: var(--fc-al-text-2);
}
.fc-al-tbl-wrap tbody tr:last-child td { border-bottom: none; }
.fc-al-tbl-wrap tbody tr:nth-child(even) { background: var(--fc-al-bg); }
.fc-al-tbl-wrap .td-amt { font-weight: 700; color: var(--fc-al-blue); }
.fc-al-tbl-note {
  font-size: 0.82rem;
  color: var(--fc-al-text-3);
  margin-top: -6px;
}

/* Inline CTA block */
.fc-al-inline-cta {
  background: var(--fc-al-bg);
  border: 1px solid var(--fc-al-border);
  border-radius: 8px;
  padding: 22px 24px;
  margin: 24px 0;
  text-align: center;
}
.fc-al-inline-cta p { font-size: 0.9rem; color: var(--fc-al-text-2); margin-bottom: 14px; }
.fc-al-inline-cta__note {
  font-size: 0.78rem;
  color: var(--fc-al-text-3);
  margin: 10px 0 0 !important;
}

/* Section label divider */
.fc-al-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--fc-al-text-3);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 14px;
}
.fc-al-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--fc-al-border);
}

/* Airline cards */
.fc-al-airline-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 6px;
}
.fc-al-airline-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--fc-al-border);
  border-radius: 8px;
  padding: 16px 18px;
  text-decoration: none;
  background: var(--fc-al-white);
  transition: border-color 0.18s, box-shadow 0.18s;
  position: relative;
  overflow: hidden;
}
.fc-al-airline-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--fc-al-blue);
}
.fc-al-airline-card--priority::before { background: var(--fc-al-orange); }
.fc-al-airline-card--ecaa::before     { background: var(--fc-al-green-bd); }
.fc-al-airline-card:hover {
  border-color: var(--fc-al-blue);
  box-shadow: 0 2px 12px rgba(29,63,187,0.09);
  text-decoration: none;
}
.fc-al-airline-card__body { flex: 1; min-width: 0; }
.fc-al-airline-card__top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.fc-al-airline-card__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--fc-al-text);
  line-height: 1.3;
}
.fc-al-airline-card__tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.fc-al-tag-lcc   { background: #ede9fe; color: #5b21b6; }
.fc-al-tag-full  { background: var(--fc-al-blue-tint); color: var(--fc-al-blue); }
.fc-al-tag-ecaa  { background: #f0fdf4; color: var(--fc-al-green); border: 1px solid #bbf7d0; }
.fc-al-airline-card__desc {
  font-size: 0.875rem;
  color: var(--fc-al-text-2);
  line-height: 1.58;
  margin-bottom: 8px;
}
.fc-al-airline-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.fc-al-airline-card__amt {
  font-size: 0.8rem;
  color: var(--fc-al-text-3);
  font-weight: 500;
}
.fc-al-airline-card__amt strong { color: var(--fc-al-blue); font-weight: 700; }
.fc-al-airline-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fc-al-blue);
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

/* Verdict grid */
.fc-al-verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0 22px;
}
.fc-al-verdict-card {
  border-radius: 8px;
  padding: 16px;
  border: 1px solid var(--fc-al-border);
}
.fc-al-verdict-card--no  { border-top: 3px solid var(--fc-al-red);      background: var(--fc-al-red-lt);   }
.fc-al-verdict-card--yes { border-top: 3px solid var(--fc-al-green-bd); background: var(--fc-al-green-lt); }
.fc-al-verdict-card__title {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.fc-al-verdict-card--no  .fc-al-verdict-card__title { color: var(--fc-al-red);   }
.fc-al-verdict-card--yes .fc-al-verdict-card__title { color: var(--fc-al-green); }
.fc-al-verdict-card ul { padding-left: 16px; margin: 0; }
.fc-al-verdict-card li { font-size: 0.84rem; color: var(--fc-al-text-2); margin-bottom: 4px; }

/* Numbered step list */
.fc-al-steps {
  counter-reset: fc-al-step;
  list-style: none;
  padding: 0;
  margin: 16px 0 22px;
}
.fc-al-steps li {
  counter-increment: fc-al-step;
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.fc-al-steps li::before {
  content: counter(fc-al-step);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--fc-al-blue);
  color: var(--fc-al-white);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.fc-al-steps li > div { flex: 1; min-width: 0; }
.fc-al-steps h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--fc-al-text);
  margin: 0 0 4px;
}
.fc-al-steps p { margin: 0; font-size: 0.9rem; }

/* FAQ accordion */
.fc-al-faq { margin: 14px 0 0; }
.fc-al-faq-item {
  border: 1px solid var(--fc-al-border);
  border-radius: 8px;
  margin-bottom: 6px;
  overflow: hidden;
}
.fc-al-faq-item.open {
  border-color: #c7d2fe;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.fc-al-faq-q {
  width: 100%;
  background: var(--fc-al-white);
  border: none;
  padding: 14px 18px;
  text-align: left;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fc-al-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.15s;
  line-height: 1.4;
}
.fc-al-faq-q:hover,
.fc-al-faq-q:focus {
  background: var(--fc-al-bg);
  color: var(--fc-al-text);
}
.fc-al-faq-q:hover svg,
.fc-al-faq-q:focus svg {
  color: var(--fc-al-text);
}
.fc-al-faq-item.open > .fc-al-faq-q {
  background: #f8faff;
  color: var(--fc-al-text);
}
.fc-al-faq-q svg { flex-shrink: 0; transition: transform 0.22s; color: var(--fc-al-text-3); }
.fc-al-faq-item.open > .fc-al-faq-q svg { transform: rotate(180deg); }
.fc-al-faq-a {
  display: none;
  padding: 10px 18px 16px;
  font-size: 0.9rem;
  color: #253046;
  background: #ffffff;
  border-top: 1px solid var(--fc-al-border);
  line-height: 1.7;
}
.fc-al-faq-a a,
.fc-al-faq-a a:visited {
  color: var(--fc-al-blue);
}
.fc-al-faq-item.open > .fc-al-faq-a { display: block; }
.fc-al-faq details {
  border: 1px solid var(--fc-al-border);
  border-radius: 8px;
  margin-bottom: 6px;
  overflow: hidden;
  background: #ffffff;
}
.fc-al-faq details[open] {
  border-color: #c7d2fe;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.fc-al-faq summary {
  cursor: pointer;
  padding: 14px 18px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fc-al-text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.fc-al-faq summary::-webkit-details-marker { display: none; }
.fc-al-faq summary::after {
  content: '+';
  color: var(--fc-al-blue);
  font-weight: 800;
}
.fc-al-faq details[open] summary {
  background: #f8faff;
  border-bottom: 1px solid var(--fc-al-border);
}
.fc-al-faq details[open] summary::after { content: '-'; }
.fc-al-faq details .fc-al-faq-a,
.fc-al-faq details .fc-faq-answer {
  display: block;
  padding: 10px 18px 16px;
  font-size: 0.9rem;
  color: #253046;
  background: #ffffff;
  line-height: 1.7;
}

.fc-airlines .fc-table-wrap,
.fc-airlines .fc-table-container {
  overflow-x: auto;
  border: 1px solid #d6e0ee;
  border-radius: 8px;
  margin: 20px 0 28px;
  box-shadow: 0 8px 22px rgba(13, 27, 42, 0.04);
}

.fc-airlines .fc-table-wrap table,
.fc-airlines .fc-table-container table,
.fc-airlines table.fc-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  font-size: .93rem;
}

.fc-airlines .fc-table-wrap th,
.fc-airlines .fc-table-container th,
.fc-airlines table.fc-table th {
  background: #153a5b;
  color: #ffffff;
  padding: 13px 15px;
  text-align: left;
  font-size: .76rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.fc-airlines .fc-table-wrap td,
.fc-airlines .fc-table-container td,
.fc-airlines table.fc-table td {
  border-bottom: 1px solid #edf2f7;
  padding: 13px 15px;
  color: #27364a;
  vertical-align: middle;
}

.fc-airlines .fc-table-wrap tr:nth-child(even) td,
.fc-airlines .fc-table-container tr:nth-child(even) td,
.fc-airlines table.fc-table tr:nth-child(even) td {
  background: #f8fafc;
}

.fc-airlines .fc-table-wrap td strong,
.fc-airlines .fc-table-container td strong,
.fc-airlines table.fc-table td strong,
.fc-airlines .fc-badge-mid,
.fc-airlines .fc-badge-yes,
.fc-airlines .fc-badge-soft {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  background: #e0f2fe;
  padding: 6px 10px;
  color: #075985;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.fc-airlines .fc-badge-yes {
  background: #dcfce7;
  color: #166534;
}

.fc-airlines .fc-badge-soft {
  background: #f1f5f9;
  color: #334155;
}

.fc-airlines .fc-cta-block,
.fc-airlines .fc-cta {
  margin: 34px 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3354 56%, #1e5bbc 100%);
  color: #ffffff;
  padding: 30px 26px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(13, 27, 42, .14);
}

.fc-airlines .fc-cta-block h2,
.fc-airlines .fc-cta h2,
.fc-airlines .fc-cta h3 {
  margin-top: 0;
  color: #ffffff !important;
}

.fc-airlines .fc-cta-block p,
.fc-airlines .fc-cta p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, .84) !important;
}

.fc-airlines .fc-btn-main,
.fc-airlines .fc-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  background: #0b4ea2 !important;
  padding: 0 20px;
  color: #ffffff !important;
  font-weight: 900;
  text-decoration: none !important;
}

.fc-airlines .fc-btn-main:hover,
.fc-airlines .fc-cta-btn:hover {
  background: #073b7d !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.fc-airlines .fc-truth-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 32px;
}

.fc-airlines .fc-truth-header,
.fc-airlines .fc-truth-table > div {
  border: 1px solid #d6e0ee;
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
  box-shadow: 0 8px 22px rgba(13, 27, 42, .04);
}

.fc-airlines .fc-truth-header {
  background: #eff6ff;
  color: #102033;
  font-weight: 900;
}

.fc-airlines .fc-faq-section {
  margin: 30px 0 0;
}

.fc-airlines .fc-faq-section .fc-faq-item {
  border: 1px solid #d6e0ee;
  border-radius: 8px;
  background: #ffffff;
  margin: 10px 0;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(13, 27, 42, .04);
}

.fc-airlines .fc-faq-section .fc-faq-q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  background: #f8fafc;
  padding: 15px 18px;
  color: #102033;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.fc-airlines .fc-faq-section .fc-faq-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}

.fc-airlines .fc-faq-section .fc-faq-a {
  display: block;
  border-top: 1px solid #d6e0ee;
  padding: 16px 18px;
  color: #344055;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .fc-airlines .fc-truth-table {
    grid-template-columns: 1fr;
  }
}

.fc-faq {
  margin: 28px 0 0;
}

.fc-faq h2 {
  margin: 0 0 16px;
  color: #05070a;
  font-size: 1.45rem;
  line-height: 1.25;
}

.fc-faq details {
  border: 1px solid var(--fc-border);
  border-radius: 8px;
  margin: 10px 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.fc-faq details[open] {
  border-color: #caebff;
  box-shadow: 0 12px 26px rgba(20, 140, 219, 0.1);
}

.fc-faq summary {
  cursor: pointer;
  padding: 16px 18px;
  font-size: 0.98rem;
  font-weight: 750;
  color: #05070a;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

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

.fc-faq summary::after {
  content: '+';
  color: #0b6fac;
  font-size: 1.25rem;
  font-weight: 850;
  line-height: 1;
}

.fc-faq details[open] summary {
  background: #f6fbff;
  border-bottom: 1px solid var(--fc-border);
}

.fc-faq details[open] summary::after { content: '-'; }

.fc-faq .fc-faq-a,
.fc-faq .fc-faq-answer,
.fc-faq details > p {
  display: block;
  padding: 0 18px 16px;
  color: #344055;
  font-size: 0.95rem;
  line-height: 1.7;
}

.fc-faq .fc-faq-a p,
.fc-faq .fc-faq-answer p {
  margin: 0;
}

.fc-issue-content {
  color: #263244;
}

.fc-issue-content h2,
.fc-issue-content h3 {
  color: #05070a;
  line-height: 1.25;
  letter-spacing: 0;
}

.fc-issue-content h2 {
  margin: 34px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6edf5;
  font-size: 1.52rem;
}

.fc-issue-content h3 {
  margin: 24px 0 10px;
  font-size: 1.08rem;
}

.fc-issue-content p {
  color: #344055;
  line-height: 1.78;
}

.fc-issue-content ul,
.fc-issue-content ol {
  margin: 14px 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.fc-issue-content li {
  position: relative;
  border: 1px solid #e6edf5;
  border-radius: 8px;
  background: #ffffff;
  padding: 12px 14px 12px 42px;
  color: #344055;
  line-height: 1.58;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.035);
}

.fc-issue-content li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #138fdb;
}

.fc-issue-content ol {
  counter-reset: fc-content-step;
}

.fc-issue-content ol > li {
  counter-increment: fc-content-step;
}

.fc-issue-content ol > li::before {
  content: counter(fc-content-step);
  top: 11px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
}

.fc-issue-content .fly-table-wrap {
  margin: 20px 0 26px;
  border: 1px solid #dbe7f3;
  border-radius: 8px;
  overflow-x: auto;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.055);
}

.fc-issue-content .fly-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  font-size: 0.92rem;
}

.fc-issue-content .fly-table-wrap th {
  background: #0f172a;
  color: #ffffff;
  padding: 12px 14px;
  text-align: left;
  font-weight: 750;
}

.fc-issue-content .fly-table-wrap td {
  padding: 12px 14px;
  border-top: 1px solid #e6edf5;
  color: #344055;
  vertical-align: top;
}

.fc-issue-content .fly-table-wrap tr:nth-child(even) td {
  background: #f8fbfd;
}

.fc-issue-content .fc-cta-box {
  margin: 34px 0 10px;
  border: 1px solid #caebff;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 255, 0.96)),
    #ffffff;
  box-shadow: 0 14px 34px rgba(20, 140, 219, 0.1);
}

.fc-issue-content .fc-cta-box h2 {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
}

.fc-issue-content .fc-cta-box p:last-child {
  margin-bottom: 0;
}

/* Related guides */
.fc-al-related {
  margin: 40px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--fc-al-border);
}
.fc-al-related h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--fc-al-text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.fc-al-related ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fc-al-related ul li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fc-al-blue);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.fc-al-related ul li a::before { content: '→'; font-size: 0.85rem; opacity: 0.7; }
.fc-al-related ul li a:hover { text-decoration: underline; }

/* Disclaimer */
.fc-al-disclaimer {
  margin: 32px 0 0;
  padding: 14px 0;
  border-top: 1px solid var(--fc-al-border);
  font-size: 0.8rem;
  color: var(--fc-al-text-3);
  line-height: 1.55;
}
.fc-al-disclaimer strong { color: var(--fc-al-text-3); font-weight: 600; }

/* Responsive — airlines page */
@media (max-width: 820px) {
  .fc-al-stat-bar { grid-template-columns: 1fr 1fr; }
  .fc-al-verdict-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .fc-airlines { padding: 0 16px 44px; }
  .fc-airlines h1 { font-size: 1.5rem; }
  .fc-al-stat-bar { grid-template-columns: 1fr 1fr; }
}

/* FlyClaimer directory hubs: /airlines and /airports */
.fc-directory {
  background: #ffffff;
  color: var(--fc-text);
}

.fc-directory-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 46px;
  background:
    radial-gradient(circle at 88% 14%, rgba(19, 143, 219, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(238, 248, 255, 0.96) 56%, rgba(225, 246, 255, 0.88) 100%),
    #ffffff;
  border-bottom: 1px solid var(--fc-border);
}

.fc-directory-hero--airport {
  background:
    radial-gradient(circle at 82% 18%, rgba(34, 197, 94, 0.16), transparent 25%),
    linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(238, 248, 255, 0.95) 54%, rgba(218, 246, 234, 0.78) 100%),
    #ffffff;
}

.fc-directory-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
}

.fc-directory-hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  color: #05070a;
  font-size: 3rem;
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 900;
}

.fc-directory .fc-lead {
  max-width: 780px;
  color: #344055;
  font-size: 1.08rem;
  line-height: 1.72;
}

.fc-directory-hero-card {
  border: 1px solid #caebff;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    #ffffff;
  box-shadow: 0 18px 42px rgba(20, 140, 219, 0.14);
  padding: 18px;
}

.fc-directory-hero-card--airport {
  border-color: #bbf7d0;
  box-shadow: 0 18px 42px rgba(22, 163, 74, 0.12);
}

.fc-directory-ticket {
  border: 1px dashed #9bdcff;
  border-radius: 8px;
  background: #f8fcff;
  padding: 18px;
}

.fc-directory-hero-card--airport .fc-directory-ticket {
  border-color: #a7f3d0;
  background: #f7fdf9;
}

.fc-directory-ticket span,
.fc-directory-mini-grid span,
.fc-directory-route-map span {
  display: block;
  color: #5e6b78;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fc-directory-ticket strong {
  display: block;
  margin-top: 7px;
  color: #05070a;
  font-size: 1.22rem;
  line-height: 1.2;
}

.fc-directory-ticket p {
  margin: 9px 0 0;
  color: #344055;
  line-height: 1.58;
}

.fc-directory-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.fc-directory-mini-grid div {
  border: 1px solid var(--fc-border);
  border-radius: 8px;
  background: #ffffff;
  padding: 13px;
}

.fc-directory-mini-grid strong {
  display: block;
  margin-top: 4px;
  color: #0b6fac;
  font-size: 1rem;
  line-height: 1.2;
}

.fc-directory-route-map {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  border: 1px solid var(--fc-border);
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
  text-align: center;
}

.fc-directory-route-map b {
  color: #0f766e;
}

.fc-directory-panel {
  border: 1px solid #caebff;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(20, 140, 219, 0.11);
  padding: 24px;
}

.fc-directory-panel--dark {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, #05070a 0%, #10233b 58%, #0b6fac 100%);
  color: #ffffff;
}

.fc-directory-panel strong {
  display: block;
  margin-bottom: 8px;
  color: #05070a;
  font-size: 1.1rem;
  line-height: 1.25;
}

.fc-directory-panel--dark strong,
.fc-directory-panel--dark p {
  color: #ffffff;
}

.fc-directory-panel p {
  margin: 0 0 14px;
  color: #344055;
}

.fc-directory-panel ul {
  margin: 0;
  padding-left: 18px;
  color: #344055;
}

.fc-directory-panel li {
  margin: 7px 0;
}

.fc-route-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 14px;
  text-align: center;
  font-weight: 850;
}

.fc-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.fc-directory-card {
  display: flex;
  gap: 14px;
  min-height: 150px;
  border: 1px solid var(--fc-border);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
  color: var(--fc-text);
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.045);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.fc-directory-card:hover {
  border-color: #caebff;
  box-shadow: 0 14px 30px rgba(20, 140, 219, 0.12);
  transform: translateY(-1px);
}

.fc-directory-code {
  display: flex;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #eef8ff;
  color: #0b6fac;
  font-weight: 900;
  letter-spacing: 0;
}

.fc-directory-card__body {
  display: block;
  min-width: 0;
}

.fc-directory-card strong,
.fc-directory-card small,
.fc-directory-card span {
  display: block;
}

.fc-directory-card strong {
  color: #05070a;
  font-size: 1.02rem;
  line-height: 1.25;
}

.fc-directory-card small {
  margin-top: 4px;
  color: var(--fc-muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.fc-directory-card__body > span {
  margin-top: 9px;
  color: #344055;
  font-size: 0.92rem;
  line-height: 1.55;
}

.fc-directory-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.fc-directory-steps .fc-card h2 {
  margin: 0 0 9px;
  color: #05070a;
  font-size: 1.12rem;
  line-height: 1.3;
}

/* FlyClaimer airport compensation template */
.fc-airport-guide {
  background: #ffffff;
  color: var(--fc-text);
}

.fc-airport-page-template {
  --fc-ap-blue: #138fdb;
  --fc-ap-blue-dark: #0b6fad;
  --fc-ap-blue-soft: #eaf7ff;
  --fc-ap-line: #cbeafa;
  --fc-ap-ink: #0f172a;
  --fc-ap-text: #334155;
  --fc-ap-muted: #64748b;
  --fc-ap-border: #e2e8f0;
  --fc-ap-bg: #f8fafc;
  --fc-ap-green: #16a34a;
  --fc-ap-green-soft: #ecfdf5;
  color: var(--fc-ap-text);
  line-height: 1.65;
}

.fc-ap-hero-v2 {
  background: #ffffff;
  padding: 26px 0 18px;
}

.fc-ap-hero-v2__grid {
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f4fbff 48%, #e8f7ff 100%);
  border: 1px solid var(--fc-ap-line);
  border-radius: 28px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 34px;
  grid-template-columns: 1.08fr 0.92fr;
  overflow: hidden;
  padding: 42px;
}

.fc-ap-kicker,
.fc-ap-label {
  align-items: center;
  background: var(--fc-ap-blue-soft);
  border: 1px solid var(--fc-ap-line);
  border-radius: 999px;
  color: var(--fc-ap-blue-dark);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
  padding: 6px 13px;
  text-transform: uppercase;
}

.fc-ap-hero-v2 h1 {
  color: var(--fc-ap-ink);
  font-size: clamp(2.05rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 16px;
}

.fc-ap-hero-v2__copy > p {
  color: #36556b;
  font-size: 1.06rem;
  margin: 0 0 20px;
  max-width: 680px;
}

.fc-ap-hero-v2__actions,
.fc-ap-hero-v2__trust,
.fc-ap-review-note,
.fc-ap-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fc-ap-hero-v2__actions {
  margin: 24px 0 0;
}

.fc-ap-btn {
  align-items: center;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 12px;
  color: var(--fc-ap-blue-dark) !important;
  display: inline-flex;
  font-size: 0.96rem;
  font-weight: 850;
  justify-content: center;
  padding: 13px 20px;
  text-decoration: none !important;
  transition: 0.18s ease;
  white-space: nowrap;
}

.fc-ap-btn:hover {
  transform: translateY(-1px);
  text-decoration: none !important;
}

.fc-ap-btn--primary {
  background: var(--fc-ap-blue);
  box-shadow: 0 10px 22px rgba(19, 143, 219, 0.24);
  color: #ffffff !important;
}

.fc-ap-btn--secondary {
  border-color: var(--fc-ap-border);
  color: var(--fc-ap-ink) !important;
}

.fc-ap-hero-v2__trust,
.fc-ap-review-note {
  color: var(--fc-ap-muted);
  font-size: 0.86rem;
  margin-top: 18px;
}

.fc-ap-hero-v2__trust span,
.fc-ap-review-note span {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--fc-ap-border);
  border-radius: 999px;
  padding: 6px 10px;
}

.fc-ap-hero-check {
  background: #ffffff;
  border: 1px solid var(--fc-ap-line);
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(19, 143, 219, 0.12);
  padding: 24px;
}

.fc-ap-hero-check h2 {
  color: var(--fc-ap-ink);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0 0 10px;
}

.fc-ap-hero-check p,
.fc-ap-hero-check li {
  color: var(--fc-ap-text);
  font-size: 0.94rem;
}

.fc-ap-hero-check ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.fc-ap-hero-check li {
  display: flex;
  gap: 9px;
}

.fc-ap-hero-check li::before,
.fc-ap-check::before {
  align-items: center;
  background: var(--fc-ap-blue-soft);
  border-radius: 999px;
  color: var(--fc-ap-blue-dark);
  content: "\2713";
  display: inline-flex;
  flex: 0 0 22px;
  font-size: 0.78rem;
  font-weight: 900;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.fc-ap-facts {
  padding: 0 0 18px;
}

.fc-ap-facts__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fc-ap-fact {
  background: #ffffff;
  border: 1px solid var(--fc-ap-border);
  border-radius: 18px;
  box-shadow: 0 5px 18px rgba(15, 23, 42, 0.04);
  padding: 17px;
}

.fc-ap-fact span {
  color: var(--fc-ap-muted);
  display: block;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.fc-ap-fact strong {
  color: var(--fc-ap-ink);
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}

.fc-ap-answer {
  padding: 18px 0;
}

.fc-ap-answer__box {
  background: #ffffff;
  border: 1px solid var(--fc-ap-line);
  border-left: 6px solid var(--fc-ap-blue);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  padding: 22px 24px;
}

.fc-ap-answer__box > span {
  color: var(--fc-ap-blue-dark);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.fc-ap-answer__box p {
  margin: 0;
}

.fc-ap-cta {
  background: linear-gradient(135deg, var(--fc-ap-ink), #123c56 58%, var(--fc-ap-blue));
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  color: #ffffff;
  margin: 32px auto;
  max-width: 1120px;
  overflow: hidden;
  position: relative;
}

.fc-ap-cta::after {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  content: "";
  height: 220px;
  position: absolute;
  right: -60px;
  top: -80px;
  width: 220px;
}

.fc-ap-cta__grid {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  padding: 30px;
  position: relative;
  z-index: 1;
}

.fc-ap-cta h2,
.fc-ap-cta p {
  color: #ffffff;
}

.fc-ap-cta h2 {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 8px;
}

.fc-ap-cta p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.fc-ap-template-flow {
  padding: 8px 0 26px;
}

.fc-ap-section {
  margin: 54px auto;
}

.fc-ap-section h2 {
  color: var(--fc-ap-ink);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.18;
  margin: 0 0 14px;
}

.fc-ap-section h3 {
  color: var(--fc-ap-ink);
  font-size: 1.08rem;
  font-weight: 850;
  margin: 0 0 8px;
}

.fc-ap-section p,
.fc-ap-lead {
  color: #475569;
  margin: 0 0 16px;
}

.fc-ap-lead {
  font-size: 1.03rem;
  max-width: 840px;
}

.fc-ap-grid-2,
.fc-ap-grid-3,
.fc-ap-grid-4,
.fc-ap-split {
  display: grid;
  gap: 16px;
}

.fc-ap-grid-2,
.fc-ap-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fc-ap-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fc-ap-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fc-ap-card,
.fc-ap-airline-card,
.fc-ap-route-card,
.fc-ap-check,
.fc-ap-step,
.fc-ap-panel,
.fc-ap-related a,
.fc-ap-faq details,
.fc-ap-updated {
  background: #ffffff;
  border: 1px solid var(--fc-ap-border);
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.045);
}

.fc-ap-card,
.fc-ap-step,
.fc-ap-panel,
.fc-ap-updated {
  padding: 20px;
}

.fc-ap-card p,
.fc-ap-airline-card span span,
.fc-ap-route-card span,
.fc-ap-step p,
.fc-ap-panel li,
.fc-ap-updated {
  color: #475569;
  font-size: 0.94rem;
  line-height: 1.6;
}

.fc-ap-card--link,
.fc-ap-airline-card,
.fc-ap-related a {
  color: inherit !important;
  text-decoration: none !important;
}

.fc-ap-card--link:hover,
.fc-ap-airline-card:hover,
.fc-ap-route-card:hover,
.fc-ap-related a:hover {
  border-color: var(--fc-ap-blue);
  transform: translateY(-1px);
  transition: 0.18s ease;
}

.fc-ap-icon,
.fc-ap-logo-dot {
  align-items: center;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
}

.fc-ap-icon {
  background: var(--fc-ap-blue-soft);
  border-radius: 13px;
  color: var(--fc-ap-blue-dark);
  height: 42px;
  margin-bottom: 14px;
  width: 42px;
}

.fc-ap-logo-dot {
  background: var(--fc-ap-ink);
  border-radius: 15px;
  color: #ffffff;
  flex: 0 0 44px;
  height: 44px;
  letter-spacing: 0;
  width: 44px;
}

.fc-ap-airline-card {
  align-items: flex-start;
  display: flex;
  gap: 14px;
  padding: 18px;
}

.fc-ap-airline-card strong,
.fc-ap-route-card strong,
.fc-ap-related strong {
  color: var(--fc-ap-ink);
  display: block;
}

.fc-ap-route-card {
  display: block;
  overflow: hidden;
  padding: 20px;
  position: relative;
}

.fc-ap-route-card::before {
  background: var(--fc-ap-blue);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 4px;
}

.fc-ap-route-meta,
.fc-ap-related {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fc-ap-route-meta {
  margin-top: 12px;
}

.fc-ap-badge {
  background: var(--fc-ap-blue-soft);
  border-radius: 999px;
  color: var(--fc-ap-blue-dark);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 850;
  padding: 4px 9px;
}

.fc-ap-badge--soft {
  background: var(--fc-ap-green-soft);
  color: #166534;
}

.fc-ap-image-panel {
  background: #ffffff;
  border: 1px solid var(--fc-ap-border);
  border-radius: 26px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 0;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
}

.fc-ap-photo-slot {
  border-right: 1px solid var(--fc-ap-line);
  color: var(--fc-ap-blue-dark);
  display: block;
  min-height: 300px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.fc-ap-photo-slot img {
  display: block;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  width: 100%;
}

.fc-ap-photo-caption {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.78));
  bottom: 0;
  left: 0;
  padding: 70px 24px 22px;
  position: absolute;
  right: 0;
}

.fc-ap-photo-caption strong,
.fc-ap-photo-caption span {
  display: block;
}

.fc-ap-photo-caption strong {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.fc-ap-photo-caption span {
  color: rgba(255, 255, 255, 0.86);
  max-width: 360px;
}

.fc-ap-photo-credit {
  color: rgba(255, 255, 255, 0.72) !important;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 650;
  margin-top: 10px;
  text-decoration: none !important;
}

.fc-ap-photo-credit:hover {
  color: #ffffff !important;
}

.fc-ap-photo-copy {
  padding: 28px;
}

.fc-ap-mini-links {
  margin-top: 16px;
}

.fc-ap-mini-links a {
  background: var(--fc-ap-blue-soft);
  border: 1px solid var(--fc-ap-line);
  border-radius: 999px;
  padding: 8px 12px;
  text-decoration: none !important;
}

.fc-ap-checklist {
  display: grid;
  gap: 12px;
}

.fc-ap-check {
  display: block;
  padding: 14px;
  padding-left: 46px;
  position: relative;
}

.fc-ap-check::before {
  left: 14px;
  position: absolute;
  top: 15px;
}

.fc-ap-check strong,
.fc-ap-check span {
  display: block;
}

.fc-ap-steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.fc-ap-step {
  counter-increment: step;
  display: grid;
  gap: 14px;
  grid-template-columns: 48px 1fr;
  align-items: start;
}

.fc-ap-step::before {
  align-items: center;
  background: var(--fc-ap-blue);
  border-radius: 999px;
  color: #ffffff;
  content: counter(step);
  display: flex;
  font-weight: 950;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.fc-ap-step h3 {
  margin: 0 0 6px;
}

.fc-ap-step p {
  margin: 0;
}

.fc-ap-table-wrap {
  background: #ffffff;
  border: 1px solid var(--fc-ap-border);
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.045);
  overflow-x: auto;
}

.fc-ap-table {
  border-collapse: collapse;
  font-size: 0.94rem;
  min-width: 680px;
  width: 100%;
}

.fc-ap-table th {
  background: var(--fc-ap-ink);
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 14px 16px;
  text-align: left;
  text-transform: uppercase;
}

.fc-ap-table td {
  border-bottom: 1px solid var(--fc-ap-border);
  padding: 14px 16px;
  vertical-align: top;
}

.fc-ap-table tr:nth-child(even) td {
  background: #f8fbfd;
}

.fc-ap-amount {
  color: var(--fc-ap-blue-dark);
  display: inline-flex;
  font-weight: 900;
}

.fc-ap-card--highlight {
  border-color: var(--fc-ap-line);
}

.fc-ap-panel--ok {
  background: var(--fc-ap-green-soft);
  border-color: #bbf7d0;
}

.fc-ap-panel--no {
  background: #fff1f2;
  border-color: #fecdd3;
}

.fc-ap-panel ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.fc-ap-related {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fc-ap-related a {
  padding: 16px;
}

.fc-ap-related span {
  color: var(--fc-ap-muted);
  display: block;
  font-size: 0.85rem;
  margin-top: 4px;
}

.fc-ap-faq details {
  margin: 10px 0;
  overflow: hidden;
}

.fc-ap-faq summary {
  color: var(--fc-ap-ink);
  cursor: pointer;
  display: flex;
  font-weight: 850;
  gap: 16px;
  justify-content: space-between;
  list-style: none;
  padding: 17px 20px;
}

.fc-ap-faq summary::-webkit-details-marker {
  display: none;
}

.fc-ap-faq summary::after {
  color: var(--fc-ap-blue);
  content: "+";
  font-size: 1.25rem;
  line-height: 1;
}

.fc-ap-faq details[open] summary::after {
  content: "-";
}

.fc-ap-faq-a {
  color: #475569;
  padding: 0 20px 18px;
}

.fc-ap-updated {
  background: var(--fc-ap-bg);
  color: var(--fc-ap-muted);
}

.fc-ap-template-flow + .fc-issue-body {
  border-top: 1px solid var(--fc-ap-border);
  margin-top: 20px;
}

@media (max-width: 920px) {
  .fc-ap-hero-v2__grid,
  .fc-ap-cta__grid,
  .fc-ap-grid-2,
  .fc-ap-split,
  .fc-ap-image-panel {
    grid-template-columns: 1fr;
  }

  .fc-ap-grid-3,
  .fc-ap-grid-4,
  .fc-ap-facts__grid,
  .fc-ap-related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fc-ap-photo-slot {
    border-bottom: 1px solid var(--fc-ap-line);
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .fc-ap-hero-v2 {
    padding-top: 18px;
  }

  .fc-ap-hero-v2__grid {
    border-radius: 20px;
    gap: 22px;
    padding: 22px;
  }

  .fc-ap-hero-v2 h1 {
    font-size: 2rem;
  }

  .fc-ap-hero-v2__actions .fc-ap-btn,
  .fc-ap-hero-check .fc-ap-btn,
  .fc-ap-cta .fc-ap-btn {
    width: 100%;
  }

  .fc-ap-grid-3,
  .fc-ap-grid-4,
  .fc-ap-facts__grid,
  .fc-ap-related {
    grid-template-columns: 1fr;
  }

  .fc-ap-cta {
    border-radius: 20px;
    margin-left: 16px;
    margin-right: 16px;
  }

  .fc-ap-cta__grid,
  .fc-ap-photo-copy,
  .fc-ap-card,
  .fc-ap-step,
  .fc-ap-panel {
    padding: 20px;
  }

  .fc-ap-step {
    grid-template-columns: 42px 1fr;
  }
}

.fc-airport-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(34, 197, 94, 0.16), transparent 25%),
    linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(238, 248, 255, 0.95) 54%, rgba(218, 246, 234, 0.78) 100%),
    #ffffff;
  border-bottom: 1px solid var(--fc-border);
}

.fc-airport-hero .fc-issue-hero__copy {
  position: relative;
  z-index: 1;
}

.fc-airport-hero .fc-issue-eyebrow {
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #15803d;
}

.fc-airport-hero h1 {
  color: #05070a;
}

.fc-airport-hero .fc-issue-hero__copy > p {
  color: #344055;
}

.fc-airport-hero__code {
  align-items: center;
  background: #0f5132;
  border: 1px solid rgba(15, 81, 50, 0.12);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(22, 163, 74, 0.16);
  color: #ffffff;
  display: inline-flex;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 0 0 16px;
  padding: 12px 14px;
}

.fc-airport-hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
}

.fc-airport-hero__signals span {
  background: #ffffff;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  color: #166534;
  font-size: 0.84rem;
  font-weight: 800;
  padding: 8px 12px;
}

.fc-airport-hero-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    #ffffff;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(22, 163, 74, 0.12);
  padding: 18px;
  position: relative;
  z-index: 1;
}

.fc-airport-hero-ticket {
  background: #f7fdf9;
  border: 1px dashed #a7f3d0;
  border-radius: 8px;
  padding: 18px;
}

.fc-airport-hero-ticket span,
.fc-airport-route-map span {
  color: #5e6b78;
  display: block;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fc-airport-hero-ticket strong {
  color: #05070a;
  display: block;
  font-size: 1.22rem;
  line-height: 1.2;
  margin-top: 7px;
}

.fc-airport-hero-ticket p {
  color: #344055;
  line-height: 1.58;
  margin: 9px 0 0;
}

.fc-airport-route-map {
  align-items: center;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  margin-top: 14px;
  padding: 14px;
  text-align: center;
}

.fc-airport-route-map b {
  color: #16a34a;
}

.fc-airport-hero .fc-btn--light {
  background: #ffffff;
  border-color: #bbf7d0;
  color: #0f5132;
}

.fc-airport-polish {
  padding: 38px 0;
  border-top: 1px solid var(--fc-border);
  border-bottom: 1px solid var(--fc-border);
  background: #f8fbfd;
}

.fc-airport-polish__head {
  max-width: 760px;
  margin-bottom: 20px;
}

.fc-airport-polish__head h2 {
  margin: 6px 0 8px;
  color: #05070a;
  font-size: 1.55rem;
  line-height: 1.25;
}

.fc-airport-polish__head p {
  margin: 0;
  color: #344055;
}

.fc-airport-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.fc-airport-polish-card {
  border: 1px solid var(--fc-border);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.045);
}

.fc-airport-polish-card strong {
  display: block;
  margin-bottom: 8px;
  color: #05070a;
}

.fc-airport-polish-card p {
  margin: 0;
  color: #344055;
  font-size: 0.94rem;
  line-height: 1.6;
}

.fc-airport-live-content {
  min-width: 0;
}

.fc-airport-trust {
  padding: 30px 0;
  background: #05070a;
  color: #ffffff;
}

.fc-airport-trust__inner {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.fc-airport-trust h2,
.fc-airport-trust p {
  color: #ffffff;
}

.fc-airport-trust h2,
.fc-airport-trust p {
  margin: 0;
}

@media (max-width: 920px) {
  .fc-directory-hero__grid,
  .fc-directory-grid,
  .fc-directory-steps,
  .fc-airport-card-grid,
  .fc-airport-trust__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .fc-directory-hero {
    padding: 38px 0 30px;
  }

  .fc-directory-hero h1 {
    font-size: 2.1rem;
  }

  .fc-directory-panel,
  .fc-directory-hero-card,
  .fc-directory-card {
    border-radius: 8px;
    padding: 16px;
  }

  .fc-directory-mini-grid,
  .fc-directory-route-map,
  .fc-airport-route-map {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .fc-directory-route-map b,
  .fc-airport-route-map b {
    display: none;
  }
}

@media (max-width: 768px) {
  body.home .fc-hero {
    min-height: 78svh;
  }

  body.home .fc-hero__inner {
    padding-bottom: 42px;
    padding-top: 92px;
  }

  body.home .fc-hero__content > h1.fc-hero__eyebrow {
    font-size: 0.82rem;
    line-height: 1.45;
    margin-bottom: 8px;
  }

  body.home .fc-hero__content > h2.fc-hero__title {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
    line-height: 1.08;
    margin-bottom: 14px;
  }

  body.home .fc-hero p {
    font-size: 0.98rem;
    line-height: 1.58;
    margin-bottom: 14px;
  }

  body.home .fc-hero__actions {
    gap: 10px;
    margin-top: 18px;
  }

  body.home .fc-hero__note {
    font-size: 0.86rem;
    line-height: 1.5;
    margin-top: 12px;
  }

  body.home .main-navigation.toggled,
  body.home .main-navigation.is-open,
  body.home .has-inline-mobile-toggle #site-navigation.toggled,
  body.home #site-navigation.toggled .inside-navigation {
    background: transparent !important;
    border-radius: 0;
  }

  body.flyclaimer-visual .main-navigation.toggled .main-nav {
    background: #0d2237;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(6, 18, 32, 0.3);
    left: 14px !important;
    max-width: calc(100vw - 28px) !important;
    padding: 22px 20px 26px;
    right: auto !important;
    top: 72px;
    width: calc(100vw - 28px) !important;
  }

  body.flyclaimer-visual .main-navigation.toggled .menu-toggle {
    border-radius: 14px;
    min-height: 56px;
    padding: 0;
    width: 56px;
  }

  body.flyclaimer-visual .main-navigation.toggled .menu-toggle .mobile-menu {
    font-size: 0;
  }

  body.flyclaimer-visual .main-navigation.toggled .menu-toggle .mobile-menu::after {
    content: "\00d7";
    display: block;
    font-size: 2.1rem;
    font-weight: 300;
    line-height: 1;
  }

  body.flyclaimer-visual .main-navigation.toggled .main-nav > ul {
    display: block;
    width: 100%;
  }

  body.flyclaimer-visual .main-navigation.toggled .main-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    overflow: visible;
  }

  body.flyclaimer-visual .main-navigation.toggled .main-nav > ul > li:not(.fc-header-cta) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.11) !important;
  }

  body.flyclaimer-visual .main-navigation.toggled .main-nav li:last-child {
    border-bottom: 0;
  }

  body.flyclaimer-visual .main-navigation.toggled .main-nav ul li a,
  body.flyclaimer-visual .main-navigation.toggled .main-nav ul li .fc-nav-disabled {
    align-items: center;
    color: #ffffff !important;
    display: flex;
    font-size: 1.18rem !important;
    font-weight: 500;
    justify-content: flex-start;
    line-height: 1.25;
    min-height: 58px !important;
    padding: 13px 6px !important;
    text-shadow: none;
  }

  body.flyclaimer-visual .main-navigation.toggled .main-nav > ul > li.menu-item-has-children > a {
    justify-content: space-between;
    padding-right: 8px !important;
  }

  body.flyclaimer-visual .main-navigation.toggled .main-nav > ul > li.menu-item-has-children > a::after {
    content: "\2304";
    display: inline-flex;
    font-size: 1.4rem;
    line-height: 1;
    margin-left: 18px;
  }

  body.flyclaimer-visual .main-navigation.toggled .main-nav > ul > li.fc-mobile-submenu-open > a::after {
    transform: rotate(180deg);
  }

  body.flyclaimer-visual .main-navigation.toggled .main-nav .dropdown-menu-toggle {
    display: none !important;
  }

  body.flyclaimer-visual .main-navigation.toggled .main-nav ul ul {
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    box-shadow: none;
    display: none !important;
    float: none;
    height: auto;
    left: auto !important;
    margin: 0 0 12px;
    opacity: 1;
    padding: 6px 0;
    pointer-events: auto;
    position: static;
    right: auto !important;
    top: auto;
    visibility: visible;
    width: 100%;
  }

  body.flyclaimer-visual .main-navigation.toggled .main-nav li.fc-mobile-submenu-open > ul.sub-menu {
    display: block !important;
  }

  body.flyclaimer-visual .main-navigation.toggled .main-nav ul ul li {
    border-bottom: 0;
  }

  body.flyclaimer-visual .main-navigation.toggled .main-nav ul ul li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  body.flyclaimer-visual .main-navigation.toggled .main-nav ul ul li a {
    font-size: 1rem !important;
    min-height: 44px !important;
    padding: 10px 14px !important;
  }

  body.flyclaimer-visual .main-navigation.toggled .main-nav .fc-header-cta {
    border-bottom: 0;
    padding-top: 18px;
  }

  body.flyclaimer-visual .main-navigation.toggled .main-nav .fc-header-cta > a.fc-nav-pill,
  body.flyclaimer-visual .main-navigation.toggled .main-nav .fc-header-cta > span.fc-nav-pill {
    background: #1e73be !important;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    color: #ffffff !important;
    display: inline-flex !important;
    font-size: 1rem;
    font-weight: 800;
    justify-content: center;
    line-height: 1.1;
    margin: 4px 0 0;
    min-height: 50px;
    padding: 0 22px !important;
    box-shadow: 0 10px 22px rgba(30, 115, 190, 0.28) !important;
    text-shadow: none;
    width: auto;
  }

  body.fc-check-flight-page .fc-hero {
    min-height: 78svh;
  }

  body.fc-check-flight-page .fc-hero__inner,
  body.fc-check-flight-page .fc-page-hero__inner {
    padding-bottom: 42px;
    padding-top: 92px;
  }

  body.fc-check-flight-page .fc-kicker {
    font-size: 0.82rem;
    line-height: 1.45;
    margin-bottom: 8px;
  }

  body.fc-check-flight-page .fc-hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
    line-height: 1.08;
    margin-bottom: 14px;
  }

  body.fc-check-flight-page .fc-hero p {
    font-size: 0.98rem;
    line-height: 1.58;
    margin-bottom: 14px;
  }

  body.fc-check-flight-page .fc-hero__note,
  body.fc-check-flight-page .fc-hero__trust {
    font-size: 0.86rem;
    line-height: 1.5;
    margin-top: 12px;
  }

  body.fc-check-flight-page .fc-check-flight-live .fc-claim-widget-box {
    margin-top: 18px;
  }

  body.fc-check-flight-page {
    overflow-x: hidden;
  }

  body.fc-check-flight-page .site-header {
    background: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
    left: 0;
    margin-bottom: 0;
    position: absolute !important;
    right: 0;
    top: 0;
    z-index: 1000;
  }

  body.fc-check-flight-page .inside-header,
  body.fc-check-flight-page .main-navigation,
  body.fc-check-flight-page .inside-navigation {
    background: transparent !important;
    box-shadow: none !important;
  }

  body.fc-check-flight-page .inside-header {
    padding-bottom: 12px;
    padding-top: 12px;
  }

  body.fc-check-flight-page .site-logo img,
  body.fc-check-flight-page .custom-logo {
    filter: brightness(0) invert(1);
  }

  body.fc-check-flight-page .menu-toggle {
    background: rgba(7, 15, 26, 0.42) !important;
    border-color: rgba(255, 255, 255, 0.34) !important;
    color: #ffffff !important;
  }

  body.fc-check-flight-page .fc-hero {
    margin-top: 0 !important;
  }
}
