/* Latest News Slider Styles */
.latest-news-section {
  background: #f8f9fb;
  padding: 50px 0 30px 0;
  position: relative;
}
.latest-news-section .section_wrapper {
  position: relative;
}
.latest-news-slider {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}
.latest-news-slide {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 30px 80px;
  background: #fff;
  min-height: 220px;
}
.latest-news-slide.active {
  display: flex;
}
.latest-news-image {
  flex: 0 0 180px;
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}
.latest-news-content {
  flex: 1 1 0%;
}
.latest-news-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}
.latest-news-desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 16px;
}
.latest-news-readmore {
  display: inline-block;
  background: #76b51b;
  color: #fff;
  padding: 7px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.5s;
}
.latest-news-readmore:hover {
  background: #486e14;
  color: #fff;
  text-decoration: none;
}
.latest-news-controls {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}
.latest-news-btn {
  pointer-events: all;
  /* background: #fff; */
  border: 0;
  border-radius: 50%;
  width: 38px;
  height: 60px;
  font-size: 1.5rem;
  color: #76b51b;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
  cursor: pointer;
  transition:
    box-shadow 0.2s,
    border 0.2s,
    background 0.2s,
    color 0.2s;
}
.latest-news-btn:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #ddd;
  background: #76b51b;
  color: #fff;
}
#latest_news_prev {
  margin-left: 7px;
}
@media (max-width: 700px) {
  .latest-news-slide {
    flex-direction: column;
    padding: 20px 10px;
    text-align: center;
    gap: 16px;
  }
  .latest-news-image {
    margin: 0 auto 10px auto;
    width: 50vw;
    max-width: 320px;
    height: auto;
    display: block;
  }
  .latest-news-content {
    width: 100%;
    padding: 0;
  }
}
