@import url("../../parts/share-buttons.css");

/* ============================================================
   PINKRADIO NEWS – SINGLE ARTICLE STYLE
============================================================ */
.single-news h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.single-news p {
  font-size: 1.1rem;
}

/* === PinkRadio News: Blockquote Styling === */
.single-news blockquote::before,
.single-news blockquote::after {
  all: unset;
  position: absolute;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: bold;
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

/* Opening quote */
.single-news blockquote::before {
  content: "“";
  top: 20px;
  left: 25px;
}
.single-news blockquote::after {
  content: "”";
  bottom: -15px;
  right: 30px;
}
.single-news blockquote p {
  position: relative;
  margin: 10px auto;
  padding: 25px 35px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #ff4081;
  border-radius: 4px;
  font-size: 1.15rem; /* ✅ normal readable size */
  line-height: 1.6;
  color: #e6e6e6;
  font-style: italic;
  max-width: 850px;
  box-shadow: inset 0 0 20px rgba(255, 64, 129, 0.05);
  overflow: hidden;
}

.single-news blockquote cite {
  display: block;
  text-align: right;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 15px;
  font-style: normal;
  color: #bbb;
}

/* Smaller screens */
@media (max-width: 768px) {
  .single-news blockquote {
    padding: 25px 20px;
    font-size: 1.05rem;
  }

  .single-news h3 {
    font-size: 1.80rem;
    margin-bottom: 15px;
  }


  .single-news p {
    font-size: 1.0rem;
  }

  .single-news blockquote p {
    font-size: 1.05rem; 
  }

  /* Opening quote */
  .single-news blockquote::before {
    top: 35px;
    left: 25px;
  }

  /* Closing quote */
  .single-news blockquote::after {
    bottom: 0px;
    right: 30px;
  }
}

/* === PinkRadio News Header Styling === */
.pinkradio-section {
  padding: 20px 0;
}

.pinkradio-pageheader-news {
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;
  min-height: 10vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: #000;
}

.pinkradio-pageheader-news__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(1.1);
  transition: transform 2s ease, filter 2s ease;
}
.pinkradio-pageheader-news:hover .pinkradio-pageheader-news__bg {
  transform: scale(1.1);
  filter: brightness(0.45) saturate(1.2);
}
.pinkradio-pageheader-news__overlay {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 120px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.75) 100%);
}
.pinkradio-pageheader-news__title {
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 25px rgba(0,0,0,0.75);
}
.pinkradio-pageheader-news__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #ff4081;
  font-weight: 600;
  margin-bottom: 15px;
}
.pinkradio-pageheader-news__meta hr {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff4081, transparent);
  border: none;
}

/* ============================================================
   PINKRADIO NEWS GRID
============================================================ */
.post-type-archive-news .qt-main,
.post-type-archive-news .vice-loop,
.post-type-archive-news .vice-row,
.post-type-archive-news .qt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

/* Article cards */
.vice-post {
  background: #111;
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  overflow: hidden;
  height: 100%;
}

/* Content area below stays separate */
.vice-post__content {
  background: #111;
  padding: 1.2rem;
  position: absolute !important;
  z-index: 1;
}

.vice-post:hover .vice-post__excerpt {
  opacity: 1;
  max-height: 5em; 
}

/* ============================================================
   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;
  object-position: center;
  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;
}

/* ============================================================
   RESPONSIVE GRID
============================================================ */
@media (max-width: 992px) {
  .post-type-archive-news .qt-main,
  .post-type-archive-news .vice-loop,
  .post-type-archive-news .vice-row,
  .post-type-archive-news .qt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .post-type-archive-news .qt-main,
  .post-type-archive-news .vice-loop,
  .post-type-archive-news .vice-row,
  .post-type-archive-news .qt-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   🌸 PINKRADIO NEWS – MODERN SLIDER
============================================================ */
/* === PinkRadio News Modernslider Variant === */
.vice-modernslider--news {
  background-color: #c60b47; /* your PinkRadio red */
  position: relative;
  overflow: hidden;
}

.vice-modernslider--news .vice-modernslider-item__number {
  color: rgba(255,255,255,0.12);
}

.vice-modernslider--news .vice-modernslider-item__thumbnail__box img {
  filter: brightness(0.85);
  transition: transform 0.5s ease, filter 0.3s ease;
}

.vice-modernslider--news .vice-modernslider-item__thumbnail__box img:hover {
  transform: scale(1.03);
  filter: brightness(1);
}

.vice-modernslider--news .vice-modernslider-item__title a,
.vice-modernslider--news .vice-modernslider-item__excerpt,
.vice-modernslider--news .vice-modernslider-item__action a {
  color: #fff;
}

.vice-modernslider--news .vice-modernslider-item__action a {
  border-color: #fff;
}

.vice-modernslider--news .vice-modernslider-item__action a:hover {
  background-color: #fff;
  color: #c60b47;
}

.news-tag-badge {
  display: inline-block;
  padding: 2px 8px;
  margin-right: 6px;
  font-size: 0.7em;
  text-transform: uppercase;
  background: #ff2f92; /* Pink Radio vibe */
  color: #fff;
  border-radius: 3px;
}