.inx-news-index {
  background: #f4f4f4;
  padding: 34px 0 76px;
  overflow: hidden;
}

.inx-news-index__hero {
    padding-bottom: 2rem;
    padding-top: 4rem;
}

.inx-news-index__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}


.inx-news-index__title {
    margin: 0;
    color: #0E2851;
    font-size: 2.35rem;
    line-height: 0.98;
    font-weight: bold;
    letter-spacing: -0.04em;
}
.inx-news-index__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #07a3e3 0%, #127fd2 100%);
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 16px 28px rgba(10, 110, 174, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.inx-news-index__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(10, 110, 174, 0.28);
  opacity: 0.96;
}

.inx-news-index__heading {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.inx-news-index__back {
  color: #127fd2;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.inx-news-index__back:hover {
  text-decoration: underline;
}

.inx-news-index__search {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin: 0 0 28px;
  max-width: 720px;
}

.inx-news-index__search-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(14, 40, 81, 0.18);
  border-radius: 14px;
  background: #ffffff;
  color: #0e2851;
  font-size: 1rem;
}

.inx-news-index__search-input:focus {
  outline: 2px solid rgba(18, 127, 210, 0.35);
  outline-offset: 1px;
}

.inx-news-index__search-btn {
  flex: 0 0 auto;
  height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  background: #0e2851;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.inx-news-index__search-btn:hover {
  background: #127fd2;
}

.inx-news-index__agenda {
  margin-top: 2.5rem;
  padding: 2.5rem 0 0;
}

.inx-news-index__agenda .home-news__agenda-title {
  margin-bottom: 1.25rem;
}

.inx-news-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0 0;
}

.inx-news-filters__tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.has-js .inx-news-index .js-inout {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--io-delay, 0ms);
  will-change: opacity, transform;
}

.has-js .inx-news-index .js-inout.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .has-js .inx-news-index .js-inout {
    opacity: 1;
    transform: none !important;
    transition: none;
  }
}

.inx-news-filters__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(25, 54, 109, 0.08);
  color: #19366d;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.inx-news-filters__tab:hover {
  transform: translateY(-1px);
  border-color: rgba(7, 163, 227, 0.25);
}

.inx-news-filters__tab.is-active {
  background: #19366d;
  border-color: #19366d;
  color: #fff;
}

.inx-news-filters__year {
  position: relative;
}

.inx-news-filters__year::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #19366d;
  border-bottom: 2px solid #19366d;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.inx-news-filters__year select {
  appearance: none;
  -webkit-appearance: none;
  min-width: 126px;
  height: 42px;
  padding: 0 42px 0 18px;
  border: 1px solid rgba(25, 54, 109, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #19366d;
  font-size: 0.92rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
}

.inx-news-archive {
  padding-top: 12px;
}

.inx-news-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.inx-news-index .home-news__card {
  position: relative;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: #d8ebf5;
  box-shadow: 0 20px 40px rgba(8, 32, 72, 0.12);
}

.inx-news-index .home-news__card-inner {
  position: relative;
  display: block;
  min-height: 320px;
  color: inherit;
  text-decoration: none;
}

.inx-news-index .home-news__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(132, 173, 255, 0.42), transparent 34%),
    linear-gradient(135deg, #d9eef8 0%, #aecde2 100%);
}

.inx-news-index .home-news__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 15, 34, 0.04) 0%, rgba(6, 15, 34, 0.78) 100%);
}

.inx-news-index .home-news__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.inx-news-index .home-news__body {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 22px 56px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 28%, rgba(6, 15, 34, 0.74) 100%);
}

.inx-news-index .home-news__tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 26px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.inx-news-index .home-news__card-title {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.14;
  font-weight: 400;
  text-wrap: balance;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.inx-news-index .home-news__plus {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  text-decoration: none;
  font-size: 1.15rem;
  line-height: 1;
  box-shadow: none;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.inx-news-index .home-news__card:hover .home-news__image {
  transform: scale(1.06);
}

.inx-news-index .home-news__card:hover .home-news__plus {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.26);
}

.inx-news-index .home-news__card.is-without-image .home-news__body {
  background: linear-gradient(180deg, rgba(25, 54, 109, 0.08) 0%, rgba(25, 54, 109, 0.84) 100%);
}

.inx-news-index__pagination {
  margin-top: 34px;
}

.inx-news-index__pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.inx-news-index__pagination .page-numbers li {
  margin: 0;
}

.inx-news-index__pagination .page-numbers a,
.inx-news-index__pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(25, 54, 109, 0.1);
  color: #19366d;
  text-decoration: none;
  font-weight: 700;
}

.inx-news-index__pagination .page-numbers .current {
  background: #19366d;
  border-color: #19366d;
  color: #fff;
}

.inx-news-index__empty {
  padding: 56px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  color: rgba(25, 54, 109, 0.82);
  text-align: center;
  box-shadow: 0 12px 30px rgba(8, 32, 72, 0.08);
}

.inx-news-index__empty p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .inx-news-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .inx-news-archive__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .inx-news-index__title {
    font-size: 2.8rem;
  }
}

@media (max-width: 767px) {
  .inx-news-index {
    padding: 28px 0 56px;
  }

  .inx-news-archive {
    padding: 1.5rem;
    padding-top: 12px;
  }

  .inx-news-index__header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 20px;
  }

  .inx-news-index__title {
    font-size: 2.3rem;
  }

  .inx-news-index__cta {
    min-height: 48px;
    padding: 0 20px;
    font-size: 0.88rem;
    width: 100%;
  }

  .inx-news-index__search {
    flex-direction: column;
    max-width: none;
  }

  .inx-news-index__search-btn {
    width: 100%;
  }

  .inx-news-filters {
    align-items: stretch;
  }

  .inx-news-filters__tabs {
    gap: 8px;
  }

  .inx-news-filters__tab,
  .inx-news-filters__year select {
    min-height: 40px;
    font-size: 0.88rem;
  }

  .inx-news-index .home-news__card,
  .inx-news-index .home-news__card-inner {
    min-height: 286px;
  }

  .inx-news-index .home-news__body {
    padding: 18px 18px 50px;
  }

  .inx-news-index .home-news__card-title {
    font-size: 1.25rem;
  }
}
