:root {
  --navy: #123f70;
  --navy-dark: #092b50;
  --turquoise: #12bfc2;
  --turquoise-soft: #e8fbfa;
  --coral: #ff694f;
  --ink: #17324d;
  --muted: #5f7182;
  --paper: #f5f8fb;
  --white: #fff;
  --border: #dce6ee;
  --sources-background: #123f70;
  --sources-border: #a7f3ed;
  --sources-link-background: #075b63;
  --sources-link-text: #fff;
  --sources-link-active-background: #a7f3ed;
  --sources-link-active-text: #062f35;
  --shadow: 0 14px 36px rgba(18, 63, 112, 0.1);
}

* { box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background-color: #f5f1eb;
  background-image:
    linear-gradient(rgba(18, 63, 112, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 63, 112, .035) 1px, transparent 1px),
    radial-gradient(circle at 1px 1px, rgba(18, 191, 194, .12) 1px, transparent 1.4px);
  background-position: 0 0, 0 0, 12px 12px;
  background-size: 96px 96px, 96px 96px, 24px 24px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
}
a { color: var(--navy); }
a:hover { color: #087f83; }
img { display: block; max-width: 100%; }

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(90px, 150px) minmax(420px, 728px) minmax(210px, 1fr);
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  min-height: 112px;
  padding: 11px max(18px, calc((100vw - 1420px) / 2));
  background: linear-gradient(105deg, #e7f4f3 0%, #f7f5f0 48%, #e8f0f5 100%);
  border-top: 4px solid var(--navy);
  border-bottom: 1px solid #cddde9;
  box-shadow: 0 7px 25px rgba(18, 63, 112, 0.12);
}
.site-header > * { position: relative; z-index: 1; }
.site-brand {
  display: inline-flex;
  width: 96px;
  height: 92px;
  align-items: center;
  justify-content: center;
}
.site-brand img { width: 88px; height: 88px; object-fit: contain; filter: drop-shadow(0 7px 9px rgba(18,63,112,.13)); }

.automation-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 11px 15px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0%, rgba(18, 191, 194, 0.42), transparent 34%),
    linear-gradient(115deg, var(--navy-dark), #0c686b 72%, #07585c);
  border-radius: 18px;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(9, 43, 80, 0.2);
}
.automation-banner:hover { color: var(--white); transform: translateY(-1px); }
.automation-banner:focus-visible { outline: 4px solid var(--turquoise); outline-offset: 3px; }
.automation-banner__mark {
  display: grid;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  place-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 15px;
}
.automation-banner__mark svg { width: 40px; height: 40px; }
.automation-banner__mark path, .automation-banner__mark circle {
  fill: none;
  stroke: var(--white);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.automation-banner__mark circle { fill: var(--turquoise); stroke: var(--navy-dark); }
.automation-banner__copy { display: flex; flex: 1; min-width: 0; flex-direction: column; line-height: 1.2; }
.automation-banner__copy strong { font-size: clamp(16px, 1.5vw, 21px); letter-spacing: -.02em; }
.automation-banner__copy span { margin-top: 4px; color: #d8fbf8; font-size: 13px; }
.automation-banner__cta {
  flex: 0 0 auto;
  padding: 9px 13px;
  color: var(--navy-dark);
  background: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.automation-banner__cta b { color: var(--coral); font-size: 18px; }

.language-selector {
  justify-self: end;
  padding: 9px;
  background: linear-gradient(145deg, var(--navy-dark), var(--navy));
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 20px;
  box-shadow: 0 10px 23px rgba(9,43,80,.2);
  text-align: right;
}
.language-selector__label { display: block; margin: 0 7px 7px; color: #bfeeed; font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.language-selector__links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 5px; }
.language-selector a, .language-selector span[aria-disabled="true"] {
  display: inline-flex;
  min-width: 35px;
  min-height: 35px;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.language-selector a[aria-current="page"] { color: var(--navy-dark); background: linear-gradient(145deg, #8cf0e8, var(--turquoise)); border-color: #9af4ed; box-shadow: 0 5px 12px rgba(18,191,194,.28); }
.language-selector__links > a:not([aria-current]) { color: #dce8f1; background: rgba(255,255,255,.1); }
.language-selector a:not([aria-current="page"]):hover { color: var(--white); background: rgba(18,191,194,.3); }
.language-selector span[aria-disabled="true"] { color: #d1dee9; background: rgba(255,255,255,.1); cursor: not-allowed; }
.language-selector span[aria-disabled="true"]:nth-child(4) { color: #fff1ed; background: rgba(255,105,79,.2); }

.breadcrumbs, main { width: min(100% - 36px, 1060px); margin-inline: auto; }
.breadcrumbs { padding: 24px 0 0; color: var(--muted); font-size: 14px; }
.breadcrumbs a { text-decoration: none; }
.page-hero { padding: clamp(38px, 7vw, 78px) 0 34px; text-align: center; }
.eyebrow { margin: 0 0 10px; color: #087f83; font-size: 13px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
h1 { max-width: 820px; margin: 0 auto; color: var(--navy-dark); font-size: clamp(36px, 6vw, 68px); line-height: 1.04; letter-spacing: -.045em; }
.page-hero__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 48px);
}
.page-hero__title img {
  flex: 0 0 auto;
  width: clamp(132px, 15vw, 190px);
  height: clamp(120px, 14vw, 172px);
  object-fit: contain;
  filter: drop-shadow(0 13px 18px rgba(18, 63, 112, .16));
}
.page-hero__title--world img { width: clamp(172px, 19vw, 232px); height: clamp(112px, 13vw, 150px); }
.page-hero__title h1 { max-width: 760px; margin: 0; text-align: left; }
.page-hero__lead { max-width: 720px; margin: 20px auto 0; color: var(--muted); font-size: clamp(18px, 2.3vw, 23px); }

.continent-top-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
  margin: clamp(34px, 6vw, 66px) 0 32px;
}
.continent-top-grid .page-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(30px, 4vw, 46px) clamp(22px, 3vw, 36px);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(18,63,112,.09);
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(18,63,112,.09);
}
.continent-top-grid .page-hero__title { flex-direction: column; gap: 14px; }
.continent-top-grid .page-hero__title img { width: min(55%, 176px); height: 150px; }
.continent-top-grid .page-hero__title .america-map {
  position: relative;
  display: block;
  width: min(55%, 176px);
  height: 150px;
}
.continent-top-grid .page-hero__title .america-map img {
  position: absolute;
  filter: drop-shadow(0 13px 18px rgba(18, 63, 112, .16));
}
.continent-top-grid .page-hero__title .america-map img:first-child {
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
}
.continent-top-grid .page-hero__title .america-map img:last-child {
  top: 48px;
  left: 27%;
  width: 64%;
  height: 108px;
}
.continent-top-grid .page-hero__title h1 { max-width: 430px; text-align: center; font-size: clamp(34px, 4.2vw, 50px); }
.continent-top-grid .page-hero__lead { margin-top: 17px; font-size: clamp(16px, 1.7vw, 19px); line-height: 1.55; }
.continent-latest-fair {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(30px, 4vw, 46px) clamp(24px, 3.5vw, 40px);
  color: #eaf7ff;
  background:
    radial-gradient(circle at 92% 8%, rgba(255,105,79,.38), transparent 31%),
    radial-gradient(circle at 8% 92%, rgba(18,191,194,.28), transparent 34%),
    linear-gradient(145deg, var(--navy-dark), var(--navy) 64%, #075f63);
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(18,63,112,.2);
}
.continent-latest-fair .eyebrow { color: #9af4ed; }
.continent-latest-fair h2 { margin: 2px 0 18px; color: var(--white); font-size: clamp(28px, 3.1vw, 39px); line-height: 1.08; }
.continent-latest-fair h2 a { color: inherit; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.continent-latest-fair h2 a:hover { color: #9af4ed; }
.continent-latest-fair > p:last-child { margin: 0; color: #eaf7ff; font-size: 16px; line-height: 1.7; }

.gateway-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
  margin: clamp(34px, 6vw, 66px) 0 32px;
}
.gateway-top-grid .gateway-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(30px, 4vw, 48px) clamp(22px, 3.5vw, 38px);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(18,63,112,.09);
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(18,63,112,.09);
}
.gateway-top-grid .page-hero__title { flex-direction: column; gap: 16px; }
.gateway-top-grid .page-hero__title--world img { width: min(60%, 190px); height: 122px; }
.gateway-top-grid .page-hero__title h1 { max-width: 430px; text-align: center; font-size: clamp(34px, 4.2vw, 52px); }
.gateway-top-grid .page-hero__lead { margin-top: 18px; font-size: clamp(17px, 1.8vw, 20px); }
.gateway-daily-fairs {
  display: grid;
  grid-template-rows: repeat(5, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
  padding: clamp(16px, 2vw, 22px);
  background:
    radial-gradient(circle at 92% 8%, rgba(255,105,79,.3), transparent 28%),
    linear-gradient(145deg, var(--navy-dark), var(--navy) 66%, #075f63);
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(18,63,112,.2);
}
.gateway-daily-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .9fr);
  grid-template-rows: auto auto;
  gap: 3px 14px;
  align-content: center;
  min-width: 0;
  padding: 10px 14px;
  color: #eaf7ff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 15px;
}
.gateway-daily-card p, .gateway-daily-card time { margin: 0; font-size: 12px; line-height: 1.3; }
.gateway-daily-card p { font-weight: 800; letter-spacing: .035em; }
.gateway-daily-card time { color: #c8dce9; text-align: end; }
.gateway-daily-card a { text-decoration-thickness: 2px; text-underline-offset: 3px; }
.gateway-daily-card__fair { color: #9af4ed; font-size: 18px; font-weight: 900; }
.gateway-daily-card__continent { align-self: center; color: #ffd6cb; font-size: 14px; font-weight: 800; text-align: end; }
.gateway-daily-card a:hover { color: var(--white); }

.home-top-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
  margin: clamp(34px, 6vw, 66px) 0 32px;
}
.home-top-grid .page-hero--home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(30px, 4vw, 48px) clamp(22px, 3.5vw, 38px);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(18,63,112,.09);
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(18,63,112,.09);
}
.home-top-grid .page-hero__title {
  flex-direction: column;
  gap: 16px;
}
.home-top-grid .page-hero__title--world img { width: min(60%, 190px); height: 122px; }
.home-top-grid .page-hero__title h1 {
  max-width: 430px;
  text-align: center;
  font-size: clamp(34px, 4.2vw, 52px);
}
.home-top-grid .page-hero__lead { margin-top: 18px; font-size: clamp(17px, 1.8vw, 20px); }
.home-hero__intro {
  width: 100%;
  margin-top: clamp(28px, 4vw, 42px);
  padding-top: clamp(24px, 3vw, 32px);
  text-align: start;
  border-top: 1px solid rgba(18,63,112,.14);
}
.home-hero__intro h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(25px, 2.7vw, 34px);
  line-height: 1.12;
  letter-spacing: -.025em;
}
.home-hero__intro p { margin: 0; color: #435d73; font-size: 16px; line-height: 1.68; }
.home-continent-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}
.home-continent-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 13px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #087f83);
  border: 1px solid rgba(18,63,112,.12);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(18,63,112,.13);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.home-continent-links a:hover {
  background: linear-gradient(135deg, #087f83, var(--turquoise));
  box-shadow: 0 11px 22px rgba(18,63,112,.18);
  transform: translateY(-2px);
}
.home-continent-links a:last-child { grid-column: 1 / -1; }
.home-daily-fairs {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}
.home-daily-fairs .featured-fair {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 2.6vw, 30px) clamp(20px, 2.8vw, 30px);
  border-radius: 22px;
}
.home-daily-fairs .featured-fair::before { margin-bottom: 13px; }
.home-daily-fairs .featured-fair h2 { margin-bottom: 13px; font-size: clamp(22px, 2.35vw, 30px); }
.home-daily-fairs .featured-fair p { margin-top: 9px; font-size: 14px; line-height: 1.54; }
.home-daily-fairs .featured-fair--tomorrow {
  background: radial-gradient(circle at 92% 8%, rgba(18,191,194,.34), transparent 31%), linear-gradient(145deg, #17334f, #145e69 68%, #087f83);
}

.featured-fair {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: clamp(30px, 4vw, 46px) clamp(24px, 3.5vw, 40px);
  color: #eaf7ff;
  background:
    radial-gradient(circle at 92% 8%, rgba(255,105,79,.38), transparent 31%),
    radial-gradient(circle at 8% 92%, rgba(18,191,194,.28), transparent 34%),
    linear-gradient(145deg, var(--navy-dark), var(--navy) 64%, #075f63);
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(18,63,112,.2);
}
.featured-fair::before {
  content: "";
  display: block;
  width: 58px;
  height: 5px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--turquoise), var(--coral));
  border-radius: 999px;
}
.featured-fair h1,
.featured-fair h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(28px, 3.1vw, 39px);
  line-height: 1.08;
  letter-spacing: -.025em;
  text-align: start;
}
.featured-fair p { margin: 0 0 17px; color: #eaf7ff; font-size: 15.5px; line-height: 1.68; }
.featured-fair p:last-child { margin-bottom: 0; }
.featured-fair a,
.featured-fair a:visited {
  color: #9af4ed;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.featured-fair a:hover,
.featured-fair a:focus-visible { color: var(--white); }

.fair-detail-main { padding: clamp(34px, 6vw, 64px) 0 76px; }
.fair-detail {
  overflow: hidden;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 22px 60px rgba(18,63,112,.12);
}
.fair-detail > header {
  padding: clamp(38px, 6vw, 68px) clamp(24px, 7vw, 76px);
  color: #eaf7ff;
  background:
    radial-gradient(circle at 92% 8%, rgba(255,105,79,.35), transparent 28%),
    linear-gradient(135deg, var(--navy-dark), var(--navy) 68%, #075f63);
}
.fair-detail > header h1 { max-width: 900px; margin: 0 0 24px; color: var(--white); font-size: clamp(36px, 5.5vw, 62px); text-align: start; }
.fair-detail > header p { max-width: 880px; margin: 0; color: #eaf7ff; font-size: clamp(17px, 2vw, 20px); line-height: 1.7; }
.fair-detail > section { padding: clamp(32px, 5vw, 54px) clamp(24px, 7vw, 76px); border-top: 1px solid var(--border); }
.fair-detail > section:nth-of-type(even) { background: linear-gradient(110deg, #eefafa, #fff 70%); }
.fair-detail > section h2 { max-width: 820px; margin: 0 0 22px; color: var(--navy-dark); font-size: clamp(28px, 3.8vw, 41px); line-height: 1.12; }
.fair-detail > section p, .fair-detail > section li { color: #3d586f; font-size: 17px; line-height: 1.72; }
.fair-detail > section ul { margin: 22px 0; padding-inline-start: 24px; }
.fair-detail > section li { margin-bottom: 10px; }
.fair-detail > section strong { color: #075f63; }

.continent-article {
  margin-bottom: 72px;
  padding: clamp(28px, 5vw, 58px) clamp(22px, 6vw, 70px) 0;
  overflow: hidden;
  background: var(--white);
  border-radius: 34px 34px 10px 10px;
  box-shadow: 0 22px 60px rgba(18, 63, 112, .11);
}
.continent-article > h2 { max-width: 720px; margin: 0 0 28px; color: var(--navy); font-size: clamp(29px, 4vw, 44px); line-height: 1.1; }
.continent-article > p { max-width: 850px; color: #435d73; font-size: 18px; }
.continent-article > p:nth-of-type(2) { margin-bottom: 52px; }
.continent-article > section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 220px) 1fr;
  gap: 4px clamp(28px, 6vw, 74px);
  margin: 0 calc(clamp(22px, 6vw, 70px) * -1);
  padding: clamp(38px, 6vw, 68px) clamp(22px, 6vw, 70px);
  border-top: 1px solid var(--border);
}
.country-map {
  align-self: start;
  width: min(100%, 174px);
  height: 174px;
  object-fit: contain;
  grid-column: 1;
  grid-row: 1 / span 3;
  filter: drop-shadow(0 12px 16px rgba(18, 63, 112, .14));
}
.continent-article > section:nth-of-type(even) { background: linear-gradient(105deg, #eafafa 0%, #f5fcfc 62%, #fff 100%); }
.continent-article > section:nth-of-type(3n) { background: linear-gradient(105deg, #fff4f0 0%, #fffafa 62%, #fff 100%); }
.continent-article h3 { margin: 0 0 12px; color: var(--navy-dark); font-size: clamp(27px, 3.4vw, 38px); grid-column: 2; line-height: 1.1; }
.world-article section h2 { margin: 0 0 12px; color: var(--navy-dark); font-size: clamp(27px, 3.4vw, 38px); grid-column: 2; line-height: 1.1; }
.world-article section h2 a { color: inherit; text-decoration-color: var(--turquoise); text-decoration-thickness: 3px; text-underline-offset: 6px; }
.continent-article section p { grid-column: 2; }
.continent-article section p:last-child { margin-bottom: 0; }
.continent-article strong { color: #075f63; }
.continent-article:not(.monthly-fairs-archive) > section:last-of-type {
  color: #e9f7ff;
  background:
    radial-gradient(circle at 92% 10%, rgba(255,105,79,.3), transparent 28%),
    linear-gradient(120deg, var(--navy-dark), var(--navy) 65%, #075f63);
  border-top: 0;
}
.continent-article:not(.monthly-fairs-archive) > section:last-of-type h3,
.continent-article:not(.monthly-fairs-archive) > section:last-of-type h2,
.continent-article:not(.monthly-fairs-archive) > section:last-of-type p { grid-column: 1 / -1; }
.continent-article:not(.monthly-fairs-archive) > section:last-of-type h3,
.continent-article:not(.monthly-fairs-archive) > section:last-of-type h2,
.continent-article:not(.monthly-fairs-archive) > section:last-of-type strong { color: var(--white); }
.continent-article:not(.monthly-fairs-archive) > section:last-of-type a,
.continent-article:not(.monthly-fairs-archive) > section:last-of-type a:visited {
  color: #9af4ed;
  text-decoration-color: currentColor;
}
.continent-article:not(.monthly-fairs-archive) > section:last-of-type a:hover,
.continent-article:not(.monthly-fairs-archive) > section:last-of-type a:focus-visible { color: var(--white); }
.data-sources {
  color: #e9f7ff;
  background: var(--sources-background) !important;
  border: 3px solid var(--sources-border) !important;
}
.data-sources h2,
.data-sources h3,
.data-sources p,
.data-sources li,
.data-sources strong {
  color: var(--sources-link-text) !important;
}
.data-sources a,
.data-sources a:visited {
  display: inline-block;
  padding: 4px 8px;
  color: var(--sources-link-text) !important;
  background: var(--sources-link-background);
  border: 2px solid var(--sources-border);
  border-radius: 4px;
  font-weight: 800;
  text-decoration-color: var(--sources-link-text);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.data-sources a:hover,
.data-sources a:focus-visible {
  color: var(--sources-link-active-text) !important;
  background: var(--sources-link-active-background);
  border-color: var(--sources-link-text);
  text-decoration-color: var(--sources-link-active-text);
  outline: 3px solid var(--sources-link-text);
  outline-offset: 2px;
}
.venue-article > section { grid-template-columns: 1fr; }
.venue-article > section h3,
.venue-article > section p,
.venue-article > section ul { grid-column: 1; }
.venue-article > section li + li { margin-top: 12px; }
.world-article > section:last-of-type h2,
.world-article > section:last-of-type p { grid-column: 2; }
.continent-article:not(.monthly-fairs-archive) > section:last-of-type + p { margin: 0 calc(clamp(22px, 6vw, 70px) * -1); padding: 42px clamp(22px, 6vw, 70px) 52px; color: var(--navy-dark); background: #e9f9f8; font-size: 19px; font-weight: 650; }

.gateway-article { padding-top: clamp(42px, 7vw, 72px); }
.gateway-article .language-gateway__intro { max-width: 780px; margin-bottom: 34px; }
.gateway-article .language-gateway__intro h2 { margin: 7px 0 15px; color: var(--navy-dark); font-size: clamp(32px, 5vw, 48px); line-height: 1.08; }
.gateway-article .language-gateway__intro p:last-child { margin-bottom: 0; }
.language-gateway__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.gateway-article .language-card { display: grid; grid-template-columns: 62px 1fr; gap: 18px; min-height: 210px; margin: 0; padding: 26px; background: linear-gradient(145deg, #fff, #f4fbfb); border: 1px solid var(--border); border-radius: 20px; box-shadow: 0 14px 34px rgba(18,63,112,.08); }
.gateway-article .language-card:nth-child(2n) { background: linear-gradient(145deg, #fff, #fff5f1); }
.gateway-article .language-card:last-child { grid-column: 1 / -1; }
.language-card__code { display: grid; place-items: center; align-self: start; min-height: 54px; padding: 7px; color: var(--white); background: var(--navy); border-radius: 15px; font-size: 14px; font-weight: 900; letter-spacing: .05em; }
.gateway-article .language-card h3 { grid-column: auto; margin: 2px 0 9px; font-size: 25px; }
.gateway-article .language-card p { grid-column: auto; margin: 0; font-size: 16px; }
.language-card__links { display: flex; flex-wrap: wrap; gap: 10px 16px; margin-top: 18px !important; }
.language-card__links a { color: var(--navy); font-weight: 800; text-underline-offset: 4px; }
.language-card__links .language-card__primary { padding: 7px 14px; color: var(--white); background: var(--navy); border-radius: 999px; text-decoration: none; }
.gateway-article > .gateway-summary { grid-template-columns: 180px 1fr; margin-top: clamp(42px, 7vw, 72px); }
.gateway-summary img { align-self: center; width: 160px; height: 160px; object-fit: contain; filter: drop-shadow(0 12px 18px rgba(0,0,0,.18)); }
.gateway-summary > div { grid-column: 2; }
.gateway-summary .eyebrow { grid-column: auto; margin-bottom: 8px; color: #9af4ed; }
.gateway-summary h2 { grid-column: auto !important; margin: 0 0 14px; color: var(--white); font-size: clamp(27px, 3.4vw, 38px); line-height: 1.1; }
.gateway-summary p { grid-column: auto !important; }

.monthly-fairs-archive { padding-top: clamp(34px, 5vw, 54px); }
.monthly-archive-nav { display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 34px; padding: 14px; background: var(--turquoise-soft); border: 1px solid var(--border); border-radius: 16px; }
.monthly-archive-nav a, .monthly-archive-nav span[aria-disabled="true"] { padding: 8px 14px; border-radius: 999px; font-size: 14px; font-weight: 800; }
.monthly-archive-nav a { color: var(--navy); text-decoration: none; }
.monthly-archive-nav span[aria-disabled="true"] { color: var(--muted); opacity: .62; cursor: default; }
.monthly-archive-nav a:hover { background: rgba(255,255,255,.8); }
.monthly-archive-nav a[aria-current="page"] { color: var(--white); background: var(--navy); }
.daily-month-link { margin: 28px 0 36px; }
.daily-month-link a { display: inline-flex; align-items: center; padding: 11px 18px; color: var(--white); background: var(--navy); border-radius: 999px; font-weight: 800; text-decoration: none; }
.daily-month-link a:hover, .daily-month-link a:focus-visible { color: var(--white); background: var(--navy-dark); }
.monthly-fairs-archive > .monthly-empty-state { display: block; margin-top: 34px; padding: clamp(34px, 5vw, 52px); text-align: center; background: linear-gradient(135deg, #eafafa, #fff); border: 1px dashed #82cfd0; border-radius: 20px; }
.monthly-empty-state h3 { margin: 0; color: var(--navy); font-size: clamp(22px, 3vw, 30px); }
.daily-trade-fair { margin-top: 26px; padding: clamp(28px, 5vw, 46px); background: var(--white); border: 1px solid var(--border); border-radius: 20px; box-shadow: 0 12px 32px rgba(18,63,112,.08); }
.daily-trade-fair time { color: #075f63; font-weight: 850; }
.daily-trade-fair h3 { margin: 8px 0 14px; }

.site-footer { color: #dceaf5; background: var(--navy-dark); }
.site-footer__inner { display: grid; grid-template-columns: 1fr auto; gap: 24px; width: min(100% - 36px, 1060px); margin: auto; padding: 34px 0; }
.site-footer__brand { display: flex; align-items: center; gap: 15px; }
.site-footer__logo { display: block; flex: 0 0 54px; width: 54px; height: 54px; border-radius: 13px; }
.site-footer__logo:focus-visible { outline: 3px solid var(--turquoise); outline-offset: 4px; }
.site-footer__brand img { width: 54px; height: 54px; }
.site-footer__brand strong { display: block; color: var(--white); }
.site-footer__brand span { color: #a9c4d8; font-size: 14px; }
.site-footer__links { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 8px 16px; }
.site-footer__links a { color: #dceaf5; font-size: 14px; text-decoration: none; }
.site-footer__links a:hover { color: var(--turquoise); }
.site-footer__base { padding: 13px 18px; color: #91b0c7; background: #06233f; font-size: 12px; text-align: center; }

.cookie-notice {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 100;
  display: none;
  width: min(calc(100vw - 36px), 360px);
  padding: 16px;
  color: var(--ink);
  background: rgba(255,255,255,.98);
  border: 1px solid var(--border);
  border-radius: 15px;
  box-shadow: 0 18px 50px rgba(9,43,80,.22);
  font-size: 14px;
  line-height: 1.45;
}
.cookie-notice p { margin: 0 0 12px; }
.cookie-notice__actions { display: flex; gap: 8px; }
.cookie-notice button { padding: 8px 12px; border: 1px solid var(--navy); border-radius: 9px; font: inherit; font-weight: 800; cursor: pointer; }
.cookie-notice__accept { color: var(--white); background: var(--navy); }
.cookie-notice__reject { color: var(--navy); background: var(--white); }

.legal-main { padding: 42px 0 70px; }
.legal-main h1 { margin-bottom: 18px; font-size: clamp(34px, 5vw, 54px); text-align: left; }
.legal-intro { max-width: 760px; color: var(--muted); font-size: 19px; }
.legal-section { margin: 24px 0; padding: 24px 28px; background: var(--white); border: 1px solid var(--border); border-radius: 16px; }
.legal-section h2 { margin-top: 0; color: var(--navy); font-size: 23px; }
.legal-nav { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 28px 0; padding: 14px 18px; background: var(--turquoise-soft); border-radius: 12px; }
.legal-nav a { font-size: 14px; font-weight: 750; text-decoration: none; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 82px 1fr; }
  .site-brand { width: 78px; height: 76px; }
  .site-brand img { width: 72px; height: 72px; }
  .language-selector { grid-column: 1 / -1; justify-self: center; text-align: center; }
  .language-selector__label { display: none; }
  .language-selector__links { justify-content: center; }
}
@media (max-width: 850px) {
  .continent-top-grid { grid-template-columns: 1fr; }
  .gateway-top-grid { grid-template-columns: 1fr; }
  .gateway-top-grid .gateway-hero { min-height: auto; }
  .home-top-grid { grid-template-columns: 1fr; }
  .home-top-grid .page-hero--home, .featured-fair { min-height: auto; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .site-header { grid-template-columns: 58px 1fr; gap: 10px; padding: 9px 12px; }
  .site-brand { width: 57px; height: 57px; }
  .site-brand img { width: 54px; height: 54px; }
  .automation-banner { min-height: 62px; padding: 8px 10px; border-radius: 13px; }
  .automation-banner__mark { display: none; }
  .automation-banner__copy span { display: none; }
  .automation-banner__cta { padding: 7px 9px; font-size: 11px; }
  .page-hero__title { flex-direction: column; gap: 12px; }
  .page-hero__title img { width: 118px; height: 106px; }
  .page-hero__title--world img { width: 154px; height: 96px; }
  .page-hero__title h1 { text-align: center; }
  .continent-top-grid { width: 100%; margin-top: 24px; gap: 16px; }
  .continent-top-grid .page-hero, .continent-latest-fair { padding: 28px 20px; border-radius: 22px; }
  .continent-top-grid .page-hero__title h1 { font-size: clamp(32px, 11vw, 44px); }
  .gateway-top-grid { width: 100%; margin-top: 24px; gap: 16px; }
  .gateway-top-grid .gateway-hero, .gateway-daily-fairs { padding: 28px 20px; border-radius: 22px; }
  .gateway-top-grid .page-hero__title h1 { font-size: clamp(32px, 11vw, 44px); }
  .gateway-daily-card { padding: 12px; }
  .home-top-grid { width: 100%; margin-top: 24px; gap: 16px; }
  .home-top-grid .page-hero--home, .featured-fair { padding: 28px 20px; border-radius: 22px; }
  .home-top-grid .page-hero__title h1 { font-size: clamp(32px, 11vw, 44px); }
  .home-hero__intro { margin-top: 24px; padding-top: 22px; }
  .home-hero__intro h2 { font-size: 27px; }
  .home-hero__intro p { font-size: 15px; }
  .home-continent-links { grid-template-columns: 1fr; margin-top: 20px; }
  .home-continent-links a:last-child { grid-column: auto; }
  .featured-fair h1,
.featured-fair h2 { font-size: clamp(27px, 8.5vw, 36px); }
  .featured-fair p { font-size: 15px; }
  .fair-detail-main { padding-top: 24px; }
  .fair-detail { border-radius: 22px; }
  .fair-detail > header, .fair-detail > section { padding: 30px 20px; }
  .fair-detail > header h1 { font-size: clamp(32px, 10vw, 45px); }
  .fair-detail > section p, .fair-detail > section li { font-size: 16px; }
  .language-selector { padding: 7px; border-radius: 16px; }
  .language-selector a, .language-selector span[aria-disabled="true"] { min-width: 33px; min-height: 32px; padding: 4px 7px; }
  .continent-article { padding: 30px 18px 0; border-radius: 22px 22px 8px 8px; }
  .continent-article > p { font-size: 16px; }
  .continent-article > section { display: block; margin-inline: -18px; padding: 34px 18px; }
  .country-map { width: 116px; height: 116px; margin: 0 0 22px; }
  .continent-article:not(.monthly-fairs-archive) > section:last-of-type + p { margin-inline: -18px; padding: 34px 18px 40px; font-size: 17px; }
  .language-gateway__grid { grid-template-columns: 1fr; }
  .gateway-article .language-card:last-child { grid-column: auto; }
  .gateway-article .language-card { display: grid; grid-template-columns: 48px 1fr; margin: 0; padding: 21px 18px; }
  .gateway-article > .gateway-summary { display: block; }
  .gateway-summary img { width: 116px; height: 116px; margin: 0 0 20px; }
  .gateway-summary > div { grid-column: 1; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__links { justify-content: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
