/* Wrapper do slider */
.news-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* Swiper */
.news-swiper {
  width: 100%;
  padding: 20px 0;
}

/* News Cards */
.news-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 15px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.news-card h3 {
  font-size: 1.2rem;
  margin: 5px 0;
  color: #005A9C;
}

.news-card h3 a {
  color: inherit;
  text-decoration: none;
}

.news-card h3 a:hover {
  text-decoration: underline;
}

.news-card .date {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 10px;
}

.news-card .excerpt {
  font-size: 0.95rem;
  color: #444;
  flex: 1;
}

/* Setas laterais grandes sempre visíveis */
.news-prev, .news-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #005A9C;
  font-size: 24px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.news-prev:hover, .news-next:hover {
  background: #005A9C;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.news-prev { left: -70px; }
.news-next { right: -70px; }

/* Dots abaixo do slider */
.news-pagination {
  text-align: center;
  margin-top: 20px;
}

/* Responsivo */
@media (max-width: 1024px) {
  .news-prev { left: -50px; }
  .news-next { right: -50px; }
}

@media (max-width: 767px) {
  .news-prev, .news-next { width: 40px; height: 40px; font-size: 20px; }
  .news-prev { left: -30px; }
  .news-next { right: -30px; }
  .news-card img { height: 120px; }
}
