.heol-more-articles {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.heol-more-articles__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.heol-more-articles__title {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  color: #1f4b40;
  font-weight: 700;
}

.heol-more-articles__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 5px;
  background: #1f4b40;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--e-global-typography-accent-font-family), Sans-serif;
  font-size: var(--e-global-typography-accent-font-size);
  font-weight: var(--e-global-typography-accent-font-weight);
  letter-spacing: 0.2px;
}

.heol-more-articles__button:hover,
.heol-more-articles__button:focus,
.heol-more-articles__button:active,
.heol-more-articles__button:visited {
  color: #ffffff !important;
}

.heol-more-articles__button-icon {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.heol-more-articles__button-icon img {
  width: 16px;
  height: 16px;
  display: block;
}

.heol-more-articles__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.heol-more-articles__card {
  position: relative;
}

.heol-more-articles__link {
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.heol-more-articles__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(15, 45, 40, 0.85), rgba(14, 29, 27, 0.95));
}

.heol-more-articles__image {
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  aspect-ratio: 16 / 9;
  object-fit: cover !important;
  object-position: center center !important;
  display: block;
}

.heol-more-articles__media img {
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  aspect-ratio: 16 / 9;
  object-fit: cover !important;
  object-position: center center !important;
  display: block;
}

.heol-more-articles__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  z-index: 2;
}

.heol-more-articles__overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
  border-radius: 10px;
}

.heol-more-articles__icon {
  align-self: flex-end;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.heol-more-articles__icon img {
  width: 32px;
  height: 32px;
  display: block;
}

.heol-more-articles__card-title {
  margin: 0;
  color: #ffffff;
  font-family: var(--e-global-typography-primary-font-family), Sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  max-width: 90%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}

@media (max-width: 900px) {
  .heol-more-articles__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .heol-more-articles__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .heol-more-articles__title {
    width: 100%;
    text-align: center;
  }

  .heol-more-articles__button {
    width: 100%;
    justify-content: space-between;
  }
}
