.edscards-root { --blue:#073979; --red:#d40000; --radius:16px; --shadow:0 6px 18px rgba(0,0,0,.08); }
.edscards-wrap{ display:grid; gap: 5px; }

/* Bloco = 1 destaque + 3 itens (lista) */
.edscards-block{ display:grid; gap: 5px; grid-template-columns: 1fr; }

/* Destaque */
.edscards-big{ background:#fff; border:1px solid #e5e7eb; border-radius:18px; overflow:hidden; box-shadow: var(--shadow); }
.edscards-big .thumb{ position:relative; display:block; }
.edscards-big .thumb img{ width:100%; height:280px; object-fit:cover; display:block; transition: transform .45s ease; }
.edscards-big .thumb:hover img{ transform: scale(1.04); }
.edscards-big .thumb::after{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.55) 100%); pointer-events:none; }
.edscards-big .hat{
  position:absolute; top:12px; right:12px; z-index:2;
  background:#fff; color:var(--red); font:800 12px/1 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  padding:6px 10px; border-radius:10px; text-transform:uppercase; letter-spacing:.3px; box-shadow:0 2px 8px rgba(0,0,0,.12);
}
.edscards-big .info{ padding:12px 14px 16px; }
.edscards-big .title{ margin:0 0 6px; font:700 20px/1.2 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif; }
.edscards-big .title a{ color:#111; text-decoration:none; transition: color .2s ease; }
.edscards-big .title a:hover{ color: var(--blue); }

/* Itens menores */
.edscards-item{ display:grid; grid-template-columns: 120px 1fr; gap:10px; align-items:center; background:#fff; border:1px solid #e5e7eb; border-radius:14px; padding: 5px; box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .2s ease; }
.edscards-item:hover{ transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,.10); }
.edscards-item .thumb{ position:relative; display:block; border-radius:10px; overflow:hidden; }
.edscards-item .thumb img{ width:120px; height:78px; object-fit:cover; display:block; transition: transform .4s ease; }
.edscards-item:hover .thumb img{ transform: scale(1.05); }
.edscards-item .hat{
  position:absolute; top:6px; right:6px; background:#fff; color:var(--red); font:800 10px/1 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  padding:4px 6px; border-radius:8px; text-transform:uppercase; letter-spacing:.3px; box-shadow:0 1px 6px rgba(0,0,0,.12);
}
.edscards-item .cat{ display:inline-block; background:var(--blue); color:#fff; font:700 11px/1 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif; padding:4px 6px; border-radius:8px; margin:0 0 6px 0; }
.edscards-item .title{ margin:0 0 2px; font:600 15px/1.25 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif; }
.edscards-item .title a{ color:#111; text-decoration:none; transition: color .2s ease; }
.edscards-item .title a:hover{ color: var(--blue); }

/* Empty */
.edscards-empty{ padding:10px; border:1px dashed #d1d5db; border-radius:12px; background:#fff; text-align:center; }

@media (min-width: 780px){
  .edscards-big .thumb img{ width:100%; height:280px; object-fit:cover; display:block; transition: transform .45s ease; }
}

.edscards-big .desc{ margin:0 0 6px; color:#333; font:500 15px/1.45 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif; }

/* Force height 280px on all breakpoints */
@media (min-width:1px){ .edscards-big .thumb img{ height:280px !important; } }

.edscards-big .thumb .cat{
  position:absolute; left:10px; bottom:10px; z-index:2;
  display:inline-block; background:var(--blue); color:#fff;
  font:700 12px/1 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  padding:6px 8px; border-radius:8px;
}
