:root {
  --bg: #f4f8fb;
  --surface: #ffffff;
  --surface-soft: #eef7fb;
  --surface-blue: #edf5ff;
  --surface-turquoise: #edfafa;

  --text: #183042;
  --text-soft: #617586;
  --text-faint: #8a9aa7;

  --blue: #176fbd;
  --blue-dark: #0f568f;
  --blue-soft: #dcecff;

  --turquoise: #2f9fa3;
  --turquoise-dark: #237d80;
  --turquoise-soft: #dff4f3;

  --navy: #102f46;
  --navy-soft: #173f5a;

  --border: #dce7ee;
  --border-strong: #c8dbe7;

  --content-width: 1180px;
  --article-width: 780px;

  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(
      180deg,
      #f8fbfd 0,
      var(--bg) 520px,
      var(--bg) 100%
    );
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: var(--blue-dark);
}

img {
  max-width: 100%;
  height: auto;
}


/* HEADER */

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  width: min(calc(100% - 40px), var(--content-width));
  min-height: 72px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 11px;

  color: var(--navy);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.site-brand:hover {
  color: var(--navy);
}

.site-brand-mark {
  width: 34px;
  height: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      var(--blue),
      var(--turquoise)
    );

  color: #ffffff;
  font-size: 17px;
  line-height: 1;

  box-shadow:
    0 4px 12px rgba(23, 111, 189, 0.15);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;

  font-size: 15px;
  font-weight: 600;
}

.site-nav a {
  color: var(--text-soft);
}

.site-nav a:hover {
  color: var(--blue);
}

.site-nav .search-link {
  padding: 9px 16px;

  border-radius: 9px;
  background:
    linear-gradient(
      135deg,
      var(--blue),
      #2587cb
    );

  color: #ffffff;

  box-shadow:
    0 5px 14px rgba(23, 111, 189, 0.16);
}

.site-nav .search-link:hover {
  background:
    linear-gradient(
      135deg,
      var(--blue-dark),
      var(--blue)
    );

  color: #ffffff;
}


/* PAGE */

.page-shell {
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto;
}


/* HERO */

.articles-hero {
  position: relative;

  max-width: none;
  margin-top: 34px;
  padding: 68px 54px 62px;

  overflow: hidden;

  border: 1px solid #d5e6f1;
  border-radius: 24px;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(47, 159, 163, 0.17),
      transparent 30%
    ),
    radial-gradient(
      circle at 75% 80%,
      rgba(23, 111, 189, 0.10),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #fafdff 0%,
      #eaf5ff 58%,
      #e6f7f6 100%
    );

  box-shadow:
    0 12px 35px rgba(30, 70, 100, 0.05);
}

.articles-hero::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -105px;

  width: 290px;
  height: 290px;

  border: 1px solid rgba(23, 111, 189, 0.12);
  border-radius: 50%;
}

.articles-eyebrow {
  position: relative;
  z-index: 1;

  margin-bottom: 12px;

  color: var(--turquoise-dark);

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.articles-hero h1 {
  position: relative;
  z-index: 1;

  max-width: 760px;

  margin: 0 0 20px;

  color: var(--navy);

  font-size: clamp(40px, 6vw, 62px);
  line-height: 1.06;
  letter-spacing: -2px;
}

.articles-hero p {
  position: relative;
  z-index: 1;

  max-width: 720px;

  margin: 0;

  color: #536f82;

  font-size: 20px;
  line-height: 1.65;
}


/* CATEGORY NAV */

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin: 28px 0 54px;
}

.category-nav a {
  padding: 8px 15px;

  border: 1px solid var(--border-strong);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.82);

  color: var(--text-soft);

  font-size: 14px;
  font-weight: 600;

  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.category-nav a:hover {
  border-color: #a9d6dd;

  background: var(--turquoise-soft);

  color: var(--turquoise-dark);
}


/* SECTIONS */

.featured-section,
.category-section {
  margin-bottom: 68px;
}

.category-section {
  padding-top: 8px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;

  margin: 0 0 22px;
}

.section-heading h2 {
  margin: 0;

  color: var(--navy);

  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.6px;
}

.section-heading p {
  margin: 0;

  color: var(--text-soft);

  font-size: 14px;
}

.section-kicker {
  margin-bottom: 5px;

  color: var(--turquoise-dark);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.view-all {
  flex: 0 0 auto;

  padding-bottom: 3px;

  color: var(--blue);

  font-size: 14px;
  font-weight: 700;
}

.view-all:hover {
  color: var(--blue-dark);
}


/* FEATURED ARTICLE */

.featured-article {
  display: block;

  position: relative;
  overflow: hidden;

  padding: 38px 40px;

  border: 1px solid #cce0ef;
  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #eef7ff 62%,
      #e9f9f7 100%
    );

  box-shadow:
    0 8px 24px rgba(31, 72, 102, 0.05);

  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease;
}

.featured-article::after {
  content: "";

  position: absolute;
  right: 34px;
  top: 34px;

  width: 54px;
  height: 54px;

  border: 1px solid rgba(47, 159, 163, 0.20);
  border-radius: 50%;
}

.featured-article:hover {
  transform: translateY(-2px);

  border-color: #aed2e4;

  box-shadow:
    0 14px 32px rgba(31, 72, 102, 0.08);
}

.article-category {
  margin-bottom: 10px;

  color: var(--turquoise-dark);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.featured-article h2 {
  max-width: 760px;

  margin: 0 0 13px;

  color: var(--navy);

  font-size: 32px;
  line-height: 1.24;
  letter-spacing: -0.7px;
}

.featured-article p {
  max-width: 760px;

  margin: 0 0 18px;

  color: var(--text-soft);

  font-size: 17px;
  line-height: 1.7;
}

.article-meta {
  color: var(--text-faint);

  font-size: 13px;
}


/* ARTICLE GRIDS */

.article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 18px;
}


/* ARTICLE CARDS */

.article-card {
  display: flex;
  flex-direction: column;

  min-height: 100%;

  padding: 24px;

  border: 1px solid var(--border);
  border-radius: var(--radius);

  background: rgba(255, 255, 255, 0.94);

  box-shadow:
    0 5px 16px rgba(28, 64, 88, 0.035);

  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.article-card:hover {
  transform: translateY(-2px);

  border-color: #b8d4e4;

  background: #ffffff;

  box-shadow:
    0 10px 24px rgba(28, 64, 88, 0.07);
}

.article-card h2 {
  margin: 0 0 11px;

  color: var(--navy);

  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.25px;
}

.article-card p {
  flex: 1;

  margin: 0 0 18px;

  color: var(--text-soft);

  font-size: 15px;
  line-height: 1.65;
}


/* SUBTLE CATEGORY COLOR IDENTITY */

.section-flights .section-kicker,
.section-hotels .section-kicker {
  color: var(--blue);
}

.section-destinations .section-kicker,
.section-food .section-kicker {
  color: var(--turquoise-dark);
}

.section-planning .section-kicker,
.section-living .section-kicker {
  color: #477d9a;
}

.section-flights .article-card {
  border-top: 3px solid #c6def5;
}

.section-destinations .article-card {
  border-top: 3px solid #bfe7e4;
}

.section-hotels .article-card {
  border-top: 3px solid #d1e4f7;
}

.section-planning .article-card {
  border-top: 3px solid #cbdfe7;
}

.section-food .article-card {
  border-top: 3px solid #c4e9e5;
}

.section-living .article-card {
  border-top: 3px solid #c7dfe8;
}


/* SEARCH CTA */

.search-cta {
  position: relative;
  overflow: hidden;

  margin: 72px 0;
  padding: 38px 40px;

  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      var(--navy) 0%,
      var(--navy-soft) 60%,
      #1f6671 100%
    );

  color: #ffffff;

  box-shadow:
    0 12px 30px rgba(16, 47, 70, 0.12);
}

.search-cta::after {
  content: "";

  position: absolute;
  right: -40px;
  top: -80px;

  width: 220px;
  height: 220px;

  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50%;
}

.search-cta h2 {
  position: relative;
  z-index: 1;

  margin: 0 0 9px;

  color: #ffffff;

  font-size: 27px;
}

.search-cta p {
  position: relative;
  z-index: 1;

  max-width: 650px;

  margin: 0 0 20px;

  color: #dce9ef;
}

.search-cta a {
  position: relative;
  z-index: 1;

  display: inline-block;

  padding: 11px 18px;

  border-radius: 9px;

  background: #ffffff;

  color: var(--navy);

  font-size: 15px;
  font-weight: 700;
}

.search-cta a:hover {
  background: #edf7fa;
  color: var(--navy);
}


/* ARTICLE PAGE SUPPORT */

.breadcrumbs {
  padding-top: 26px;

  color: var(--text-faint);

  font-size: 14px;
}

.breadcrumbs a {
  color: var(--text-soft);
}

.breadcrumbs span {
  margin: 0 7px;

  color: #b0bec8;
}

.article-header {
  width: min(calc(100% - 40px), var(--article-width));
  margin: 0 auto;
  padding: 58px 0 30px;
}

.article-header h1 {
  margin: 0 0 20px;

  color: var(--navy);

  font-size: clamp(36px, 6vw, 52px);
  line-height: 1.1;
  letter-spacing: -1.4px;
}

.article-intro {
  margin: 0 0 20px;

  color: var(--text-soft);

  font-size: 20px;
  line-height: 1.65;
}

.article-content {
  width: min(calc(100% - 40px), var(--article-width));
  margin: 0 auto;
  padding-bottom: 56px;
}

.article-content h2 {
  margin: 46px 0 14px;

  color: var(--navy);

  font-size: 27px;
  line-height: 1.3;
  letter-spacing: -0.45px;
}

.article-content h3 {
  margin: 34px 0 12px;

  color: var(--navy);

  font-size: 21px;
}

.article-content p {
  margin: 0 0 22px;
}

.article-content ul,
.article-content ol {
  margin: 0 0 24px;
  padding-left: 25px;
}

.article-content li {
  margin-bottom: 10px;
  padding-left: 3px;
}

.article-content blockquote {
  margin: 30px 0;
  padding: 18px 22px;

  border-left: 4px solid var(--turquoise);

  background: var(--surface-turquoise);

  color: #3d5865;
}


/* ARTICLE CALLOUT */

.article-callout {
  margin: 32px 0;
  padding: 22px 24px;

  border: 1px solid #c6e1e5;
  border-radius: 11px;

  background:
    linear-gradient(
      135deg,
      var(--surface-blue),
      var(--surface-turquoise)
    );
}

.article-callout strong {
  display: block;
  margin-bottom: 5px;

  color: var(--navy);
}


/* ADS */

.ad-slot {
  margin: 38px auto;
  padding: 10px 0;

  text-align: center;
}

.ad-label {
  margin-bottom: 5px;

  color: var(--text-faint);

  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* RELATED ARTICLES */

.related-articles {
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto 70px;
  padding-top: 36px;

  border-top: 1px solid var(--border);
}

.related-articles h2 {
  margin: 0 0 22px;

  color: var(--navy);

  font-size: 26px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 18px;
}

.related-card {
  padding: 21px;

  border: 1px solid var(--border);
  border-radius: 12px;

  background: var(--surface);
}

.related-card:hover {
  border-color: #b7d4df;

  box-shadow:
    0 8px 20px rgba(31, 72, 102, 0.06);
}

.related-card span {
  display: block;

  margin-bottom: 6px;

  color: var(--turquoise-dark);

  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.related-card strong {
  color: var(--navy);

  font-size: 17px;
  line-height: 1.4;
}


/* LANGUAGES */

.language-nav {
  margin: 24px 0 0;

  color: var(--text-soft);

  font-size: 14px;
}

.language-nav strong {
  margin-right: 7px;
}

.language-nav a {
  margin-right: 10px;
}


/* FOOTER */

.site-footer {
  margin-top: 20px;

  background:
    linear-gradient(
      135deg,
      #102f46,
      #153f56 68%,
      #1d5960
    );

  color: #dbe7ec;
}

.site-footer-inner {
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto;
  padding: 40px 0 38px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand {
  max-width: 440px;
}

.footer-brand strong {
  display: block;

  margin-bottom: 6px;

  color: #ffffff;

  font-size: 17px;
}

.footer-brand p {
  margin: 0;

  color: #bfd0d9;

  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;

  gap: 8px 18px;

  font-size: 14px;
}

.footer-links a {
  color: #d3e4ea;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);

  color: #9db4c0;

  font-size: 12px;
}


/* ACCESSIBILITY */

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(47, 159, 163, 0.30);
  outline-offset: 3px;
}


/* RESPONSIVE */

@media (max-width: 1000px) {
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .site-header-inner {
    width: min(calc(100% - 28px), var(--content-width));

    min-height: auto;
    padding: 16px 0;

    align-items: flex-start;
    flex-direction: column;

    gap: 12px;
  }

  .site-nav {
    width: 100%;
    gap: 14px;

    overflow-x: auto;

    padding-bottom: 2px;

    white-space: nowrap;
  }

  .site-nav .search-link {
    margin-left: auto;
  }

  .page-shell {
    width: min(calc(100% - 28px), var(--content-width));
  }

  .articles-hero {
    margin-top: 20px;
    padding: 46px 25px 42px;

    border-radius: 18px;
  }

  .articles-hero h1 {
    font-size: 40px;
    letter-spacing: -1.2px;
  }

  .articles-hero p {
    font-size: 18px;
  }

  .category-nav {
    margin-bottom: 46px;
  }

  .section-heading {
    align-items: flex-end;
  }

  .section-heading h2 {
    font-size: 25px;
  }

  .view-all {
    font-size: 13px;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .featured-article {
    padding: 27px;
  }

  .featured-article h2 {
    font-size: 26px;
  }

  .search-cta {
    margin: 58px 0;
    padding: 30px 26px;
  }

  .article-header,
  .article-content {
    width: min(calc(100% - 28px), var(--article-width));
  }

  .article-header {
    padding-top: 42px;
  }

  .article-header h1 {
    font-size: 38px;
  }

  .article-intro {
    font-size: 18px;
  }

  .article-content h2 {
    margin-top: 38px;

    font-size: 24px;
  }

  .related-articles {
    width: min(calc(100% - 28px), var(--content-width));
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* LANGUAGE SWITCHER */

.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-switcher-button {
  min-height: 40px;
  padding: 7px 11px;

  display: flex;
  align-items: center;
  gap: 7px;

  border: 1px solid var(--border);
  border-radius: 9px;

  background: #ffffff;
  color: var(--text-soft);

  font: inherit;
  font-size: 14px;
  font-weight: 600;

  cursor: pointer;
}

.language-switcher-button:hover {
  border-color: #b8d6e3;
  background: var(--surface-soft);
  color: var(--navy);
}

.language-arrow {
  position: relative;
  top: -1px;

  color: var(--text-faint);
  font-size: 13px;
}

.language-switcher-menu {
  position: absolute;
  z-index: 1000;

  top: calc(100% + 8px);
  right: 0;

  min-width: 170px;
  padding: 7px;

  display: none;

  border: 1px solid var(--border);
  border-radius: 11px;

  background: #ffffff;

  box-shadow:
    0 12px 32px rgba(16, 47, 70, 0.12);
}

.language-switcher.is-open .language-switcher-menu {
  display: block;
}

.language-switcher-menu a {
  display: block;

  padding: 9px 11px;

  border-radius: 7px;

  color: var(--text-soft);

  font-size: 14px;
  font-weight: 500;

  white-space: nowrap;
}

.language-switcher-menu a:hover {
  background: var(--surface-turquoise);
  color: var(--turquoise-dark);
}

.language-switcher-menu a[aria-current="page"] {
  background: var(--surface-blue);
  color: var(--blue-dark);
  font-weight: 700;
}


/* MOBILE LANGUAGE SWITCHER */

@media (max-width: 760px) {

  .language-switcher {
    margin-left: auto;
  }

  .language-switcher-button {
    min-height: 38px;
    padding: 6px 9px;
  }

  .language-current {
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .language-switcher-menu {
    right: 0;
    min-width: 160px;
  }

}

/* ARTICLE CTA OVERRIDES */

.article-content .search-cta h2 {
  color: #ffffff;
}

.article-content .search-cta p {
  color: #dce9ef;
}

.article-content .search-cta a {
  color: var(--navy);
}

/* FEATURED GUIDE */

.featured-guide {
  margin: 42px 0 54px;
}

.featured-guide-content {
  position: relative;
  overflow: hidden;

  padding: 34px 38px 36px;

  border: 1px solid rgba(23, 111, 189, 0.14);
  border-radius: 22px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.98),
      rgba(233,245,249,0.96)
    );

  box-shadow:
    0 18px 50px rgba(16, 47, 70, 0.08);
}

.featured-guide-content::after {
  content: "";
  position: absolute;

  width: 180px;
  height: 180px;

  top: -80px;
  right: -60px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(47, 159, 163, 0.16),
      rgba(47, 159, 163, 0)
    );

  pointer-events: none;
}

.featured-guide .section-kicker {
  margin-bottom: 12px;

  color: var(--turquoise-dark);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.featured-guide .article-category {
  display: inline-flex;

  margin-bottom: 16px;
  padding: 6px 10px;

  border-radius: 999px;

  background: rgba(23, 111, 189, 0.08);
  color: var(--blue-dark);

  font-size: 12px;
  font-weight: 700;
}

.featured-guide h2 {
  max-width: 760px;
  margin: 0 0 14px;

  color: var(--navy);

  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.featured-guide p {
  max-width: 720px;
  margin: 0 0 18px;

  color: var(--text-soft);

  font-size: 17px;
  line-height: 1.7;
}

.featured-guide .article-meta {
  margin-bottom: 22px;

  color: var(--text-faint);

  font-size: 13px;
}

.featured-guide-link {
  display: inline-flex;
  align-items: center;

  padding: 11px 16px;

  border-radius: 10px;

  background: var(--navy);
  color: #ffffff;

  font-size: 14px;
  font-weight: 700;
}

.featured-guide-link:hover {
  background: var(--blue-dark);
  color: #ffffff;
}

@media (max-width: 760px) {

  .featured-guide {
    margin: 30px 0 40px;
  }

  .featured-guide-content {
    padding: 26px 24px 28px;
    border-radius: 18px;
  }

}