 @import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');


    .nnnoticias {
      font-family: 'Rubik', -apple-system, sans-serif;
      background: #F4F5F7;
      padding: 4rem 1.5rem 5rem;
      color: #111;
    }

    /* ── SECTION HEADER ── */
    .section-head {
      max-width: 1080px;
      margin: 0 auto 2.75rem;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1rem;
    }

    .section-head-left {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .section-eyebrow {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #B5151A;
    }

    .section-eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 2px;
      background: #B5151A;
      border-radius: 2px;
    }

    .section-title {
      font-family: 'Rubik', Georgia, serif;
      font-size: 32px;
      font-weight: 700;
      color: #0C1B33;
      letter-spacing: -0.03em;
      line-height: 1.15;
    }

    .section-link {
      font-size: 12.5px;
      font-weight: 500;
      color: #0C1B33;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 5px;
      border-bottom: 1px solid rgba(12,27,51,0.25);
      padding-bottom: 1px;
      white-space: nowrap;
      transition: color 0.2s, border-color 0.2s;
      cursor: pointer;
    }

    .section-link:hover { color: #B5151A; border-color: #B5151A; }

    /* ── GRID ── */
    .news-grid {
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    /* ── CARD ── */
    .news-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(0,0,0,0.07);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      position: relative;
    }

    .news-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 48px rgba(0,0,0,0.10);
      border-color: rgba(0,0,0,0.04);
    }

    /* category color stripe — left edge */
    .news-card::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      border-radius: 16px 0 0 16px;
      background: var(--accent, #B5151A);
      opacity: 0;
      transition: opacity 0.25s;
    }

    .news-card:hover::before { opacity: 1; }

    /* ── IMAGE ── */
    .card-img {
      position: relative;
      width: 100%;
      height: 200px;
      overflow: hidden;
      background: #ddd;
      flex-shrink: 0;
    }

    .card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
      filter: brightness(0.96);
    }

    .news-card:hover .card-img img { transform: scale(1.06); }

    /* image overlay gradient */
    .card-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(12,27,51,0.55) 0%, transparent 55%);
      pointer-events: none;
    }

    /* ── BADGE ── */
    .badge {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 2;
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      padding: 4px 10px 3px;
      border-radius: 999px;
      backdrop-filter: blur(6px);
    }

    .badge-red    { background: rgba(181,21,26,0.92);  color: #fff; }
    .badge-green  { background: rgba(15,110,86,0.90);  color: #fff; }
    .badge-amber  { background: rgba(133,79,11,0.90);  color: #fff; }
    .badge-blue   { background: rgba(24,95,165,0.90);  color: #fff; }
    .badge-purple { background: rgba(83,74,183,0.90);  color: #fff; }
    .badge-teal   { background: rgba(13,110,253,0.85); color: #fff; }

    /* ── READ TIME ── */
    .read-time {
      position: absolute;
      bottom: 12px;
      right: 14px;
      z-index: 2;
      font-size: 11px;
      color: rgba(255,255,255,0.88);
      display: flex;
      align-items: center;
      gap: 4px;
      font-weight: 400;
    }

    /* ── CARD BODY ── */
    .card-body {
      padding: 20px 20px 18px;
      display: flex;
      flex-direction: column;
      flex: 1;
      gap: 0;
    }

    .card-meta {
      display: flex;
      align-items: center;
      gap: 7px;
      margin-bottom: 11px;
    }

    .meta-date {
      font-size: 11.5px;
      color: #9CA3AF;
      font-weight: 400;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .meta-sep {
      width: 3px; height: 3px;
      border-radius: 50%;
      background: #D1D5DB;
      flex-shrink: 0;
    }

    .meta-author {
      font-size: 11.5px;
      color: #9CA3AF;
      font-weight: 500;
    }

    .card-title {
      font-family: 'Rubik', Georgia, serif;
text-transform: uppercase;
      font-size: 16.5px;
      font-weight: 600;
      color: #0C1B33;
      line-height: 1.38;
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }

    .card-excerpt {
      font-size: 12.5px;
      color: #6B7280;
      line-height: 1.7;
      flex: 1;
      margin-bottom: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-align: justify;
    }

    /* ── FOOTER ── */
    .card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid #F3F4F6;
      padding-top: 13px;
      margin-top: auto;
    }

    .btn-read {
      font-size: 11.5px;
      font-weight: 600;
      color: var(--accent, #B5151A);
      background: transparent;
      border: 1px solid currentColor;
      border-radius: 8px;
      padding: 6px 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: background 0.15s, color 0.15s;
            font-family: 'Rubik', Georgia, serif;

      letter-spacing: 0.02em;
    }

    .btn-read:hover {
      background: var(--accent, #B5151A);
      color: #fff;
    }

    .card-stats {
      display: flex;
      gap: 10px;
    }

    .stat {
      font-size: 11.5px;
      color: #9CA3AF;
      display: flex;
      align-items: center;
      gap: 3px;
    }

    .stat i { font-size: 13px; }

    /* ── RESPONSIVE ── */
    @media (max-width: 860px) {
      .news-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 560px) {
      .news-grid { grid-template-columns: 1fr; }
      .section-title { font-size: 24px; }
      .nnnoticias { padding: 2.5rem 1rem 3.5rem; }
    }