/* --------------------------------------------------------------------------
   News section (layout shell)
   -------------------------------------------------------------------------- */
.news-section {
  padding-block: 50px 25px;
  background: #f5f5f5;
}

.news-section .news-swiper {
  margin-top: 20px;
}

.news-swiper .swiper-slide {
  height: auto;
}

.news-section .bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .news-section .bottom-wrapper {
    justify-content: space-between;
  }
}

@media (min-width: 1025px) {
  .news-section .bottom-wrapper {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}

.news-section .bottom-wrapper .navigation {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-section .bottom-wrapper .navigation .prev,
.news-section .bottom-wrapper .navigation .next {
  color: #ffffff;
  font-size: 24px;
  background-color: #a60a27;
  border: 1px solid #a60a27;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-section .bottom-wrapper a {
  background-color: #a60a27;
  border-radius: 58px;
  padding: 10px 25px;
  color: #ffffff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

@media (min-width: 1025px) {
  .news-section .bottom-wrapper a {
    position: absolute;
    right: 0;
  }
}

.news-section .bottom-wrapper a i {
  font-size: 18px;
}

.news-section .section-title {
  --font-scale: 1;
  --margin-bottom: 1.5625rem;
  --font-size: 2.1875rem;

  margin-bottom: var(--margin-bottom);
}

@media (min-width: 1025px) {
  .news-section .section-title {
    --font-size: 2.8125rem;
  }
}

.news-section .section-title * {
  font-size: calc(var(--font-size) * var(--font-scale));
  line-height: 1.2;
  color: #111d5e;
}

.news-section .section-title strong {
  font-weight: 800;
  display: block;
}

/* --------------------------------------------------------------------------
   News card (standalone component)
   -------------------------------------------------------------------------- */
.news-card {
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  text-decoration: none;
  color: inherit;
}

.news-card .cover img {
  width: 100%;
  object-fit: cover;
}

.news-card .news-content {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 10px;
  gap: 15px;
}

.news-card .news-content .date {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #292929;
  font-size: 14px;
  font-weight: 500;
}

.news-card .news-content .content {
  color: #292929;
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card .news-content span {
  color: #a60a27;
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-card .news-content span i {
  transition: 0.6s ease;
}

.news-card:hover .news-content .content {
  color: #a60a27;
}

.news-card:hover .news-content span i {
  margin-left: 5px;
}
