.whats-new-grid .featured-section {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}

.whats-new-grid .featured-image {
  flex: 1;
  max-width: 630px;
}

.whats-new-grid .featured-image img {
  width: 100%;
  height: 100%;
}

.whats-new-grid .featured-content {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.whats-new-grid .featured-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #ff4444;
}

.whats-new-grid .featured-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #272121;
}

.whats-new-grid .featured-description {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
  color: #666;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

/* .whats-new-grid .featured-metadata {
  margin-bottom: 30px;
} */

.whats-new-grid .featured-meta-info {
  /* margin-top: 40px; */
  font-size: 14px;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
}

.whats-new-grid .featured-meta-info span {
  margin: 0 8px;
  color: #999;
}

.whats-new-grid .read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  margin-right: 15px;
  font-size: 18px;
  color: #ff4444;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whats-new-grid .featured-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  margin-right: 15px;
  margin-bottom: 0;
  font-size: 16px;
  color: #ff4444;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease;

  background-image: url("../images/arrow-long-right-red.svg");
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: right center;
  padding-right: 25px;
}

.whats-new-grid .featured-read-more-btn:hover {
  color: #ff4444;
  transform: translateX(3px);
  cursor: pointer;
}

.whats-new-grid .read-more-btn::after {
  content: "";
  display: inline-block;
  margin-bottom: 40px;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/arrow-long-right-red.svg");
}

.whats-new-grid .read-more-btn:hover {
  transform: translateX(3px);
}

.whats-new-grid .arrow-icon {
  width: 16px;
  height: 16px;
}

.whats-new-grid .divider {
  max-width: 1200px;
  height: 0;
  margin: 0 auto 60px;
  border: 1px solid;
  border-image-source: linear-gradient(
    90deg,
    rgba(203, 203, 203, 0) 0%,
    #cbcbcb 49.12%,
    rgba(203, 203, 203, 0) 100%
  );
  border-image-slice: 1;
}

.whats-new-grid .reports-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 70px;
  margin-bottom: 140px;
}

.whats-new-grid .vertical-divider {
  position: absolute;
  width: 1px;
  height: 100%;
  border: 0.5px solid;
  border-image-source: linear-gradient(
    180deg,
    rgba(203, 203, 203, 0) 0%,
    #cbcbcb 49.12%,
    rgba(203, 203, 203, 0) 100%
  );
  border-image-slice: 0.5;
}

.whats-new-grid .reports-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 70px;
  margin-bottom: 140px;
}

.whats-new-grid .vertical-divider {
  position: absolute;
  width: 1px;
  height: 100%;
  border: 0.5px solid;
  border-image-source: linear-gradient(
    180deg,
    rgba(203, 203, 203, 0) 0%,
    #cbcbcb 49.12%,
    rgba(203, 203, 203, 0) 100%
  );
  border-image-slice: 0.5;
}

.whats-new-grid .report-section {
  overflow: hidden;
  flex: 1;
}

.whats-new-grid .image-section {
  width: 100%;
  height: 200px;
}

.whats-new-grid .image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.whats-new-grid .content-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px 0 0 0;
}

.whats-new-grid .reports-label {
  font-family: "manrope";
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* margin-bottom: 16px; */
  color: #ff4444;
}

.whats-new-grid .main-title {
  font-family: "manrope";
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: #272121;
  height: 60px;
  margin-bottom: 0;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.whats-new-grid .metadata {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  height: 24px;
}

.whats-new-grid .meta-info {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
}

.whats-new-grid .meta-info span {
  margin: 0 6px;
  color: #999;
}

.whats-new-grid .arrow-container {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whats-new-grid .report-section:hover .arrow-container {
  transform: translateX(3px);
}

.whats-new-grid .mobile-swiper-container {
  display: none;
}

@media (max-width: 768px) {
  .whats-new-grid .desktop-layout {
    display: none;
  }

  .whats-new-grid .mobile-swiper-container {
    display: block;
  }

  .whats-new-grid .main-container {
    width: 100%;
    max-width: 412px;
    margin: 0 auto;
    padding: 30px 20px;
  }

  .whats-new-grid .swiper {
    width: 100%;
    padding-bottom: 40px;
  }

  .whats-new-grid .swiper-slide {
    width: 100%;
    background: white;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
  }

  .whats-new-grid .swiper-slide .image-section {
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .whats-new-grid .swiper-slide .content-section {
    padding: 20px 0 0 0;
    min-height: 150px;
  }

  .whats-new-grid .swiper-slide .featured-label,
  .whats-new-grid .swiper-slide .reports-label {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ff4444;
  }

  .whats-new-grid .swiper-slide .featured-title,
  .whats-new-grid .swiper-slide .main-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #272121;
  }

  .whats-new-grid .swiper-slide .featured-description,
  .whats-new-grid .swiper-slide .report-description {
    font-size: 16px;
    line-height: 150%;
    color: #666;
  }

  .whats-new-grid .swiper-slide .featured-meta-info,
  .whats-new-grid .swiper-slide .meta-info {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    padding: 0 !important;
    font-size: 14px;
    color: #666;
    font-weight: 500;
  }

  .whats-new-grid .swiper-slide .read-more-btn,
  .whats-new-grid .swiper-slide .report-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff4444;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
  }

  .whats-new-grid .swiper-slide .read-more-btn:hover,
  .whats-new-grid .swiper-slide .report-read-more:hover {
    transform: translateX(3px);
  }

  .whats-new-grid .swiper-slide .arrow-icon {
    width: 16px;
    height: 16px;
  }

  .whats-new-grid .swiper-pagination {
    bottom: 10px;
    text-align: left;
  }

  .whats-new-grid .swiper-pagination-bullet {
    width: 10px;
    height: 4px;
    background: #706f6f;
    opacity: 0.3;
    margin: 0 4px;
    border-radius: 0;
  }

  .whats-new-grid .swiper-pagination-bullet-active {
    width: 30px;
    height: 4px;
    opacity: 1;
    background: #ff4444;
  }
}
