:root {
  --ink: #111820;
  --ink-soft: #26323d;
  --paper: #f5f2ec;
  --surface: #ffffff;
  --surface-alt: #ebe6dc;
  --accent: #b86432;
  --accent-dark: #8f4520;
  --gold: #c9a45d;
  --muted: #6e777f;
  --line: rgba(17, 24, 32, .12);
  --shadow: 0 18px 50px rgba(17, 24, 32, .10);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 85% 6%, rgba(201,164,93,.13), transparent 26rem),
    var(--paper);
  color: var(--ink-soft);
  font: 400 16px/1.72 "Lato", Arial, sans-serif;
  overflow-x: hidden;
}
body.custom-background { background: var(--paper) !important; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus {
  z-index: 99999; top: 12px; left: 12px; width: auto; height: auto;
  padding: 12px 16px; clip: auto; background: #fff; color: #111; border-radius: 4px;
}
.site { min-height: 100vh; }
.site-header { background: rgba(255,255,255,.94); border-bottom: 1px solid var(--line); }
.top-menu-wrap {
  position: sticky; top: 0; z-index: 100;
  background: rgba(17,24,32,.97);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 6px 25px rgba(0,0,0,.14);
}
.main-navigation { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.main-navigation .menu {
  display: flex; align-items: center; gap: 4px; margin: 0; padding: 0;
  list-style: none;
}
.main-navigation a {
  display: block; padding: 15px 18px; color: #f6f2e9;
  font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
}
.main-navigation a:hover, .main-navigation .current-menu-item > a {
  color: #fff; background: var(--accent);
}
.menu-toggle { display: none; }
.site-branding {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 310px; display: grid; place-content: center;
  padding: 66px 24px 70px; text-align: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.82)),
    url("images1/people-2-people.jpg") center 34% / cover no-repeat;
}
.site-branding::before {
  content: ""; position: absolute; z-index: -1; inset: 0;
  background:
    linear-gradient(90deg, transparent 0 9%, rgba(184,100,50,.16) 9% 9.2%, transparent 9.2% 90%, rgba(184,100,50,.16) 90% 90.2%, transparent 90.2%),
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(245,242,236,.35));
}
.site-branding::after {
  content: "IDEIAS • CONTEXTO • VIDA DIGITAL";
  display: block; margin-top: 20px; color: var(--accent);
  font-size: 11px; font-weight: 900; letter-spacing: .28em;
}
.site-title {
  margin: 0; font: 700 clamp(52px, 9vw, 104px)/.88 "Playfair Display", Georgia, serif;
  letter-spacing: -.055em;
}
.site-title a { color: var(--ink); text-shadow: 0 2px 0 rgba(255,255,255,.8); }
.site-description {
  max-width: 650px; margin: 22px auto 0; color: #4e5a63;
  font-size: clamp(15px, 2vw, 18px); font-weight: 700; letter-spacing: .025em;
}
.site-content {
  padding: 72px 24px 90px;
  background: linear-gradient(180deg, #f2eee6 0%, #f7f5f0 42%, #f2eee6 100%);
}
.site-content-wrap {
  display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 42px;
  max-width: 1240px; margin: 0 auto;
}
.content-area, .site-main { min-width: 0; }
.archive-intro {
  position: relative; margin: 0 0 34px; padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
}
.archive-intro::after {
  content: ""; position: absolute; bottom: -1px; left: 0;
  width: 90px; height: 3px; background: var(--accent);
}
.archive-kicker {
  display: block; margin-bottom: 8px; color: var(--accent);
  font-size: 11px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase;
}
.archive-intro h2 {
  max-width: 720px; margin: 0; color: var(--ink);
  font: 700 clamp(30px, 4vw, 48px)/1.04 "Playfair Display", Georgia, serif;
  letter-spacing: -.03em;
}
.archive-intro p { max-width: 700px; margin: 13px 0 0; color: var(--muted); }
.posts-wrap {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px;
}
.post {
  position: relative; min-width: 0; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: 3px;
  box-shadow: 0 8px 28px rgba(17,24,32,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.post:hover {
  transform: translateY(-5px); border-color: rgba(184,100,50,.42);
  box-shadow: var(--shadow);
}
.post > a:first-child { display: block; overflow: hidden; background: #dedbd5; }
.post > a:first-child img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: center;
  filter: saturate(.92) contrast(1.02);
  transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}
.post:hover > a:first-child img { transform: scale(1.035); filter: saturate(1) contrast(1.04); }
.entry-content { padding: 24px 25px 26px; }
.entry-meta { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.entry-title {
  margin: 9px 0 18px; color: var(--ink);
  font: 700 clamp(21px, 2.2vw, 29px)/1.16 "Playfair Display", Georgia, serif;
  letter-spacing: -.02em;
}
.entry-title a { color: inherit; }
.entry-title a:hover { color: var(--accent-dark); }
.bottom-meta { padding-top: 15px; border-top: 1px solid var(--line); }
.cat-links a { color: var(--accent-dark); font-weight: 900; }
.post:first-child {
  grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, .75fr);
  min-height: 430px; background: var(--ink);
}
.post:first-child > a:first-child { height: 100%; }
.post:first-child > a:first-child img { height: 100%; aspect-ratio: auto; }
.post:first-child .entry-content { display: flex; align-items: center; padding: clamp(30px,4vw,52px); }
.post:first-child .entry-title { color: #fff; font-size: clamp(30px,3.3vw,48px); }
.post:first-child .entry-meta { color: #b9c1c8; }
.post:first-child .bottom-meta { border-color: rgba(255,255,255,.14); }
.navigation.pagination { grid-column: 1 / -1; margin-top: 40px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.page-numbers {
  display: inline-grid; min-width: 42px; height: 42px; place-items: center;
  padding: 0 12px; background: #fff; border: 1px solid var(--line);
  color: var(--ink); font-weight: 800;
}
.page-numbers.current, .page-numbers:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.widget-area-sidebar { min-width: 0; }
.widget {
  margin: 0 0 24px; padding: 25px; background: rgba(255,255,255,.82);
  border: 1px solid var(--line); box-shadow: 0 8px 28px rgba(17,24,32,.05);
}
.widget-title {
  position: relative; margin: 0 0 20px; padding-bottom: 13px;
  color: var(--ink); font: 700 20px/1.2 "Playfair Display", Georgia, serif;
}
.widget-title::after { content:""; position:absolute; bottom:0; left:0; width:46px; height:3px; background:var(--accent); }
.widget ul { margin: 0; padding: 0; list-style: none; }
.widget li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.widget li:last-child { border-bottom: 0; }
.widget a:hover { color: var(--accent-dark); }
.search-form { display: flex; }
.search-field { min-width: 0; width: 100%; padding: 12px; border: 1px solid var(--line); background: #fff; }
.search-submit { padding: 12px 15px; border: 0; background: var(--ink); color: #fff; font-weight: 800; }
.site-footer { margin-top: 0; background: var(--ink); color: #b8c0c7; }
.site-footer .widget-area {
  max-width: 1240px; margin: 0 auto; padding: 42px 24px 20px;
}
.site-info {
  max-width: 1240px; margin: 0 auto; padding: 22px 24px 30px;
  border-top: 1px solid rgba(255,255,255,.1); text-align: center; font-size: 13px;
}
.site-footer a { color: #fff; }
@media (max-width: 980px) {
  .site-content-wrap { grid-template-columns: 1fr; }
  .widget-area-sidebar { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
  .widget { margin: 0; }
}
@media (max-width: 720px) {
  html, body, .site, .site-header, .site-content, .site-content-wrap,
  .content-area, .site-main, .posts-wrap, .post, .entry-content {
    width: 100%; max-width: 100%; min-width: 0;
  }
  .main-navigation { padding: 0 12px; overflow-x: auto; }
  .main-navigation .menu { min-width: max-content; }
  .main-navigation a { padding: 13px 14px; }
  .site-branding { min-height: 250px; padding: 48px 18px 52px; }
  .site-description, .site-branding::after, .archive-intro h2,
  .archive-intro p, .entry-title, .entry-title a {
    max-width: 100%; white-space: normal; overflow-wrap: anywhere; word-break: normal;
  }
  .site-content { padding: 46px 15px 64px; }
  .posts-wrap { grid-template-columns: 1fr; gap: 20px; }
  .post:first-child { display: block; min-height: 0; }
  .post:first-child > a:first-child { height: auto; }
  .post:first-child > a:first-child img { height: auto; aspect-ratio: 16/10; }
  .post:first-child .entry-content { display: block; padding: 25px 22px 28px; }
  .entry-content { padding: 20px; }
  .widget-area-sidebar { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .site-title { font-size: 48px; }
  .site-branding::after { letter-spacing: .15em; }
  .archive-intro h2 { font-size: 31px; }
}


/* Static year archives */
.archive .site-content > .content-area {
  width: min(1240px, 100%);
  margin: 0 auto;
}
.archive .page-header {
  position: relative;
  margin: 0 0 34px;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
}
.archive .page-header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 90px;
  height: 3px;
  background: var(--accent);
}
.archive .category-title {
  margin: 0;
  color: var(--ink);
  font: 700 clamp(30px, 4vw, 48px)/1.04 "Playfair Display", Georgia, serif;
  letter-spacing: -.03em;
}
