/* News Page Specific Styles */

/* Color Variables - Brand Purple Theme */
:root {
  --brand-purple: #6B46C1;
  --brand-purple-dark: #553C9A;
  --brand-purple-light: #9F7AEA;
  --brand-purple-lighter: #E9D8FD;
  --brand-purple-gradient: linear-gradient(135deg, #6B46C1 0%, #9F7AEA 100%);
}

/* Hero Section - Hidden */
.hero-section {
  display: none;
}

.hero-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-text-wrapper {
  max-width: 600px;
}

.hero-badge,
.section-badge {
  display: inline-block;
  margin-bottom: 1rem;
}

.badge-text {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--brand-purple);
  color: white;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 2rem;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}

/* Featured Section */
.featured-section {
  padding: 5rem 2rem;
  background: white;
}

.section-container {
  max-width: 1440px;
  margin: 0 auto;
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.featured-text {
  padding-right: 2rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.section-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 2rem;
}

.button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--brand-purple);
  color: white;
}

.btn-primary:hover {
  background: var(--brand-purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(107,70,193,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-purple);
  border: 2px solid var(--brand-purple);
}

.btn-secondary:hover {
  background: var(--brand-purple);
  color: white;
}

.btn-icon {
  display: flex;
  align-items: center;
}

.featured-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.featured-link {
  display: block;
  position: relative;
}

.featured-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}

.featured-link:hover .play-overlay {
  background: rgba(0,0,0,0.5);
}

.play-button {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.featured-link:hover .play-button {
  transform: scale(1.1);
}

.play-button .material-icons {
  font-size: 36px;
  color: var(--brand-purple);
  margin-left: 4px;
}

/* News Grid Section */
.news-grid-section {
  padding: 5rem 2rem;
  background: #f8f8f8;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1440px;
  margin: 0 auto;
}

.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover .card-overlay {
  opacity: 1;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon .material-icons {
  color: var(--brand-purple);
}

.card-content {
  padding: 1.5rem;
}

.card-meta {
  margin-bottom: 0.5rem;
}

.card-date {
  font-size: 0.875rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  color: #1a1a1a;
}

.card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}

/* CTA Section */
.cta-section {
  padding: 5rem 2rem;
  background: var(--brand-purple-gradient);
  text-align: center;
  color: white;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  color: white;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--brand-purple);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: white;
  color: var(--brand-purple);
}

/* Footer Styles - Compact */
.footer-minimal {
  background: #1a1a1a;
  color: white;
  padding: 1.5rem 0 1rem;
  margin-top: 0;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo-link {
  display: block;
  text-decoration: none;
}

.footer-logo {
  height: 32px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.footer-group {
  display: flex;
  gap: 2rem;
}

.footer-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--brand-purple-light);
}

.footer-link.footer-current {
  color: var(--brand-purple-light);
  font-weight: 600;
}

.footer-partner {
  display: flex;
  align-items: center;
}

.partner-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}

.partner-link:hover {
  color: white;
}

.partner-logo {
  height: 32px;
  width: 32px;
  border-radius: 50%;
}

.partner-text {
  font-size: 0.875rem;
  white-space: nowrap;
}

.footer-impact-inline {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.impact-section-inline {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.impact-heading {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 600;
}

.impact-arrow {
  color: var(--brand-purple-light);
  font-size: 0.875rem;
}

.impact-links-inline {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.impact-link-inline {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.impact-link-inline:hover {
  color: var(--brand-purple-light);
}

/* Removed - Legal links moved to footer bottom */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.copyright {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
}

.clekzo-link {
  color: var(--brand-purple-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.clekzo-link:hover {
  color: var(--brand-purple);
}

.legal-links-minimal {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.legal-link-minimal {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.3s ease;
}

.legal-link-minimal:hover {
  color: var(--brand-purple-light);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--brand-purple);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: white;
}

/* Footer Responsive - Compact */
@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .footer-partner {
    justify-content: center;
  }
  
  .impact-links-inline {
    gap: 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-legal {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 479px) {
  .footer-minimal {
    padding: 1rem 0 0.75rem;
  }
  
  .footer-group {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .partner-text {
    display: none;
  }
  
  .impact-section-inline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .impact-links-inline {
    gap: 1rem;
  }
  
  .legal-links-minimal {
    justify-content: center;
    gap: 0.75rem;
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-container,
  .featured-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-section {
    min-height: auto;
  }
  
  .featured-text {
    padding-right: 0;
  }
  
  .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle,
  .section-description {
    font-size: 1rem;
  }
  
  .button-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .play-button {
    width: 60px;
    height: 60px;
  }
  
  .play-button .material-icons {
    font-size: 28px;
  }
}

@media (max-width: 479px) {
  .hero-container,
  .section-container {
    padding: 3rem 1rem;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-white,
  .btn-outline-white {
    width: 100%;
    justify-content: center;
  }
}