:root {
  --container-max: 1813px;
  --radius: 4px;
  --card-bg: #EAFFFD;
  --ink: #10403B;
  --muted: #678682;
  --brand: #0B6E66;
  --brand-pill: #0B6E66;
  --btn-bg: #0B6E66;
  --btn-bg-hover: #0A5F58;
}

.news-group {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 131px;
}

.news-section {
  max-width: var(--container-max);
}

.news-title {
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 35px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.news-card {
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
  gap: 21px;
  padding: 18px 23px 36px 22px;
}

.news-thumb {
  width: 100%;
  height: 257px;
  overflow: hidden;
  border-radius: 10px;
}

.news-thumb img {}

.news-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-heading {
  font-size: 18px;
  line-height: 22px;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
}

.news-meta {
  color: var(--muted);
  font-size: 18px;
  line-height: 22px;
}

.news-excerpt {
  color: var(--muted);
  font-size: 18px;
  line-height: 22px;
  margin: 0;
}

.news-btn {
  border-radius: 20px;
  padding: 11px 0;
  background: #004D58;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
    transition: all 0.3s ease;
}

.news-btn:hover {
    background: #00666F;
}

.news-btn:active {
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .news-title {
    font-size: 36px;
    line-height: 44px;
    margin: 48px 0 22px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .news-heading {
    font-size: 17px;
  }
}

@media (max-width: 640px) {
  .news-section {}

  .news-title {
    font-size: 28px;
    line-height: 34px;
    margin: 36px 0 18px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news-body {
    padding: 14px 14px 16px;
  }

  .news-heading {
    font-size: 16px;
    min-height: unset;
  }

  .news-meta {
    font-size: 13px;
  }

  .news-excerpt {
    font-size: 13px;
    -webkit-line-clamp: 4;
  }

  .news-btn {
    font-size: 15px;
    padding: 12px 0;
  }
}

@media (min-width:800px) and (max-width:1600px) {
  :root {
    --container-max: 1450px;
  }

  .news-title {
    font-size: 38px;
    line-height: 46px;
    margin-bottom: 28px;
  }

  .news-grid {
    gap: 12px;
  }

  .news-card {
    gap: 17px;
    padding: 14px 18px 29px 18px;
  }

  .news-thumb {
    height: 206px;
    border-radius: 8px;
  }

  .news-body {
    gap: 13px;
  }

  .news-heading, .news-meta, .news-excerpt {
    font-size: 15px;
    line-height: 19px;
  }

  .news-btn {
    border-radius: 16px;
    font-size: 16px;
  }
}