* {
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  padding: 20px;
  background-color: #f5f5f5;
}

.articles-slider {
  padding: 20px 0;
}
.suggestion {
  overflow: hidden;
  margin: 0px auto;
}

.swiper-slide {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.swiper-slide:hover {
  transform: translateY(-5px);
}

.article-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.article-content {
  padding: 15px;
}

.article-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.article-excerpt {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.read-more {
  max-width: 40%;
  padding: 6px 12px;
  margin: auto 20px 10px;
  background-color: blue;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
  transition: background-color 0.3s;
  text-align: center;

}

.read-more:hover {
  background-color: rgb(0, 0, 150);
  color: white;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  color: #333;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}

.swiper-pagination-bullet {
  background: #333;
  opacity: 0.4;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #4caf50;
}

.section-title {
  font-size: 22px;
  margin-bottom: 20px;
  color: #333;
  padding-right: 10px;
  border-right: 4px solid #4caf50;
}
.swiper-slide {
  height: unset;
}
