/* ============================================
   NEWS & ARTICLE PAGES
   ============================================ */

/* ---- SHARED ---- */

body {
  background: #f8f8f8;
}

/* Force dark footer on news pages */
footer {
  background-color: #363537 !important;
}

/* ---- NEWS INDEX ---- */

.news-header {
  padding: 160px 24px 80px;
  text-align: center;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.news-header-inner {
  max-width: 640px;
  margin: 0 auto;
}

.news-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #363537;
  margin-bottom: 16px;
  line-height: 1.1;
}

.news-subtitle {
  font-size: 1.1rem;
  color: rgba(54, 53, 55, 0.6);
  line-height: 1.7;
}

.news-main {
  padding: 80px 24px;
}

.news-grid-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.news-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  display: grid;
  grid-template-columns: 360px 1fr;
  transition: box-shadow 0.3s ease;
}

.news-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.news-card-image-link {
  display: block;
  overflow: hidden;
}

.news-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card-image {
  transform: scale(1.03);
}

.news-card-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-card-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0cce6b;
}

.news-card-date {
  font-size: 0.8rem;
  color: rgba(54, 53, 55, 0.5);
}

.news-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.3;
  color: #363537;
}

.news-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-card-title a:hover {
  color: #0cce6b;
}

.news-card-excerpt {
  font-size: 0.95rem;
  color: rgba(54, 53, 55, 0.65);
  line-height: 1.75;
  flex: 1;
}

.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
  flex-wrap: wrap;
  gap: 12px;
}

.news-card-publications {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-card-publications span {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(54, 53, 55, 0.4);
  background: #f5f5f5;
  padding: 4px 10px;
  border-radius: 20px;
}

.news-card-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0cce6b;
  text-decoration: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.news-card-cta:hover {
  opacity: 0.7;
}

/* ---- ARTICLE PAGE ---- */

.article-main {
  padding-top: 80px;
}

.article-breadcrumb {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 16px 24px;
}

.article-breadcrumb-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(54, 53, 55, 0.5);
}

.article-breadcrumb-inner a {
  color: rgba(54, 53, 55, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.article-breadcrumb-inner a:hover {
  color: #0cce6b;
}

.article-hero {
  background: #ffffff;
  padding: 64px 24px 48px;
  border-bottom: 1px solid #e5e5e5;
}

.article-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.article-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0cce6b;
}

.article-date {
  font-size: 0.8rem;
  color: rgba(54, 53, 55, 0.5);
}

.article-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #363537;
  line-height: 1.15;
  margin-bottom: 24px;
}

.article-intro {
  font-size: 1.15rem;
  color: rgba(54, 53, 55, 0.7);
  line-height: 1.75;
  border-left: 4px solid #0cce6b;
  padding-left: 20px;
}

.article-image-wrap {
  background: #f0f0f0;
  padding: 48px 24px;
}

.article-image-inner {
  max-width: 800px;
  margin: 0 auto;
}

.article-image {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.article-image-caption {
  font-size: 0.8rem;
  color: rgba(54, 53, 55, 0.45);
  text-align: center;
  margin-top: 12px;
}

.article-body-wrap {
  padding: 64px 24px;
  background: #ffffff;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
}

.article-body p {
  font-size: 1.05rem;
  color: rgba(54, 53, 55, 0.8);
  line-height: 1.85;
  margin-bottom: 24px;
}

.article-quote {
  border-left: 4px solid #ef2d56;
  padding: 24px 28px;
  margin: 40px 0;
  background: #fafafa;
  border-radius: 0 12px 12px 0;
  font-size: 1.1rem;
  font-style: italic;
  color: #363537;
  line-height: 1.7;
}

.article-quote cite {
  display: block;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  color: rgba(54, 53, 55, 0.5);
  margin-top: 12px;
}

/* As Seen In */
.article-coverage {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
}

.article-coverage-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(54, 53, 55, 0.4);
  margin-bottom: 20px;
}

.article-coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.article-coverage-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  background: #fafafa;
}

.article-coverage-card:hover {
  border-color: #0cce6b;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(12, 206, 107, 0.1);
}

.article-coverage-pub {
  font-size: 0.95rem;
  font-weight: 700;
  color: #363537;
}

.article-coverage-link {
  font-size: 0.8rem;
  color: #0cce6b;
  font-weight: 600;
}

/* Article CTA */
.article-cta {
  background: #363537;
  padding: 80px 24px;
  text-align: center;
}

.article-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.article-cta-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0cce6b;
  margin-bottom: 16px;
}

.article-cta-heading {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 32px;
  line-height: 1.2;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 768px) {
  .news-title {
    font-size: 2.4rem;
  }

  .news-card {
    grid-template-columns: 1fr;
  }

  .news-card-image {
    height: 220px;
  }

  .news-card-body {
    padding: 28px;
  }

  .article-title {
    font-size: 1.8rem;
  }

  .article-coverage-grid {
    grid-template-columns: 1fr;
  }

  .article-intro {
    font-size: 1rem;
  }
}
