/* ===================================================
   modern.css — jcborges.eng.br redesign
   Minimalist, clean, academic/professional aesthetic
   =================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 17px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: #1c1c1e;
  background: #ffffff;
  line-height: 1.65;
}

a {
  color: #2e7d32;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover { color: #1b5e20; text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

p { margin-bottom: 1em; }
ul, ol { padding-left: 1.5em; }
li { margin-bottom: 0.3em; }

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: #1a3a2a;
}

hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 2rem 0;
}

/* --- Buttons --- */
button {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  background: #1a3a2a;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
}
button:hover { background: #2e7d32; }

/* --- Anchor offset for sticky header --- */
[id] { scroll-margin-top: 68px; }

/* ===================================================
   HEADER & NAV
   =================================================== */

.site-header {
  background: #1a3a2a;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.22);
}

.header-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  height: 58px;
}

.site-brand {
  display: flex;
  align-items: baseline;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.brand-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}

/* === Top-level nav === */
.main-nav {
  display: flex;
  align-items: stretch;
  height: 58px;
}

/* Only the direct child ul — avoids leaking into .dropdown */
.main-nav > ul {
  list-style: none;
  display: flex;
  align-items: stretch;
  padding: 0;
  margin: 0;
}

.main-nav > ul > li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  padding: 0 0.85rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
  gap: 5px;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: #ffffff;
  background: rgba(255,255,255,0.07);
  border-bottom-color: #52b788;
  text-decoration: none;
}

/* Dropdown caret via CSS ::after — no inline text needed */
.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.45);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.has-dropdown:hover > a::after {
  transform: rotate(180deg);
  border-top-color: rgba(255,255,255,0.9);
}

/* === Dropdown panel === */
.has-dropdown { position: relative; }

/* display: none here must beat .main-nav > ul specificity — use !important as safety net */
.dropdown {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 215px;
  background: #fff;
  border-top: 2px solid #52b788;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
  z-index: 200;
  padding: 0.4rem 0;
  list-style: none;
}

.has-dropdown:hover > .dropdown {
  display: block !important;
}

.dropdown > li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dropdown > li > a {
  display: block;
  padding: 0.58rem 1.1rem;
  color: #1c1c1e;
  font-size: 0.85rem;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
  border: none;
  white-space: nowrap;
}

.dropdown > li > a:hover {
  background: #f0f7f1;
  color: #2e7d32;
  text-decoration: none;
}

/* === Hamburger button === */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.45rem;
  cursor: pointer;
  margin-left: 0.75rem;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  transition: background 0.15s;
  flex-shrink: 0;
}

.nav-toggle:hover { background: rgba(255,255,255,0.1); }

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================
   PAGE HERO / TITLE BAR
   =================================================== */

.page-hero {
  background: linear-gradient(135deg, #1a3a2a 0%, #2d6a4f 100%);
  color: #fff;
  padding: 2.5rem 1.5rem 2rem;
}

.page-hero .hero-inner {
  max-width: 980px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.page-hero h1 a { color: #a5d6a7; }
.page-hero h1 a:hover { color: #c8e6c9; text-decoration: underline; }

.page-hero .hero-subtitle {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}

.page-hero .hero-updated {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* Inner page title bar (simpler) */
.page-title-bar {
  background: #f4f7f4;
  border-bottom: 1px solid #e5e7eb;
  padding: 1.75rem 1.5rem 1.5rem;
}

.page-title-bar .title-inner {
  max-width: 980px;
  margin: 0 auto;
}

.page-title-bar h1 {
  font-size: 1.5rem;
  color: #1a3a2a;
}

/* ===================================================
   MAIN LAYOUT
   =================================================== */

.page-main {
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

/* Two-column home layout */
.home-layout {
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 2.5rem;
  align-items: start;
}

/* ===================================================
   CONTENT BLOCKS
   =================================================== */

.content-section {
  margin-bottom: 2.5rem;
}

.content-section h2 {
  font-size: 1.1rem;
  color: #1a3a2a;
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #e5e7eb;
}

.content-section p {
  font-size: 0.95rem;
  line-height: 1.75;
  text-align: justify;
}

/* Section navigation jump links */
.jump-nav {
  background: #f4f7f4;
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  padding: 0.75rem 1.1rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
}

.jump-nav .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  font-weight: 600;
}

.jump-nav a {
  font-size: 0.85rem;
  color: #2e7d32;
  font-weight: 500;
}

.jump-nav a:hover {
  text-decoration: underline;
}

/* ===================================================
   SIDEBAR (home page)
   =================================================== */

.sidebar {
  position: sticky;
  top: 76px;
}

.sidebar-card {
  background: #f4f7f4;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.4rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.75;
}

.sidebar-card h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.sidebar-card p { margin-bottom: 0.9rem; color: #374151; }
.sidebar-card p:last-child { margin-bottom: 0; }
.sidebar-card a { color: #2e7d32; }

.sidebar-card .divider {
  border: none;
  border-top: 1px solid #dde8dd;
  margin: 0.75rem 0;
}

.sidebar-map { margin-top: 1rem; }

.sidebar-map a img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

/* ===================================================
   PUBLICATION LISTS
   =================================================== */

.pub-section { margin-bottom: 2.5rem; }

.pub-section-title {
  font-size: 1.2rem;
  color: #1a3a2a;
  font-weight: 700;
  margin-bottom: 0.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #d1e8d4;
}

.pub-section-note {
  font-size: 0.82rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.pub-list {
  list-style: none;
  padding: 0;
}

.pub-list > li {
  padding: 0.9rem 0;
  border-bottom: 1px solid #f0f4f0;
  font-size: 0.88rem;
  line-height: 1.7;
  text-align: justify;
}

.pub-list > li:last-child { border-bottom: none; }

.pub-list a { color: #2e7d32; font-weight: 500; }
.pub-list a:hover { text-decoration: underline; }

/* ===================================================
   COMPUTATIONAL MODELS
   =================================================== */

.models-section { margin-bottom: 2.5rem; }

.models-section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.models-section h2 {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 400;
  margin-bottom: 1rem;
}

.models-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.model-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  background: #fff;
}

.model-card:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}

.model-card-img {
  background: #f4f7f4;
  padding: 1.25rem;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.model-card-img img {
  max-height: 70px;
  width: auto;
  margin: 0 auto;
}

.model-card-body {
  padding: 1rem 1.1rem 1.25rem;
}

.model-card-body h3 {
  font-size: 1.05rem;
  color: #1a3a2a;
  margin-bottom: 0.35rem;
}

.model-card-body p {
  font-size: 0.84rem;
  color: #555;
  margin-bottom: 0.85rem;
  line-height: 1.55;
}

.model-card-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-download {
  display: inline-block;
  background: #2e7d32;
  color: #fff !important;
  padding: 0.38rem 0.85rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.15s;
  letter-spacing: 0.02em;
}

.btn-download:hover {
  background: #1b5e20 !important;
  text-decoration: none !important;
}

.btn-more {
  font-size: 0.8rem;
  color: #2e7d32;
}

.models-section-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 2rem 0;
}

/* ===================================================
   COURSE / FILE LISTS
   =================================================== */

.course-block { margin-bottom: 2rem; }

.course-block h2 {
  font-size: 1.15rem;
  color: #1a3a2a;
  margin-bottom: 1.2rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #d1e8d4;
}

.lesson-group { margin-bottom: 1.25rem; }

.lesson-group h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  color: #6b7280;
}

.file-list {
  list-style: none;
  padding: 0;
}

.file-list li {
  padding: 0.38rem 0 0.38rem 1.1rem;
  position: relative;
  font-size: 0.875rem;
  border-bottom: 1px solid #f5f7f5;
}

.file-list li:last-child { border-bottom: none; }

.file-list li::before {
  content: "›";
  position: absolute;
  left: 0.1rem;
  color: #a5c8a7;
  font-weight: 700;
  font-size: 1rem;
}

.file-list a { color: #2e7d32; }
.file-list a:hover { text-decoration: underline; }

/* ===================================================
   VIDEO LISTS
   =================================================== */

.video-section { margin-bottom: 2.5rem; }

.video-section h2 {
  font-size: 1.15rem;
  color: #1a3a2a;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #d1e8d4;
}

.video-section h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  margin: 1rem 0 0.5rem;
}

.video-link-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.video-link-list li {
  padding: 0.38rem 0 0.38rem 1.1rem;
  position: relative;
  font-size: 0.875rem;
  border-bottom: 1px solid #f5f7f5;
}

.video-link-list li:last-child { border-bottom: none; }

.video-link-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #a5c8a7;
  font-size: 0.65rem;
  top: 0.6rem;
}

.video-link-list a { color: #2e7d32; }
.video-link-list a:hover { text-decoration: underline; }

.video-embed {
  margin: 1rem 0 1.5rem;
}

.video-embed iframe {
  max-width: 100%;
  border-radius: 6px;
  border: 0;
}

/* ===================================================
   CONTACT FORM
   =================================================== */

.contact-form { max-width: 640px; }

.contact-form fieldset {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  background: #fafcfa;
}

.contact-form legend {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  font-weight: 600;
  padding: 0 0.5rem;
  background: #fafcfa;
}

.contact-form p { margin-bottom: 0.85rem; }

.contact-form label {
  display: block;
  font-size: 0.84rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.3rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="number"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  font-size: 0.875rem;
  font-family: inherit;
  color: #1c1c1e;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2e7d32;
  box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 400;
  cursor: pointer;
  margin-bottom: 0;
}

.btn-submit {
  display: inline-block;
  background: #2e7d32;
  color: #fff;
  padding: 0.65rem 2.25rem;
  border: none;
  border-radius: 5px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
  margin-top: 0.5rem;
}

.btn-submit:hover { background: #1b5e20; }

/* ===================================================
   LINKS PAGE
   =================================================== */

.link-section { margin-bottom: 2.25rem; }

.link-section h2 {
  font-size: 1.1rem;
  color: #1a3a2a;
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #d1e8d4;
}

.link-list {
  list-style: none;
  padding: 0;
}

.link-list li {
  padding: 0.55rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid #f5f7f5;
}

.link-list li:last-child { border-bottom: none; }

.link-list a { font-weight: 500; color: #2e7d32; }
.link-list a:hover { text-decoration: underline; }

.link-desc { color: #6b7280; font-size: 0.84rem; }

/* ===================================================
   WEATHER STATION PAGE
   =================================================== */

.station-meta {
  background: #f4f7f4;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.station-meta h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.station-coords {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.station-coords span { color: #374151; }
.station-coords strong { color: #1a3a2a; }

.data-downloads {
  list-style: none;
  padding: 0;
}

.data-downloads li {
  padding: 0.42rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid #f0f4f0;
}

.data-downloads li:last-child { border-bottom: none; }
.data-downloads a { color: #2e7d32; }
.data-downloads a:hover { text-decoration: underline; }

.station-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.station-photo figure { margin: 0; }

.station-photo img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

.station-photo figcaption {
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 0.4rem;
  text-align: center;
  line-height: 1.4;
}

/* ===================================================
   PROGRAM DETAIL PAGES
   =================================================== */

.program-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.program-header img {
  height: 56px;
  width: auto;
}

.program-screenshots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.program-screenshots img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

.program-float-img {
  float: right;
  margin: 0 0 1.25rem 1.5rem;
  max-width: 200px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

/* ===================================================
   PHOTO / FIGURE
   =================================================== */

.photo-figure {
  margin: 1.5rem 0;
}

.photo-figure img {
  width: 100%;
  max-width: 480px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

.photo-figure figcaption {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.5rem;
  line-height: 1.4;
}

.photo-figure figcaption h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.1rem;
}

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

.site-footer {
  background: #1a3a2a;
  color: rgba(255,255,255,0.65);
  padding: 2rem 1.5rem;
  margin-top: auto;
}

.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy { font-size: 0.82rem; }

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* ===================================================
   RESPONSIVE
   =================================================== */

@media (max-width: 768px) {
  /* Show hamburger */
  .nav-toggle { display: flex; }

  /* Full-width dropdown overlay */
  .main-nav {
    display: none;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    height: auto;
    background: #1e4233;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.28);
    padding-bottom: 0.5rem;
    z-index: 99;
  }

  .main-nav.open { display: block; }

  .main-nav > ul {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav > ul > li {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav > ul > li > a {
    padding: 0.8rem 1.4rem;
    border-bottom: none;
    border-left: 3px solid transparent;
    height: auto;
    font-size: 0.9rem;
    justify-content: space-between;
  }

  .main-nav > ul > li > a:hover,
  .main-nav > ul > li > a.active {
    background: rgba(255,255,255,0.07);
    border-left-color: #52b788;
    border-bottom: none;
  }

  /* Disable CSS hover on mobile */
  .has-dropdown:hover > .dropdown { display: none !important; }

  /* Toggle via JS .open class */
  .has-dropdown.open > .dropdown { display: block !important; }

  /* Mobile dropdown: inline, indented */
  .dropdown {
    position: static !important;
    border-top: none;
    border-radius: 0;
    box-shadow: none;
    background: rgba(0,0,0,0.2);
    padding: 0.2rem 0;
    border-left: 3px solid #52b788;
    margin: 0 1.4rem;
    border-radius: 0 0 5px 5px;
  }

  .dropdown > li > a {
    color: rgba(255,255,255,0.7);
    padding: 0.6rem 1.1rem;
    font-size: 0.855rem;
    border: none;
  }

  .dropdown > li > a:hover {
    background: rgba(255,255,255,0.07);
    color: #fff;
  }

  .home-layout { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: 1fr; }
  .station-photos { grid-template-columns: 1fr; }
  .program-screenshots { grid-template-columns: 1fr; }
  .program-float-img { float: none; max-width: 100%; margin: 0 0 1.25rem 0; }
  .page-hero h1 { font-size: 1.35rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .sidebar { position: static; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 1rem; }
  .page-hero { padding: 1.75rem 1rem 1.5rem; }
  .page-main { padding: 1.5rem 1rem 2.5rem; }
  .home-layout { padding: 1.5rem 1rem 2.5rem; }
  .station-coords { gap: 1rem; }
}
