:root {
  --bg: #F5F0E8;
  --text: #211A15;
  --text-muted: #6B5F53;
  --accent: #B5482E;
  --line: #E2D8C7;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --masthead-navy: #14315A;
  --masthead-maroon: #7A1D22;
  --masthead-gold: #E0A23B;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
}

body {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 16px 32px;
}

/* Masthead */
.masthead {
  padding: 24px 0 20px;
  text-align: right;
  margin-bottom: 8px;
}

.masthead__wordmark {
  font-family: var(--font);
  font-size: 30px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.masthead__word {
  position: relative;
  display: inline-block;
}

.masthead__word--pulso {
  color: var(--masthead-navy);
}

.masthead__word--colombiano {
  color: var(--masthead-maroon);
  display: block;
  margin-top: 2px;
}

.masthead__pulse {
  width: 0.78em;
  height: 0.34em;
  vertical-align: 0.02em;
  margin: 0 0.02em;
}

.masthead__pulse polyline {
  fill: none;
  stroke: var(--masthead-gold);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.masthead__tagline {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 500;
  font-style: normal;
  font-family: var(--font);
  color: var(--text-muted);
}

/* Section headings */
.section {
  margin-top: 24px;
}

.section__heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

/* Stories */
.story {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.story:last-child {
  border-bottom: none;
}

.story:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
  border-radius: 4px;
}

.story__media img {
  width: 100%;
  display: block;
  border-radius: 4px;
  object-fit: cover;
  background: var(--line);
}

.story__label {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.story__title {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text);
}

.story__preview {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-muted);
}

.story__more {
  display: inline-block;
  white-space: nowrap;
  font-weight: 700;
  color: var(--accent);
}

/* Economia y Negocios: image stacked above headline */
.story--stacked .story__media {
  margin-bottom: 14px;
}

.story--stacked .story__media img {
  aspect-ratio: 16 / 10;
}

/* Finanzas: image to the left */
.story--left {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.story--left .story__media {
  flex: 0 0 40%;
  max-width: 40%;
}

.story--left .story__media img {
  aspect-ratio: 1 / 1;
}

.story--left .story__body {
  flex: 1 1 auto;
  min-width: 0;
}

/* Politica: image to the right */
.story--right {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  flex-direction: row-reverse;
}

.story--right .story__media {
  flex: 0 0 40%;
  max-width: 40%;
}

.story--right .story__media img {
  aspect-ratio: 1 / 1;
}

.story--right .story__body {
  flex: 1 1 auto;
  min-width: 0;
}

/* Small screens: keep side-by-side but tighten */
@media (max-width: 380px) {
  .story--left .story__media,
  .story--right .story__media {
    flex-basis: 34%;
    max-width: 34%;
  }

  .story__title {
    font-size: 17px;
  }

  .story__preview {
    font-size: 14px;
  }

  .masthead__wordmark {
    font-size: 25px;
  }
}

/* Footer */
.footer {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 2px solid var(--accent);
  text-align: right;
}

.footer p {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

/* Article overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.2, 0.85, 0.25, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.overlay--open {
  transform: translateY(0);
}

.overlay__topbar {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(env(safe-area-inset-top) + 14px) 16px 12px;
  background: rgba(245, 240, 232, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  z-index: 2;
}

.overlay__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.overlay__close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.overlay__media {
  width: 100%;
  max-height: 320px;
  aspect-ratio: 16 / 10;
  background: var(--line);
  overflow: hidden;
}

.overlay__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay__content {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 20px 56px;
}

.overlay__title {
  font-size: 25px;
  line-height: 1.28;
  font-weight: 800;
  margin: 0 0 18px;
  color: var(--text);
}

.overlay__article-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 18px;
}

.overlay__article-body p:last-child {
  margin-bottom: 0;
}
