/* --- Slider Wrapper --- */
.pinkradio-news-slider {
  width: 100%;
  position: relative;
  padding: 40px 0 60px;
}

/* --- Each Slide Card --- */
.pinkradio-news-slide {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 430px;
  background: #111;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pinkradio-news-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

/* --- Image --- */
.pinkradio-news-slide__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.pinkradio-news-slide:hover .pinkradio-news-slide__image {
  transform: scale(1.08);
  filter: brightness(0.9);
}

/* ============================================================
   OVERLAY with CONTENT
============================================================ */
.pinkradio-news-slide__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3) 40%, transparent);
  transition: background 0.4s ease;
}

.pinkradio-news-slide:hover .pinkradio-news-slide__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.6) 50%, transparent);
}

.pinkradio-news-slide__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 8px;
  transition: color 0.3s ease;
}

.pinkradio-news-slide__link:hover .pinkradio-news-slide__title {
  color: var(--pinkradio-pink, #ff007a);
}

.pinkradio-news-slide__excerpt {
  font-size: 1.1rem;
  line-height: 1.4;
  color: #ccc;
  opacity: 0;
  max-height: 0;
  transform: translateY(22px);
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease, transform 0.4s ease;
}

.pinkradio-news-slide:hover .pinkradio-news-slide__excerpt {
  opacity: 1;
  max-height: 110px;
  transform: translateY(0px);
}

.pinkradio-news-slide__date {
  margin-top: 8px;
  font-size: 0.8rem;
  opacity: 0.75;
}

/* ============================================================
   PAGINATION
============================================================ */
.swiper-pagination {
  position: relative;
  margin-top: 25px;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 24px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.25);
  margin: 0 5px !important;
  opacity: 1;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
  background: var(--pinkradio-pink, #31081c);
  width: 40px;
  box-shadow: 0 0 10px rgba(255,0,122,0.6);
}

/* ============================================================
   NEXT / PREVIOUS ARROWS
============================================================ */
.swiper-button-next,
.swiper-button-prev {
  width: 48px;
  height: 48px;
  background: var(--pinkradio-pink, #ff007a);
  border-radius: 50%;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(255,0,122,0.6);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #fff;
  color: var(--pinkradio-pink, #ff007a);
  box-shadow: 0 0 15px rgba(255,0,122,0.8);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .pinkradio-news-slide {
    height: 380px;
  }
}
@media (max-width: 768px) {
  .pinkradio-news-slide {
    height: 340px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 38px;
    height: 38px;
  }
}


/* ============================================================
   META OVERLAY (category/date)
============================================================ */
.vice-post__image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.vice-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.vice-post__image:hover img {
  transform: scale(1.05);
  filter: brightness(0.9) contrast(1.05);
}

/* Dark fade at the bottom for readability */
.vice-post__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 15%, rgba(0, 0, 0, 0) 80%);
  z-index: 2;
}

/* Meta pinned top-left */
.vice-post__meta {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.55);
  padding: 3px 10px 4px;
  border-radius: 4px;
  font-size: 1.0rem;  
  font-weight: 600;
  color: #ff92b7 !important;
  line-height: 1.1;
  backdrop-filter: blur(3px);
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.vice-post__meta::before {
  content: "★";
  color: #ff92b7;
  font-size: 0.8rem;
  opacity: 0.7;
  margin-right: 5px;
}

.vice-post__meta a,
.vice-post__meta span {
  color: #ff92b7 !important;
  text-decoration: none;
  font-weight: 600;
}

.vice-post__meta a:hover {
  color: #ff66a3 !important;
  text-decoration: underline;
}

/* Content area below stays separate */
.vice-post__content {
  background: #111;
  padding: 1.2rem;
  position: relative;
  z-index: 1;
}