:root {
  --bg: #F7F6F2;
  --text: #1C1C1A;
  --text-muted: #55534C;
  --accent: #1F5C4A;
  --line: #DEDBD1;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --masthead-font: "Baloo 2", var(--font);
  --masthead-teal: #05393F;
  --masthead-orange: #AB451C;
}

* {
  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: left;
  margin-bottom: 8px;
}

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

.masthead__word {
  position: relative;
  display: inline-block;
  padding-bottom: 7px;
}

.masthead__word::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 0;
  height: 4px;
  border-radius: 2px;
}

.masthead__word--noticias {
  color: var(--masthead-teal);
}

.masthead__word--noticias::after {
  background: var(--masthead-teal);
}

.masthead__word--andinas {
  color: var(--masthead-orange);
  margin-left: 0.28em;
}

.masthead__word--andinas::after {
  background: var(--masthead-orange);
}

.masthead__peak {
  width: 0.62em;
  height: 0.62em;
  vertical-align: -0.03em;
  margin-right: 0.02em;
  fill: var(--masthead-orange);
}

.masthead__tagline {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 500;
  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);
}

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

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

/* Economia y Negocios: 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;
}

/* Finanzas: 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: left;
}

.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(247, 246, 242, 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;
}
