.news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Desktop */
.news-list.columns-desktop-1 .news-card {
  flex: 0 0 100%;
}
.news-list.columns-desktop-2 .news-card {
  flex: 0 0 48%;
}
.news-list.columns-desktop-3 .news-card {
  flex: 0 0 31.5%;
}
.news-list.columns-desktop-4 .news-card {
  flex: 0 0 23%;
}

/* Tablet */
@media (max-width: 1190px) {
  .news-list.columns-desktop-1 .news-card {
    flex: 0 0 100%;
  }
  .news-list.columns-desktop-2 .news-card {
    flex: 0 0 48%;
  }
  .news-list.columns-desktop-3 .news-card {
    flex: 0 0 46%;
  }
  .news-list.columns-desktop-4 .news-card {
    flex: 0 0 46%;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .news-list.columns-desktop-1 .news-card {
    flex: 0 0 100%;
  }
  .news-list.columns-desktop-2 .news-card {
    flex: 0 0 48%;
  }
  .news-list.columns-desktop-3 .news-card {
    flex: 0 0 100%;
  }
  .news-list.columns-desktop-4 .news-card {
    flex: 0 0 100%;
  }
}

/* News card visual styles */
.news-card {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}
.news-card:hover {
  transform: translateY(-5px);
}

.news-image {
  padding: 10px;
  border-radius: 25px;
}
.news-image img {
  aspect-ratio: 16 / 10;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 25px;
}

.news-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-title {
  font-size: 1.6rem !important;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: #000 !important;
}
.news-title a {
  font-size: 1.6rem !important;
  font-weight: 600;
  color: #000 !important;
}
.news-title a:hover {
  color: #607478 !important;
}

.news-meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1rem;
}

.news-button-wrapper {
  position: relative;
}
.news-button {
  display: flex;
  width: 52px;
  height: 52px;
  justify-content: center;
  align-items: center;
  background-color: #E0EE17;
  color: #fff;
  padding: 15px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease;
  line-height: 0;
  position: absolute;
  right: 51px;
  bottom: -27px;
  z-index: 4;
}
.news-button svg {
  width: 22px;
  stroke: #000;
}
.news-button:hover {
  background-color: #000000;
}
.news-button:hover svg {
  stroke: #FFF;
}

.decor-border {
  position: absolute;
  width: 100px;
  height: 34px;
  bottom: 0px;
  right: 26px;
  z-index: 3;
}
.decor-border::after {
  content: "";
  width: 100px;
  height: 33px;
  clip-path: path("M 0 33 H 100 C 90.7952 33 83.6787 25.1703 79.2588 17.1769 C 73.5989 6.94119 62.6183 0 50 0 C 37.3818 0 26.4011 6.94119 20.7412 17.1769 C 16.3213 25.1703 9.20474 33 0 33 Z");
  background-color: #FFF;
  position: absolute;
  left: 0px;
  bottom: -1px;
  display: block;
  z-index: -1;
}
.news-list-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-load-more {
     display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background: #1E3E44;
    color: white;
    border: none;
    font-family: "Heebo", Sans-serif;
    border-radius: 25px;
    cursor: pointer;
    text-align: center;
    font-size: 18px;
}

.news-load-more:hover {
    background: #E0EE17;
    color: black;
}

.news-load-more:disabled {
    background: #cccccc;
    cursor: not-allowed;
}