/* Pulso — outletbr.digital | tabloid-quick, editorial-red-accent */
:root {
  --red: #C41E3A;
  --red-dark: #9B1830;
  --red-soft: #FDE8EC;
  --ink: #121212;
  --ink-soft: #3A3A3A;
  --muted: #6B6B6B;
  --bg: #F7F5F3;
  --bg-card: #FFFFFF;
  --border: #E0DCD8;
  --overlay: rgba(18, 18, 18, 0.62);
  --container: 720px;
  --radius-pill: 999px;
  --radius-card: 28px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Work Sans", system-ui, sans-serif;
  --line-tight: 1.2;
  --line-body: 1.45;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: var(--line-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

/* Header — compact topbar */
.site-header {
  background: var(--bg-card);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
  flex-wrap: wrap;
}

.site-logo {
  font-family: var(--font-head);
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  line-height: 1;
}

.site-logo:hover { color: var(--red-dark); }

.tag-nav {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  flex: 1;
}

.tag-nav a {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  background: var(--red-soft);
  color: var(--red-dark);
  text-decoration: none;
}

.tag-nav a:hover { background: var(--red); color: #fff; }

.nav {
  display: flex;
  gap: var(--space-4);
  margin-left: auto;
}

.nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
}

.nav a.is-active,
.nav a:hover { color: var(--red); }

.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  padding: var(--space-1) var(--space-3);
  font-size: 1rem;
  cursor: pointer;
  margin-left: auto;
}

/* Hero — stacked headlines, no image */
.hero-stacked {
  padding: var(--space-5) 0 var(--space-4);
  border-bottom: 1px solid var(--border);
}

.hero-stacked .container { padding-left: var(--space-4); padding-right: var(--space-4); }

.hero-stacked h1,
.hero-stacked h2,
.hero-stacked h3 {
  font-family: var(--font-head);
  line-height: var(--line-tight);
  font-weight: 700;
  text-transform: uppercase;
}

.hero-stacked h1 { font-size: 2rem; margin-bottom: var(--space-2); }
.hero-stacked h2 { font-size: 1.375rem; margin-bottom: var(--space-2); }
.hero-stacked h3 { font-size: 1.0625rem; color: var(--ink-soft); }

.hero-stacked a {
  color: inherit;
  text-decoration: none;
}

.hero-stacked h1 a { color: var(--red); }
.hero-stacked h1 a:hover { color: var(--red-dark); }

.hero-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: var(--space-3);
}

/* Bento mosaic — image overlay cards */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  gap: var(--space-3);
  padding: var(--space-4) 0;
}

.bento-tile {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 140px;
}

.bento-tile--hero { grid-column: span 4; grid-row: span 2; min-height: 280px; }
.bento-tile--side { grid-column: span 2; min-height: 134px; }
.bento-tile--wide { grid-column: span 3; min-height: 160px; }

.bento-tile a {
  display: block;
  height: 100%;
  color: #fff;
  text-decoration: none;
}

.bento-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}

.bento-tile--hero img { aspect-ratio: auto; min-height: 280px; }

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--overlay) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-3);
}

.bento-cat {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--red);
  color: #fff;
  padding: 2px var(--space-2);
  border-radius: var(--radius-pill);
  align-self: flex-start;
  margin-bottom: var(--space-2);
}

.bento-overlay h2,
.bento-overlay h3 {
  font-family: var(--font-head);
  font-size: 1.125rem;
  line-height: var(--line-tight);
  text-transform: uppercase;
}

.bento-tile--hero .bento-overlay h2 { font-size: 1.5rem; }

/* Compact dense list */
.feed-dense { padding: var(--space-4) 0 var(--space-5); }

.section-title {
  font-family: var(--font-head);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--red);
}

.feed-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border);
}

.feed-item:last-child { border-bottom: none; }

.feed-item a {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  color: inherit;
  text-decoration: none;
  width: 100%;
}

.feed-item img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-card);
  object-fit: cover;
  flex-shrink: 0;
}

.feed-item h3 {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  line-height: var(--line-tight);
  text-transform: uppercase;
  margin-bottom: var(--space-1);
}

.feed-item p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.35;
}

.feed-meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: var(--space-1);
}

.feed-cat {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
}

/* Home sections */
.home-block {
  padding: var(--space-4) 0;
  border-top: 1px solid var(--border);
}

.home-block h2 {
  font-family: var(--font-head);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  color: var(--ink);
}

.home-block p {
  margin-bottom: var(--space-3);
  color: var(--ink-soft);
}

.home-block p:last-child { margin-bottom: 0; }

.picks ul {
  list-style: none;
  padding: 0;
}

.picks li {
  padding: var(--space-2) 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.875rem;
}

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

/* Page content */
.page-content {
  padding: var(--space-5) 0;
}

.page-content h1 {
  font-family: var(--font-head);
  font-size: 2rem;
  text-transform: uppercase;
  line-height: var(--line-tight);
  margin-bottom: var(--space-4);
}

.page-content h2 {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  text-transform: uppercase;
  margin: var(--space-5) 0 var(--space-3);
  color: var(--red-dark);
}

.page-content p,
.page-content li {
  margin-bottom: var(--space-3);
  color: var(--ink-soft);
}

.page-content ul { padding-left: var(--space-5); }

/* Article page — image heavy */
.article-page { padding: var(--space-4) 0 var(--space-5); }

.article-cat {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: var(--space-2);
}

.article-page h1 {
  font-family: var(--font-head);
  font-size: 2.125rem;
  line-height: var(--line-tight);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.article-dek {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-4);
  line-height: 1.4;
}

.byline {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  margin-bottom: var(--space-3);
}

.byline img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--red-soft);
}

.byline strong {
  display: block;
  font-size: 0.875rem;
}

.byline span {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
}

.article-meta {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border);
}

.article-hero-img {
  margin: 0 calc(-1 * var(--space-4)) var(--space-4);
  border-radius: 0;
}

.article-hero-img img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.article-body p {
  margin-bottom: var(--space-4);
  color: var(--ink-soft);
}

.article-body h2 {
  font-family: var(--font-head);
  font-size: 1.125rem;
  text-transform: uppercase;
  margin: var(--space-5) 0 var(--space-3);
  color: var(--ink);
}

.article-inline-img {
  margin: var(--space-4) 0;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.related {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 2px solid var(--red);
}

.related h2 {
  font-family: var(--font-head);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.related ul { list-style: none; }

.related li {
  padding: var(--space-2) 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
}

/* Contact form */
.contact-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.875rem;
  margin-bottom: var(--space-3);
  background: var(--bg-card);
}

.contact-form textarea {
  border-radius: var(--radius-card);
  min-height: 120px;
  resize: vertical;
}

.btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  border: none;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.btn:hover { background: var(--red-dark); color: #fff; }

/* Footer — minimal single */
.site-footer {
  background: var(--ink);
  color: #ccc;
  padding: var(--space-4) 0;
  font-size: 0.8125rem;
  margin-top: var(--space-5);
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  justify-content: space-between;
}

.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--red-soft); }

.footer-nav {
  display: flex;
  gap: var(--space-4);
}

.footer-nav a {
  color: #aaa;
  font-size: 0.75rem;
}

/* Cookie corner popup */
.cookie-corner {
  position: fixed;
  bottom: var(--space-4);
  right: var(--space-4);
  max-width: 280px;
  background: var(--bg-card);
  border: 2px solid var(--red);
  border-radius: var(--radius-card);
  padding: var(--space-4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 200;
  font-size: 0.8125rem;
}

.cookie-corner[hidden] { display: none; }

.cookie-corner p { margin-bottom: var(--space-3); color: var(--ink-soft); line-height: 1.4; }

.cookie-corner button {
  background: var(--red);
  color: #fff;
  border: none;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
}

.cookie-corner button:hover { background: var(--red-dark); }

/* Articles listing */
.articles-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-4) 0;
}

.article-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.article-card a {
  display: grid;
  grid-template-columns: 120px 1fr;
  color: inherit;
  text-decoration: none;
}

.article-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.article-card-body {
  padding: var(--space-3);
}

.article-card-body h2 {
  font-family: var(--font-head);
  font-size: 1rem;
  text-transform: uppercase;
  line-height: var(--line-tight);
  margin-bottom: var(--space-2);
}

.article-card-body p {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 640px) {
  .tag-nav { display: none; }
  .menu-toggle { display: block; }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: var(--space-2);
    padding: var(--space-3) 0;
    border-top: 1px solid var(--border);
  }

  .nav.is-open { display: flex; }

  .bento {
    grid-template-columns: 1fr;
  }

  .bento-tile--hero,
  .bento-tile--side,
  .bento-tile--wide {
    grid-column: span 1;
    min-height: 180px;
  }

  .article-card a { grid-template-columns: 72px 1fr; }
  .article-card img { width: 72px; height: 72px; }

  .hero-stacked h1 { font-size: 1.5rem; }
  .article-page h1 { font-size: 1.625rem; }

  .site-footer .container { flex-direction: column; text-align: center; }
}
