/* =============================================================================
   Press & Media Page
   ============================================================================= */

/* Hero reuses .section-header / .section-title / .section-subtitle from style.css */
.press-hero-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.press-hero-section .section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.press-hero-section .section-subtitle {
  font-size: 1.2rem;
  color: var(--color-dark-gray);
  max-width: 700px;
  margin: 0 auto;
}

.press-section {
  padding: 40px 0;
}

.press-section-title {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--color-primary-dark, #333);
}

.press-news-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Card: horizontal layout */
.press-news-card {
  display: flex;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(120, 80, 130, 0.12), 0 1px 6px rgba(120, 80, 130, 0.06);
  background: #fff;
  transition: box-shadow 0.25s ease;
}

.press-news-card:hover {
  box-shadow: 0 8px 32px rgba(120, 80, 130, 0.18), 0 2px 10px rgba(120, 80, 130, 0.08);
}

.press-news-card-image {
  flex: 0 0 auto;
  padding: 15px 0 15px 15px;
}

.press-news-card-image img {
  width: 300px;
  max-height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.press-news-card-content {
  flex: 1;
  padding: 30px 36px;
  display: flex;
  flex-direction: column;
}

.press-news-card-date {
  font-size: 1.05em;
  color: #9b7a9e;
  margin-bottom: 12px;
  display: block;
}

.press-news-card-title {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.35;
}

.press-news-card-title a {
  color: var(--color-primary-dark, #6b2d5b);
  text-decoration: none;
}

.press-news-card-title a:hover {
  text-decoration: underline;
}

.press-news-card-divider {
  border: none;
  border-top: 1px solid #e8e0e6;
  margin: 0 0 14px 0;
}

.press-news-card-description {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.6;
  flex: 1;
}

.press-news-card-cta {
  display: inline-block;
  font-size: 0.9em;
  font-weight: 600;
  color: #fff;
  background: #bb4390;
  padding: 10px 24px;
  border-radius: 24px;
  text-decoration: none;
  align-self: flex-end;
  transition: background 0.2s ease;
}

.press-news-card-cta:hover {
  background: #9a3576;
  color: #fff;
  text-decoration: none;
}

/* Load More button */
.press-load-more-btn {
  background: #bb4390;
  color: #fff;
  border: none;
  padding: 10px 32px;
  border-radius: 24px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.press-load-more-btn:hover {
  background: #9a3576;
  color: #fff;
}

/* Media Inquiries */
.media-inquiries-section {
  text-align: center;
  padding: 50px 0 60px;
  background: #f9f7f8;
}

.media-inquiries-section h2 {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-primary-dark, #333);
}

.media-inquiries-section p {
  font-size: 1.05em;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.media-inquiries-section a {
  color: var(--color-primary, #8b5e83);
  font-weight: 600;
  text-decoration: underline;
}

/* Responsive: stack cards vertically on mobile */
@media (max-width: 768px) {
  .press-hero-section .section-header {
    margin-bottom: 30px;
  }

  .press-hero-section .section-title {
    font-size: 2rem;
  }

  .press-news-card {
    flex-direction: column;
  }

  .press-news-card-image {
    flex: none;
    padding: 15px 15px 0 15px;
  }

  .press-news-card-image img {
    max-height: 180px;
    width: 100%;
  }

  .press-news-card-content {
    padding: 20px 24px;
  }
}
