html {
  font-size: 20px;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.5;
}

.container {
  max-width: 1300px;
}

.h1,
.section-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #313131;
}

.h1 {
  font-size: 40px;
}

.section-title {
  font-size: 32px;
}

.subtitle {
  font-size: 24px;
  font-weight: 600;
}

.white {
  color: #fff;
  background-color: #17223a;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  background-color: #006cb5;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  border-radius: 10px;
  border: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-main:hover {
  background-color: #0d4471;
  color: #fff;
}

.btn-main:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn-main--sm {
  padding: 8px 20px;
  font-size: 16px;
}

.btn-main--lg {
  padding: 10px 36px;
  font-size: 24px;
}

.btn-main--full {
  width: 100%;
  display: block;
}

@media (max-width: 1000px) {
  body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.5;
  }
  .h1 {
    font-size: 25px;
  }
  .section-title {
    font-size: 20px;
  }
  .subtitle {
    font-size: 20px;
    font-weight: 600;
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.news-section {
  padding: 30px 0;
}
.news-section .section-title {
  margin-bottom: 30px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.news-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #006cb5;
  transition: transform 0.25s ease;
}
.news-card:hover {
  transform: translateY(-6px);
}
.news-card a {
  text-decoration: none;
}
.news-card__image {
  height: 230px;
  overflow: hidden;
}
.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-card__title {
  padding: 12px 10px 16px;
  color: #006cb5;
}

/* PAGINATION */
.pagination {
  margin: 25px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.pagination .pag-page,
.pagination .pag-arrow {
  font-size: 16px;
  padding: 4px 8px;
  border-radius: 6px;
  color: #000;
  text-decoration: none;
  border: 1px solid transparent;
}
.pagination .pag-page:hover,
.pagination .pag-arrow:hover {
  border-color: #006cb5;
  color: #006cb5;
}
.pagination .active {
  background: #006cb5;
  color: white;
  border-color: #006cb5;
}
.pagination .disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* SUBSCRIBE BLOCK */
.news-subscribe {
  background-image: url("/static/landing/img/banner1.png");
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  margin-top: 40px;
}
.news-subscribe form {
  display: flex;
  gap: 20px;
}
.news-subscribe form input,
.news-subscribe form button {
  flex: 1;
  height: 50px;
  border-radius: 10px;
}
.news-subscribe form input {
  padding: 0 14px;
  border: 1px solid #ccc;
  font-size: 16px;
}
.news-subscribe form button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}/*# sourceMappingURL=list.css.map */