.press-release-container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.press-release-container h1,
.press-release-container h2,
.press-release-container h3 {
  margin-top: 2rem;
}

/* Scope typography to the press release container so site-wide lists/footers aren't affected */
.press-release-container p,
.press-release-container li {
  font-size: 1.1rem;
  line-height: 1.75;
}

.press-release-container ul {
  margin-left: 20px;
}

/*
  Article lead image — template pattern for all article and fundraiser pages.
  Wrap the lead image in <figure class="article-img"> like so:

    <figure class="article-img">
      <img src="image.jpg" alt="Description" />
    </figure>

  Optionally add a caption:
    <figure class="article-img">
      <img src="image.jpg" alt="Description" />
      <figcaption>Caption text here.</figcaption>
    </figure>
*/
figure.article-img {
  margin: 1.5rem auto;
  max-width: 480px;
  width: 100%;
  box-sizing: border-box;
}

figure.article-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

figure.article-img figcaption {
  font-size: 0.875rem;
  color: #666;
  margin-top: 0.5rem;
  text-align: center;
}

/* Fallback: bare img tags directly inside the container */
.press-release-container img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
}

.attachment-section {
  margin-top: 1.25rem;
}

.press-date {
  font-size: 1rem;
  color: #666;
  margin: 0.25rem 0 1rem;
}

/* Related articles block — injected by fsu-mcp-server/website_news/related.py */
.related-articles {
  margin: 2.5rem auto 2.5rem;
  max-width: 1060px;
  width: 100%;
  box-sizing: border-box;
}

.related-articles-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin: 0 0 0.75rem;
}

.related-articles-grid {
  display: flex;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.related-article-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 0;
  min-height: 80px;
  padding: 1rem 1rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-card-border);
  border-top: 3px solid #c8a84b;
  border-radius: 2px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.01em;
  transition: background 0.12s, border-top-color 0.12s, color 0.12s;
}

.related-article-card:hover {
  background: #f0ede6;
  border-top-color: #a08030;
  color: #96211a;
}

@media (max-width: 640px) {
  .related-articles-grid {
    flex-wrap: wrap;
  }
  .related-article-card {
    flex: 1 1 calc(50% - 0.375rem);
    min-height: 64px;
  }
}

@media (max-width: 400px) {
  .related-article-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .press-release-container {
    padding: 1rem;
  }

  .press-release-container p,
  .press-release-container li {
    font-size: 1.1rem;
  }

  .press-release-container ul {
    margin-left: 15px;
  }

  .press-release-container h1 {
    font-size: 1.75rem;
  }

  .press-release-container h2 {
    font-size: 1.5rem;
  }

  .press-release-container h3 {
    font-size: 1.25rem;
  }
}

/* End-of-article join CTA block */
.article-cta-block {
  margin: 0 auto 2rem;
  max-width: 1060px;
  padding: 0 2rem;
  box-sizing: border-box;
}

.article-cta-inner {
  background: #1a1a1a;
  color: #fff;
  padding: 2rem 2.5rem;
  border-radius: 8px;
  text-align: center;
}

.article-cta-inner h2 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: #f2c94f;
}

.article-cta-inner p {
  font-size: 0.95rem;
  margin: 0 0 1.25rem;
  opacity: 0.9;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .article-cta-inner {
    padding: 1.5rem;
  }
}
