@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=JetBrains+Mono:wght@400;600&display=swap');
/* =========================================================
   jOTa — home (miolo central) stylesheet
   Carregado SO na home. Estilos do conteudo das 5 secoes.
   Paleta completa escopada em .jota-home (jota.css so tem subset).
   .jota-home cria seu proprio fundo escuro (o painel do site e
   pergaminho claro) com bleed sobre o padding do .content-box .pb.
   ========================================================= */
.jota-home{
  --navy:#0b1322; --navy-2:#131e36; --navy-3:#1c2a48; --stone:#2a3552;
  --parchment:#f1e3bf; --parchment-2:#e8d6a4; --parchment-3:#ddc78b;
  --ink:#2a1a0e; --ink-soft:#4a2f1c;
  --gold:#c9a85a; --gold-hi:#efd58a; --gold-lo:#8e7233;
  --crimson:#8a1f2b; --crimson-hi:#a8313e; --crimson-lo:#5d141c;
  --teal:#2d9b8e; --teal-hi:#54bdaf;
  --green-live:#4caf6f; --discord:#5865f2;
  --silver:#c4c7cb; --bronze:#b08144;

  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--parchment);
  font-size: 16px; line-height: 1.45;
  /* preenche a area do .content-box .pb (cancela o padding 13/14) */
  margin: -13px -14px;
  padding: 26px 22px 38px;
  background: radial-gradient(1100px 600px at 50% -160px, var(--navy-3) 0%, var(--navy) 60%) var(--navy);
  border-radius: 2px;
  -webkit-font-smoothing: antialiased;
}
.jota-home *{ box-sizing: border-box; }
@keyframes jota-pulse{
  0%,100%{ box-shadow: 0 0 0 0 rgba(76,175,111,.6) }
  50%   { box-shadow: 0 0 0 8px rgba(76,175,111,0) }
}
.jota-home .content{ min-width: 0 }
.jota-home .content section{ margin-bottom: 40px }
.jota-home .content section:last-child{ margin-bottom: 6px }

/* ----- cabecalho de secao ----- */
.jota-home .section-head{ text-align: center; margin-bottom: 20px }
.jota-home .section-head .section-eyebrow{
  font-family:"Cinzel",serif; font-weight:700;
  font-size: 10px; letter-spacing: .35em;
  color: var(--gold); text-transform: uppercase;
  display: inline-block;
}
.jota-home .section-head .section-eyebrow::before,
.jota-home .section-head .section-eyebrow::after{
  content: "\2726"; margin: 0 .7em; color: rgba(201,168,90,.5);
}
.jota-home .section-head .section-title{
  font-family:"Cinzel",serif; font-weight:700;
  font-size: clamp(18px, 2.4vw, 24px);
  letter-spacing: .14em; color: var(--parchment);
  margin: 5px 0;
}
.jota-home .section-head .section-sub{
  font-style: italic; font-size: 14.5px;
  color: rgba(241,227,191,.55);
  max-width: 580px; margin: 0 auto;
}

/* ===== 1 — NOTICIAS ===== */
.jota-home .news-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px }
.jota-home .news-grid .news-card{
  background: var(--navy-2);
  border: 1px solid rgba(201,168,90,.2);
  border-radius: 2px; overflow: hidden;
  transition: all .2s ease;
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--parchment);
}
.jota-home .news-grid .news-card:hover{
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,.35);
}
.jota-home .news-thumb{ height: 120px; position: relative; overflow: hidden }
.jota-home .news-thumb.bg1{ background: linear-gradient(135deg, var(--crimson-lo) 0%, var(--navy-3) 100%) }
.jota-home .news-thumb.bg2{ background: linear-gradient(135deg, var(--teal) 0%, var(--navy-3) 100%) }
.jota-home .news-thumb.bg3{ background: linear-gradient(135deg, var(--gold-lo) 0%, var(--navy-3) 100%) }
.jota-home .news-thumb::after{
  content:""; position:absolute; inset:0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,.1), transparent 50%);
}
.jota-home .news-thumb .tag{
  position: absolute; top: 10px; left: 10px;
  font-family: "Cinzel", serif;
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  padding: 3px 7px; background: rgba(11,19,34,.7);
  color: var(--gold-hi); border: 1px solid rgba(201,168,90,.4);
  border-radius: 1px; font-weight: 700;
}
.jota-home .news-body{ padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column }
.jota-home .news-body .news-date{
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px; color: rgba(241,227,191,.45);
  letter-spacing: .06em; margin-bottom: 6px;
}
.jota-home .news-card .news-title{
  font-family: "Cinzel", serif; font-weight: 600;
  font-size: 15px; color: var(--parchment);
  letter-spacing: .04em; line-height: 1.3; margin: 0 0 8px;
}
.jota-home .news-grid .news-card:hover .news-title{ color: var(--gold-hi) }
.jota-home .news-body .news-excerpt{
  font-size: 13.5px; color: rgba(241,227,191,.65);
  margin: 0; line-height: 1.45; flex: 1;
}

/* ===== 2 — PODIUM TOP 3 ===== */
.jota-home .podium-mini{ display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 10px; align-items: end; margin-bottom: 12px }
.jota-home .podium-mini-card{
  position: relative;
  background:
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(0,0,0,.018) 2px 4px),
    linear-gradient(180deg, var(--parchment) 0%, var(--parchment-2) 100%);
  color: var(--ink);
  padding: 18px 10px 14px; text-align: center; border-radius: 2px;
  box-shadow: 0 6px 16px rgba(0,0,0,.35), inset 0 0 0 1px rgba(201,168,90,.35);
}
.jota-home .podium-mini-card::before{
  content:""; position:absolute; inset:5px;
  border: 1px solid rgba(142,114,51,.45); pointer-events:none;
}
.jota-home .podium-mini-card.first{ padding-top: 26px; padding-bottom: 16px }
.jota-home .podium-mini-card.first::before{ border-color: var(--gold); border-width: 2px }
.jota-home .podium-mini-card.second::before{ border-color: var(--silver) }
.jota-home .podium-mini-card.third::before { border-color: var(--bronze) }
.jota-home .podium-mini-card .badge{
  font-family: "Cinzel", serif; font-weight: 700;
  font-size: 11px; letter-spacing: .3em;
  padding: 3px 7px; border-radius: 1px;
  display: inline-block; margin-bottom: 4px;
}
.jota-home .podium-mini-card.first .badge { background: var(--gold); color: var(--navy) }
.jota-home .podium-mini-card.second .badge{ background: var(--silver); color: var(--navy) }
.jota-home .podium-mini-card.third .badge { background: var(--bronze); color: var(--parchment) }
.jota-home .podium-mini-card .crown{
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 22px; filter: drop-shadow(0 2px 4px rgba(0,0,0,.5));
}
.jota-home .podium-mini-card .outfit{
  width: 72px; height: 72px; margin: 0 auto 6px;
  display: flex; align-items: flex-end; justify-content: center;
}
.jota-home .podium-mini-card.first .outfit{ width: 84px; height: 84px }
.jota-home .podium-mini-card .outfit img{
  image-rendering: pixelated;
  transform: scale(1.5); transform-origin: center bottom;
  max-width:100%; max-height:100%;
}
.jota-home .podium-mini-card .name{
  font-family: "Cinzel", serif; font-weight: 600;
  font-size: 13px; color: var(--ink); letter-spacing: .04em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.jota-home .podium-mini-card .voc{ font-style: italic; font-size: 11.5px; color: var(--ink-soft); margin-bottom: 6px }
.jota-home .podium-mini-card .lvl{
  font-family: "Cinzel", serif; font-weight: 700;
  font-size: 16px; color: var(--gold-lo);
  border-top: 1px dashed rgba(142,114,51,.4); padding-top: 6px;
}
.jota-home .podium-mini-card.first .lvl{ font-size: 18px }
.jota-home .podium-mini-card .lvl small{
  font-family: "Cinzel", serif; font-size: 8.5px;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600; display: block;
}
.jota-home .view-all{ text-align: center; margin-top: 10px }
.jota-home .view-all a{
  font-family: "Cinzel", serif; font-size: 10px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--gold); font-weight: 600;
  border-bottom: 1px solid rgba(201,168,90,.3); padding-bottom: 3px;
  text-decoration: none;
}
.jota-home .view-all a:hover{ color: var(--gold-hi); border-color: var(--gold) }

/* ===== 3 — FEED DE CONQUISTAS ===== */
.jota-home .feed-wrap{
  background: var(--navy-2); border: 1px solid rgba(201,168,90,.25);
  border-radius: 2px; box-shadow: 0 8px 22px rgba(0,0,0,.35); overflow: hidden;
}
.jota-home .feed-header{
  padding: 12px 18px; border-bottom: 1px solid rgba(201,168,90,.15);
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, var(--navy-3), var(--navy-2));
}
.jota-home .feed-header h3{
  font-family: "Cinzel", serif; font-size: 11.5px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--gold);
  margin: 0; display: flex; align-items: center; gap: 10px;
}
.jota-home .feed-header h3 .live-dot{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-live); box-shadow: 0 0 6px var(--green-live);
  animation: jota-pulse 2s infinite;
}
.jota-home .feed-header .count{
  font-family: "Cinzel", serif; font-size: 10px; letter-spacing: .14em;
  color: rgba(241,227,191,.5); font-style: italic; font-weight: 400; text-transform: none;
}
.jota-home .feed-list{ list-style: none; margin: 0; padding: 0 }
.jota-home .feed-item{
  display: grid; grid-template-columns: 64px 32px 1fr auto;
  align-items: center; gap: 12px; padding: 11px 18px;
  border-bottom: 1px dashed rgba(201,168,90,.12); transition: background .15s ease;
}
.jota-home .feed-item:hover{ background: rgba(201,168,90,.04) }
.jota-home .feed-item:last-child{ border-bottom: none }
.jota-home .feed-item .ago{ font-family: "JetBrains Mono", monospace; font-size: 10.5px; color: rgba(241,227,191,.45) }
.jota-home .feed-item .icon{
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,90,.08); border: 1px solid rgba(201,168,90,.2);
}
.jota-home .feed-item .icon svg{ width: 14px; height: 14px }
.jota-home .feed-item .icon.lvlup{ color: var(--gold-hi); background: rgba(201,168,90,.12); border-color: rgba(201,168,90,.4) }
.jota-home .feed-item .icon.kill { color: var(--crimson-hi); background: rgba(138,31,43,.15); border-color: rgba(138,31,43,.4) }
.jota-home .feed-item .icon.drop { color: var(--teal-hi); background: rgba(45,155,142,.12); border-color: rgba(45,155,142,.4) }
.jota-home .feed-item .icon.guild{ color: var(--gold); background: rgba(201,168,90,.1); border-color: rgba(201,168,90,.3) }
.jota-home .feed-item .text{ font-size: 14px; color: var(--parchment); line-height: 1.4 }
.jota-home .feed-item .text strong{ font-family: "Cinzel", serif; font-weight: 600; font-size: 13px; letter-spacing: .04em; color: var(--gold-hi) }
.jota-home .feed-item .text em{ font-style: italic; color: rgba(241,227,191,.65) }
.jota-home .feed-item .ribbon{
  font-family: "Cinzel", serif; font-size: 8.5px; letter-spacing: .22em;
  text-transform: uppercase; padding: 3px 7px; border-radius: 1px; font-weight: 700; white-space: nowrap;
}
.jota-home .feed-item .ribbon.rare{ background: var(--crimson); color: var(--parchment) }
.jota-home .feed-item .ribbon.epic{ background: var(--gold); color: var(--navy) }

/* ===== 4 — BOSS DA SEMANA ===== */
.jota-home .boss-wrap{
  display: grid; grid-template-columns: 240px 1fr;
  background: linear-gradient(135deg, var(--navy-3) 0%, var(--stone) 50%, var(--crimson-lo) 200%);
  border: 1px solid rgba(201,168,90,.3); border-radius: 2px; overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.4); position: relative;
}
.jota-home .boss-wrap::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(80% 100% at 20% 50%, rgba(138,31,43,.25), transparent 60%),
    radial-gradient(60% 80% at 100% 100%, rgba(255,80,30,.18), transparent 60%);
  pointer-events: none;
}
.jota-home .boss-art{
  position: relative;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,80,30,.25), transparent 70%),
    linear-gradient(180deg, var(--navy) 0%, var(--crimson-lo) 100%);
  display: flex; align-items: center; justify-content: center;
  min-height: 220px; overflow: hidden;
}
.jota-home .boss-art svg{ width: 80%; height: 80%; filter: drop-shadow(0 0 24px rgba(255,80,30,.6)) }
.jota-home .boss-art .glow{
  position: absolute; inset: 20%;
  background: radial-gradient(circle, rgba(255,140,40,.4) 0%, transparent 60%);
  animation: bossglow 3s ease-in-out infinite;
}
@keyframes bossglow{
  0%,100%{ opacity: .4; transform: scale(.9) }
  50%   { opacity: .8; transform: scale(1.1) }
}
.jota-home .boss-content{ padding: 22px; position: relative; z-index: 2 }
.jota-home .boss-content .boss-eyebrow{
  font-family: "Cinzel", serif; font-size: 10px; letter-spacing: .3em;
  color: var(--crimson-hi); text-transform: uppercase; font-weight: 700; margin-bottom: 6px;
}
.jota-home .boss-content .boss-name{
  font-family: "Cinzel", serif; font-weight: 700;
  font-size: 30px; letter-spacing: .08em; color: var(--parchment);
  margin: 0 0 4px; text-shadow: 0 2px 12px rgba(138,31,43,.4);
}
.jota-home .boss-content .boss-tag{ font-style: italic; color: rgba(241,227,191,.65); font-size: 14px; margin-bottom: 16px }
.jota-home .boss-stats{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px }
.jota-home .boss-stat{ display: flex; flex-direction: column; gap: 2px }
.jota-home .boss-stat .boss-stat-label{
  font-family: "Cinzel", serif; font-size: 9px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--gold); font-weight: 600;
}
.jota-home .boss-stat .boss-stat-value{ font-family: "Cinzel", serif; font-weight: 700; font-size: 14px; color: var(--parchment) }
.jota-home .boss-stat .boss-stat-value.countdown{ font-family: "JetBrains Mono", monospace; color: var(--crimson-hi); font-size: 15px }
.jota-home .boss-rewards{ display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px }
.jota-home .boss-rewards .reward{
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(201,168,90,.1); border: 1px solid rgba(201,168,90,.3);
  padding: 3px 9px; border-radius: 14px; font-size: 12.5px; color: var(--parchment);
}
.jota-home .boss-rewards .reward .gem{ width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 4px var(--teal) }
.jota-home .boss-content .boss-cta{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Cinzel", serif; font-size: 10.5px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--navy);
  background: linear-gradient(180deg, var(--gold), var(--gold-lo));
  padding: 8px 16px; border-radius: 2px; font-weight: 700;
  box-shadow: 0 4px 10px rgba(201,168,90,.3); text-decoration: none;
}
.jota-home .boss-content .boss-cta:hover{ background: linear-gradient(180deg, var(--gold-hi), var(--gold)) }

/* ===== 5 — POR QUE O JOTA ===== */
.jota-home .diff-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px }
.jota-home .diff-grid .diff-card{
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy-3) 100%);
  border: 1px solid rgba(201,168,90,.25); border-radius: 2px;
  padding: 18px; transition: all .2s ease; position: relative; overflow: hidden;
}
.jota-home .diff-grid .diff-card::before{
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .2s ease;
}
.jota-home .diff-grid .diff-card:hover{ border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,.4) }
.jota-home .diff-grid .diff-card:hover::before{ opacity: 1 }
.jota-home .diff-card .icon{
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,90,.1); border: 1px solid rgba(201,168,90,.3);
  border-radius: 50%; margin-bottom: 12px;
}
.jota-home .diff-card .icon svg{ width: 20px; height: 20px; color: var(--gold-hi) }
.jota-home .diff-grid .diff-card h3{
  font-family: "Cinzel", serif; font-weight: 700; font-size: 12.5px;
  letter-spacing: .15em; text-transform: uppercase; color: var(--parchment); margin: 0 0 8px;
}
.jota-home .diff-card p{ font-size: 14px; color: rgba(241,227,191,.7); line-height: 1.5; margin: 0 0 10px }
.jota-home .diff-card .more{
  font-family: "Cinzel", serif; font-size: 9.5px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); font-weight: 600; text-decoration: none;
}
.jota-home .diff-grid .diff-card:hover .more{ color: var(--gold-hi) }

/* ===== overrides p/ vencer regras vazadas do .content-box .pb ===== */
.content-box .pb .jota-home a{ color: inherit; text-decoration: none; }
.content-box .pb .jota-home img{ max-width: 100%; height: auto; }

/* ===== RESPONSIVO ===== */
@media (max-width: 760px){
  .jota-home{ padding: 22px 12px 30px }
  .jota-home .news-grid, .jota-home .diff-grid{ grid-template-columns: 1fr }
  .jota-home .boss-wrap{ grid-template-columns: 1fr }
  .jota-home .boss-art{ min-height: 150px }
  .jota-home .boss-stats{ grid-template-columns: 1fr 1fr }
  .jota-home .feed-item{ grid-template-columns: 52px 28px 1fr; gap: 9px; padding: 10px 14px }
  .jota-home .feed-item .ribbon{ display: none }
}
@media (max-width: 520px){
  .jota-home .podium-mini{ grid-template-columns: 1fr }
  .jota-home .podium-mini-card.first{ order: -1 }
}

/* =========================================================
   jOTa — Noticia individual + Arquivo (news.html.twig /
   news.archive.html.twig). Renderiza no .content-box .pb
   (pergaminho). Mesma linguagem do "scroll" do ranking.
   ========================================================= */
.jota-news{
  --navy:#0b1322; --navy-3:#1c2a48;
  --parchment:#f1e3bf; --parchment-2:#e8d6a4;
  --ink:#2a1a0e; --ink-soft:#4a2f1c;
  --gold:#c9a85a; --gold-hi:#efd58a; --gold-lo:#8e7233;
  --crimson:#8a1f2b; --crimson-hi:#a8313e; --crimson-lo:#5d141c;
  margin: -13px -14px;            /* ocupa o .pb (cancela padding 13/14) */
  font-family: "Cormorant Garamond", Georgia, serif;
}
.jota-news .jn-card{
  position: relative; border-radius: 2px; overflow: hidden;
  color: var(--ink);
  background:
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(0,0,0,.018) 2px 4px),
    linear-gradient(180deg, var(--parchment) 0%, var(--parchment-2) 100%);
  box-shadow: inset 0 0 0 1px rgba(201,168,90,.4);
}
/* ---- cabecalho crimson dagged ---- */
.jota-news .jn-head{
  position: relative; text-align: center;
  padding: 20px 24px 24px;
  background: linear-gradient(180deg, var(--crimson-hi) 0%, var(--crimson) 55%, var(--crimson-lo) 100%);
  color: var(--parchment);
  box-shadow: inset 0 2px 0 var(--gold);
  clip-path: polygon(
    0 0, 100% 0, 100% calc(100% - 12px),
    95% 100%, 90% calc(100% - 12px), 85% 100%, 80% calc(100% - 12px),
    75% 100%, 70% calc(100% - 12px), 65% 100%, 60% calc(100% - 12px),
    55% 100%, 50% calc(100% - 12px), 45% 100%, 40% calc(100% - 12px),
    35% 100%, 30% calc(100% - 12px), 25% 100%, 20% calc(100% - 12px),
    15% 100%, 10% calc(100% - 12px), 5% 100%, 0 calc(100% - 12px)
  );
}
.jota-news .jn-head .jn-ic{ width: 22px; height: 22px; color: var(--gold-hi); margin-bottom: 4px; }
.jota-news .jn-head .jn-meta{
  font-family: "Cinzel", serif; font-size: 10px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,235,200,.8); margin-bottom: 4px;
}
.jota-news .jn-head .jn-title{
  font-family: "Cinzel", serif; font-weight: 700;
  font-size: clamp(20px, 3vw, 28px); letter-spacing: .08em;
  color: var(--parchment); margin: 0;
  text-shadow: 0 2px 0 var(--crimson-lo), 0 0 18px rgba(0,0,0,.4);
}
/* ---- corpo (texto da noticia) ---- */
.jota-news .jn-body{
  padding: 22px 30px 8px;
  max-width: 760px; margin: 0 auto;
  color: var(--ink); font-size: 16.5px; line-height: 1.72;
}
.jota-news .jn-body p{ margin: 0 0 14px; }
.jota-news .jn-body a{ color: var(--crimson); font-weight: 600; text-decoration: underline; }
.jota-news .jn-body a:hover{ color: var(--crimson-hi); }
.jota-news .jn-body strong, .jota-news .jn-body b{ color: var(--ink); font-weight: 700; }
.jota-news .jn-body em, .jota-news .jn-body i{ color: var(--ink-soft); }
.jota-news .jn-body img{ max-width: 100%; height: auto; }
.jota-news .jn-body h1, .jota-news .jn-body h2, .jota-news .jn-body h3{
  font-family: "Cinzel", serif; color: var(--crimson-lo); letter-spacing: .04em; margin: 18px 0 8px;
}
/* ---- rodape ---- */
.jota-news .jn-foot{ padding: 6px 30px 22px; text-align: right; }
.jota-news .jn-foot .jn-comment{
  font-family: "Cinzel", serif; font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-lo); font-weight: 700;
  border-bottom: 1px solid rgba(142,114,51,.4); padding-bottom: 2px; text-decoration: none;
}
.jota-news .jn-foot .jn-comment:hover{ color: var(--crimson); border-color: var(--crimson); }
/* ---- lista do arquivo ---- */
.jota-news .jn-list{ list-style: none; margin: 0; padding: 8px 0 14px; }
.jota-news .jn-list li a{
  display: grid; grid-template-columns: 96px 1fr auto;
  align-items: center; gap: 14px; padding: 12px 26px;
  border-top: 1px dashed rgba(142,114,51,.28);
  color: var(--ink); text-decoration: none; transition: background .12s ease;
}
.jota-news .jn-list li:first-child a{ border-top: none; }
.jota-news .jn-list li a:hover{ background: linear-gradient(90deg, transparent, rgba(201,168,90,.16) 50%, transparent); }
.jota-news .jn-list .jn-ld{ font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--ink-soft); }
.jota-news .jn-list .jn-lt{ font-family: "Cinzel", serif; font-weight: 600; font-size: 15px; color: var(--ink); letter-spacing: .03em; }
.jota-news .jn-list li a:hover .jn-lt{ color: var(--crimson); }
.jota-news .jn-list .jn-la{ color: var(--gold-lo); font-size: 16px; }
.jota-news .jn-list .jn-empty{ padding: 22px 26px; text-align: center; font-style: italic; color: var(--ink-soft); }

@media (max-width: 600px){
  .jota-news .jn-body{ padding: 18px 16px 6px; font-size: 15.5px; }
  .jota-news .jn-list li a{ grid-template-columns: 1fr auto; gap: 4px 10px; padding: 11px 16px; }
  .jota-news .jn-list .jn-ld{ grid-column: 1 / -1; font-size: 11px; }
}

/* ===== 1b — NOTICIA EM DESTAQUE (apenas a mais recente, full width) ===== */
.jota-home .news-feature{
  display: grid; grid-template-columns: 290px 1fr;
  background: var(--navy-2);
  border: 1px solid rgba(201,168,90,.22);
  border-radius: 2px; overflow: hidden;
  text-decoration: none; color: var(--parchment);
  transition: all .2s ease;
}
.jota-home .news-feature:hover{
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.4);
}
.jota-home .news-feature .news-feature-thumb{
  position: relative; min-height: 210px;
  background: linear-gradient(135deg, var(--crimson-lo) 0%, var(--navy-3) 55%, var(--navy-2) 100%);
}
.jota-home .news-feature .news-feature-thumb::after{
  content:""; position:absolute; inset:0;
  background: radial-gradient(circle at 72% 28%, rgba(255,255,255,.12), transparent 55%);
}
.jota-home .news-feature .tag{
  position: absolute; top: 12px; left: 12px;
  font-family: "Cinzel", serif; font-size: 9px;
  letter-spacing: .22em; text-transform: uppercase; font-weight: 700;
  padding: 4px 9px; background: rgba(11,19,34,.72);
  color: var(--gold-hi); border: 1px solid rgba(201,168,90,.4); border-radius: 1px;
}
.jota-home .news-feature .news-feature-body{
  padding: 22px 28px; display: flex; flex-direction: column; justify-content: center;
}
.jota-home .news-feature .news-date{
  font-family: "JetBrains Mono", monospace; font-size: 11px;
  color: rgba(241,227,191,.5); letter-spacing: .06em; margin-bottom: 8px;
}
.jota-home .news-feature .news-title{
  font-family: "Cinzel", serif; font-weight: 700;
  font-size: clamp(18px, 2.2vw, 23px); color: var(--parchment);
  letter-spacing: .05em; line-height: 1.25; margin: 0 0 12px;
}
.jota-home .news-feature:hover .news-title{ color: var(--gold-hi); }
.jota-home .news-feature .news-excerpt{
  font-size: 15px; color: rgba(241,227,191,.7);
  line-height: 1.55; margin: 0 0 16px;
}
.jota-home .news-feature .news-more{
  font-family: "Cinzel", serif; font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
}
.jota-home .news-feature:hover .news-more{ color: var(--gold-hi); }
.jota-home .news-empty{ font-style: italic; color: rgba(241,227,191,.6); text-align: center; padding: 24px 0; }
@media (max-width: 600px){
  .jota-home .news-feature{ grid-template-columns: 1fr; }
  .jota-home .news-feature .news-feature-thumb{ min-height: 130px; }
}
