/* /sport/ section styles — works alongside /css/theme.css and /css/style.css */

.section-hero {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}
.section-hero__kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--c-accent, #1f6feb);
  margin: 0 0 0.5rem;
  font-weight: 600;
}
.section-hero__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}
.section-hero__lede {
  font-size: 1.1rem;
  color: #4a4a4a;
  max-width: 60ch;
  margin: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}

.news-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.news-card__media {
  display: block;
  background: #e9eef5;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-card__body {
  padding: 1rem 1.1rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.news-card__kicker {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  color: var(--c-accent, #1f6feb);
  margin: 0;
  font-weight: 600;
}
.news-card__title {
  font-size: 1.15rem;
  line-height: 1.3;
  margin: 0;
}
.news-card__title a {
  color: inherit;
  text-decoration: none;
}
.news-card__title a:hover {
  text-decoration: underline;
}
.news-card__teaser {
  font-size: 0.95rem;
  color: #4a4a4a;
  margin: 0;
  flex: 1;
}
.news-card__meta {
  font-size: 0.82rem;
  color: #6a6a6a;
  margin: 0;
}

/* Article */
.news-article {
  max-width: 760px;
  margin: 1.5rem auto 2rem;
}
.article-header {
  margin-bottom: 2rem;
}
.article-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--c-accent, #1f6feb);
  margin: 0 0 0.5rem;
  font-weight: 600;
}
.article-title {
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  line-height: 1.18;
  margin: 0 0 0.75rem;
}
.article-meta {
  font-size: 0.92rem;
  color: #6a6a6a;
  margin: 0 0 1.5rem;
}
.article-hero {
  margin: 0 0 1.5rem;
}
.article-hero img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #e9eef5;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.article-hero figcaption {
  font-size: 0.85rem;
  color: #6a6a6a;
  margin: 0.5rem 0 0;
  font-style: italic;
}
.article-body {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #222;
}
.article-lede {
  font-size: 1.18rem;
  line-height: 1.55;
  color: #333;
  font-weight: 500;
  margin: 0 0 1.5rem;
}
.article-body h2 {
  font-size: 1.45rem;
  line-height: 1.3;
  margin: 2rem 0 0.75rem;
}
.article-body p {
  margin: 0 0 1.1rem;
}
.article-body a {
  color: var(--c-accent, #1f6feb);
}

.article-footer-meta {
  max-width: 760px;
  margin: 2rem auto 0;
  padding: 1.25rem 1.5rem;
  background: #f5f7fa;
  border-left: 3px solid var(--c-accent, #1f6feb);
  border-radius: 4px;
}
.article-footer-meta p {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
}
.article-footer-meta p:last-child {
  margin-bottom: 0;
}
.article-disclaimer {
  font-size: 0.85rem !important;
  color: #555;
}

.post-nav {
  max-width: 760px;
  margin: 2rem auto 3rem;
}
.post-nav__back {
  display: inline-block;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  font-size: 0.95rem;
}
.post-nav__back:hover {
  background: #f0f3f8;
}

/* Author profile */
.author-profile {
  max-width: 820px;
  margin: 1.5rem auto 2rem;
}
.author-header {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .author-header { grid-template-columns: 1fr; }
}
.author-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  background: #e9eef5;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.author-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--c-accent, #1f6feb);
  margin: 0 0 0.4rem;
  font-weight: 600;
}
.author-name {
  font-size: 2.2rem;
  margin: 0 0 0.6rem;
  line-height: 1.1;
}
.author-tagline {
  font-size: 1.05rem;
  color: #4a4a4a;
  margin: 0 0 1rem;
}
.author-credentials {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}
.author-credentials li {
  margin-bottom: 0.45rem;
}
.author-bio h2 {
  font-size: 1.35rem;
  margin: 1.8rem 0 0.6rem;
}
.author-bio p {
  margin: 0 0 1rem;
  line-height: 1.65;
}
.author-articles h2 {
  font-size: 1.35rem;
  margin: 1.8rem 0 0.6rem;
}

/* Dark theme harmonisation if the existing theme has dark mode */
@media (prefers-color-scheme: dark) {
  .news-card { background: #1c1f24; border-color: rgba(255,255,255,0.08); }
  .news-card__teaser, .article-meta, .news-card__meta { color: #aaa; }
  .article-body { color: #ddd; }
  .article-body p { color: inherit; }
  .article-footer-meta { background: #1c1f24; }
  .article-footer-meta p { color: #ddd; }
}

.forum-cta-block {
  background: linear-gradient(135deg, #1a1a22 0%, #14141a 60%, #2a1810 100%);
  color: #fafaf9;
  border-radius: 10px;
  padding: 32px 40px;
  margin: 40px auto;
  max-width: 880px;
  position: relative;
  overflow: hidden;
}
.forum-cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,138,74,0.12), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(181,74,24,0.10), transparent 50%);
  pointer-events: none;
}
.forum-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.forum-cta-copy h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.020em;
  color: #fff;
}
.forum-cta-copy p {
  margin: 0;
  color: #d4d4d8;
  font-size: 15px;
  line-height: 1.55;
}
.forum-cta-button {
  display: inline-flex;
  align-items: center;
  padding: 14px 26px;
  background: var(--accent, #b54a18);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border-bottom: none;
  letter-spacing: 0.015em;
  box-shadow: 0 4px 14px rgba(181,74,24,0.40);
  transition: transform .12s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.forum-cta-button:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(181,74,24,0.55); }
@media (max-width: 760px) {
  .forum-cta-block { padding: 24px 22px; margin: 32px 16px; }
  .forum-cta-inner { grid-template-columns: 1fr; gap: 20px; text-align: center; }
}
