/* ── HERO ── */
  .heroNot {
    background: linear-gradient(108deg, #0f2d36 55%, #00526a 100%);
    height: 40px;
    display: flex;
    align-items: center;
    padding: 2.5rem 3rem;
    position: relative;
    overflow: hidden;
  }

  .heroNot::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 42%;
    height: 100%;
    background: var(--primary);
    opacity: 0.12;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  }

  .editorNot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
  }

  .editorNot-title {
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }

  .editorNot-title i,
  .editorNot-actions i {
    color: var(--white);
    font-size: 1.2rem;
  }

  .editorNot-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .news-card-clickable {
    cursor: pointer;
  }

  .news-card-clickable:focus-visible {
    outline: 2px solid rgba(255,255,255,0.65);
    outline-offset: 4px;
  }

  .news-filter-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 1.1rem 1.25rem;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(15,42,55,0.08);
    box-shadow: 0 12px 30px rgba(15,42,55,0.06);
  }

  .news-filter-label {
    color: var(--primary-3);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .news-filter-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .news-filter-button {
    border: 1px solid rgba(30, 109, 126, 0.18);
    background: var(--white);
    color: var(--primary-3);
    padding: 0.72rem 1rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .news-filter-button:hover,
  .news-filter-button.is-active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
  }

  .news-filter-button:focus-visible {
    outline: 2px solid rgba(30,109,126,0.35);
    outline-offset: 3px;
  }

  .news-empty-filtered {
    margin-top: 2rem;
    color: var(--tPrimary);
    border: 1px solid rgba(15,42,55,0.08);
    background: rgba(255,255,255,0.92);
  }

  .news-modal {
    background: var(--f-claro);
    color: var(--tPrimary);
    border: 1px solid rgba(15,42,55,0.08);
    border-radius: 0;
  }

  .news-modal-header {
    position: relative;
    border-bottom: 1px solid rgba(15,42,55,0.1);
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.75rem 1.75rem 1rem;
  }

  .news-modal-heading {
    max-width: 52rem;
    width: 100%;
    text-align: center;
  }

  .news-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    line-height: 1.2;
    color: var(--primary-3);
    margin: 0;
    text-align: center;
  }

  .news-modal-body {
    padding: 1.5rem 1.75rem 1.75rem;
  }

  .news-modal-image-wrap {
    margin-bottom: 1.5rem;
  }

  .news-modal-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 0.35rem;
  }

  .news-modal-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 1.4rem;
  }

  .news-modal-meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    min-width: 130px;
    padding: 0.75rem 0.9rem;
    background: var(--white);
    border-left: 3px solid var(--primary);
    box-shadow: 0 8px 20px rgba(15,42,55,0.06);
    text-align: center;
  }

  .news-modal-meta-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tSecondary);
    font-weight: 700;
  }

  .news-modal-content {
    color: var(--tPrimary);
    font-size: 1rem;
    line-height: 1.9;
    white-space: pre-line;
    background: var(--white);
    padding: 1.35rem 1.4rem;
    box-shadow: 0 10px 28px rgba(15,42,55,0.06);
  }

  .news-modal .btn-close {
    position: absolute;
    top: 1.35rem;
    right: 1.35rem;
    opacity: 0.7;
  }

  .news-modal .btn-close:hover {
    opacity: 1;
  }

  @media (max-width: 640px) {
    .editorNot {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      padding: 0.9rem 1rem;
    }

    .editorNot-title {
      gap: 0.6rem;
      min-width: 0;
    }

    .editorNot-title h4 {
      font-size: 1rem;
    }

    .editorNot-actions {
      flex-shrink: 0;
    }

    .news-filter-shell {
      padding: 1rem;
    }

    .news-filter-buttons {
      width: 100%;
    }

    .news-filter-button {
      width: 100%;
      text-align: center;
    }

    .news-modal-header,
    .news-modal-body {
      padding-left: 1rem;
      padding-right: 1rem;
    }

    .news-modal-meta-item {
      width: 100%;
    }

    .news-modal-content {
      padding: 1rem;
    }
  }
