/* News Page Styles */

.news-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.news-hero__content {
  position: relative;
  z-index: 2;
}





.news-hero__gradient {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}



.section-title--center {
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

/* Featured Story */
.featured-story {
  padding: 80px 0;
}

.featured-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.featured-card__image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.featured-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card__content {
  padding: 50px 40px;
}

.featured-card__meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.featured-card__date {
  font-size: 0.85rem;
  color: #666;
  font-weight: 600;
}

.featured-card__category {
  display: inline-block;
  background: #a855f7;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.featured-card__title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 20px;
  color: #1a1a1a;
  line-height: 1.3;
}

.featured-card__description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.featured-card__link {
  color: #a855f7;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.featured-card__link:hover {
  gap: 12px;
  color: #7e22ce;
}

/* News Categories */
.news-categories {
  padding: 80px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.category-btn {
  background: white;
  border: 2px solid #e5e7eb;
  padding: 20px 15px;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
      color: #a855f7;
}

.category-btn:hover {
  border-color: #a855f7;
  background: #f9f5ff;
}

.category-btn--active {
  background: #a855f7;
  color: white;
  border-color: #a855f7;
}

.category-btn__icon {
  font-size: 1.5rem;
}

/* News Grid */
.news-grid-section {
  padding: 80px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.news-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.news-card__image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f0f0f0;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.05);
}

.news-card__content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card__meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.8rem;
  align-items: center;
}

.news-card__date {
  color: #999;
  font-weight: 600;
}

.news-card__category {
  background: #a855f7;
  color: white;
  padding: 3px 10px;
  border-radius: 15px;
  font-weight: 600;
}

.news-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: #1a1a1a;
  line-height: 1.4;
}

.news-card__excerpt {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  flex: 1;
}

.news-card__link {
  color: #a855f7;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.news-card__link:hover {
  gap: 12px;
  color: #7e22ce;
}

/* Press Releases */
.press-releases {
  padding: 80px 0;
}

.press-releases-list {
  margin-top: 60px;
}

.press-release {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 30px;
  margin-bottom: 30px;
  background: white;
  border-radius: 12px;
  border-left: 4px solid #a855f7;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.press-release:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.press-release__date {
  font-size: 0.9rem;
  font-weight: 700;
  color: #a855f7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.press-release__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 15px;
  color: #1a1a1a;
  line-height: 1.4;
}

.press-release__excerpt {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.press-release__link {
  color: #a855f7;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.press-release__link:hover {
  gap: 12px;
  color: #7e22ce;
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 0;
}

.newsletter-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #a855f7;
}

.newsletter-disclaimer {
  font-size: 0.85rem;
  color: #999;
  text-align: center;
}

.newsletter-disclaimer a {
  color: #a855f7;
  text-decoration: none;
  font-weight: 600;
}

.newsletter-disclaimer a:hover {
  text-decoration: underline;
}

/* Media Mentions */
.media-mentions {
  padding: 80px 0;
}

.media-mentions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.media-mention {
  background: linear-gradient(135deg, #f5f3ff 0%, #faf5ff 100%);
  border: 1px solid #e9d5ff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.media-mention__publication {
  font-size: 0.9rem;
  font-weight: 700;
  color: #a855f7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.media-mention__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
  margin-bottom: 15px;
}

.media-mention__date {
  font-size: 0.8rem;
  color: #999;
}

/* CTA Section */
.news-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  margin: 0 0 20px;
  line-height: 1.3;
}

.cta-text {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .news-hero__title {
    font-size: 2.5rem;
  }

  .featured-card {
    grid-template-columns: 1fr;
  }

  .featured-card__image {
    height: 300px;
  }

  .featured-card__content {
    padding: 30px;
  }

  .featured-card__title {
    font-size: 1.5rem;
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .press-release {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .news-hero {
    padding: 80px 0 60px;
  }

  .news-hero__title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .featured-card__title {
    font-size: 1.2rem;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-btn {
    padding: 15px 10px;
    font-size: 0.8rem;
  }

  .media-mentions-grid {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 1.5rem;
  }
}
