/* ========================================
   PLATEAU ELEMENTS — NEWS PAGE
   ======================================== */

/* ----------------------------------------
   FACET LABELS
   ---------------------------------------- */
.wp-plateau.news-section .facetwp-facet-news_category::before {
  content: 'Category';
}

/* ----------------------------------------
   FACETWP TEMPLATE OVERRIDE — SINGLE COLUMN LIST
   ---------------------------------------- */
.wp-plateau.news-section .facet-main .facetwp-template {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ----------------------------------------
   NEWS ROW (pe-news-row)
   ---------------------------------------- */
.wp-plateau.news-section .pe-news-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: inherit;
  transition: background 0.3s ease;
}

.wp-plateau.news-section .pe-news-row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wp-plateau.news-section .pe-news-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* -- Content (left side) -- */
.wp-plateau.news-section .pe-news-row__content {
  flex: 1;
  min-width: 0;
}

/* -- Date -- */
.wp-plateau.news-section .pe-news-row__date {
  display: block;
  font-family: var(--pe-font-condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pe-amber);
  margin-bottom: 6px;
}

/* -- Title -- */
.wp-plateau.news-section .pe-news-row__title {
  font-family: var(--pe-font-condensed);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pe-white);
  margin: 0 0 8px;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.wp-plateau.news-section .pe-news-row:hover .pe-news-row__title {
  color: var(--pe-amber);
}

/* -- Categories -- */
.wp-plateau.news-section .pe-news-row__categories {
  font-family: var(--pe-font-condensed);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pe-grey-mid);
  margin-bottom: 16px;
}

/* -- CTA -- */
.wp-plateau.news-section .pe-news-row__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--pe-font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pe-amber);
  transition: gap 0.3s ease;
}

.wp-plateau.news-section .pe-news-row:hover .pe-news-row__cta {
  gap: 14px;
}

.wp-plateau.news-section .pe-news-row__cta-arrow {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pe-grey-mid);
  transition: all 0.3s;
}

.wp-plateau.news-section .pe-news-row:hover .pe-news-row__cta-arrow {
  border-color: var(--pe-amber);
  background: var(--pe-amber);
}

.wp-plateau.news-section .pe-news-row__cta-arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--pe-grey-light);
  fill: none;
  stroke-width: 2;
  transition: stroke 0.3s;
}

.wp-plateau.news-section .pe-news-row:hover .pe-news-row__cta-arrow svg {
  stroke: var(--pe-black);
}

/* -- Image (right side) -- */
.wp-plateau.news-section .pe-news-row__image {
  width: 260px;
  flex-shrink: 0;
  overflow: hidden;
}

.wp-plateau.news-section .pe-news-row__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wp-plateau.news-section .pe-news-row:hover .pe-news-row__image img {
  transform: scale(1.05);
}

/* -- Row stagger animations -- */
.wp-plateau.news-section .pe-news-row {
  animation: fadeUp 0.5s ease both;
}

.wp-plateau.news-section .pe-news-row:nth-child(1) { animation-delay: 0.4s; }
.wp-plateau.news-section .pe-news-row:nth-child(2) { animation-delay: 0.5s; }
.wp-plateau.news-section .pe-news-row:nth-child(3) { animation-delay: 0.6s; }
.wp-plateau.news-section .pe-news-row:nth-child(4) { animation-delay: 0.65s; }
.wp-plateau.news-section .pe-news-row:nth-child(5) { animation-delay: 0.7s; }
.wp-plateau.news-section .pe-news-row:nth-child(6) { animation-delay: 0.75s; }
.wp-plateau.news-section .pe-news-row:nth-child(7) { animation-delay: 0.8s; }
.wp-plateau.news-section .pe-news-row:nth-child(8) { animation-delay: 0.85s; }
.wp-plateau.news-section .pe-news-row:nth-child(9) { animation-delay: 0.9s; }

/* ----------------------------------------
   RESPONSIVE — TABLET (≤1024px)
   ---------------------------------------- */
@media (max-width: 1024px) {
  .wp-plateau.news-section .pe-news-row__image {
    width: 200px;
  }

  .wp-plateau.news-section .pe-news-row__title {
    font-size: 20px;
  }
}

/* ----------------------------------------
   RESPONSIVE — MOBILE (≤768px)
   ---------------------------------------- */
@media (max-width: 768px) {
  .wp-plateau.news-section .pe-news-row {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
  }

  .wp-plateau.news-section .pe-news-row:first-child {
    border-top: none;
  }

  .wp-plateau.news-section .pe-news-row__image {
    width: 100%;
    height: 180px;
  }

  .wp-plateau.news-section .pe-news-row__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .wp-plateau.news-section .pe-news-row__content {
    padding: 20px 0 24px;
    text-align: left;
  }

  .wp-plateau.news-section .pe-news-row__title {
    font-size: 18px;
  }
}
