/* News Articles Section */
.news-articles-section {
  padding: 4rem 0;
  background: transparent;
  margin-bottom: 2rem;
}

.news-articles-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.news-articles-section .coming-soon-card {
  padding: 4rem 2rem;
  text-align: center;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* NEWS ARTICLE CARD */
.news-article-card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-glass);
  transition: 0.3s ease;
}

.news-article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.news-article-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-article-content {
  padding: 1.6rem;
}

.news-article-title {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
  color: hsl(var(--text-primary));
}

.news-article-text {
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.6;
  color: hsl(var(--text-muted));
}


/* Coming Soon Card Content */
.coming-soon-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.coming-soon-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  opacity: 0.8;
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.coming-soon-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: hsl(var(--text-primary));
  margin: 0;
  background: linear-gradient(135deg, hsl(270, 75%, 60%), hsl(210, 100%, 56%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coming-soon-description {
  font-size: 1rem;
  color: hsl(var(--text-muted));
  margin: 0;
  max-width: 500px;
  line-height: 1.6;
}

.coming-soon-dots {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}

.coming-soon-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: hsl(var(--primary));
  opacity: 0.4;
  animation: bounce-dots 1.4s infinite;
}

.coming-soon-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.coming-soon-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce-dots {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .news-articles-section {
    padding: 2rem 0;
    margin-bottom: 1rem;
    overflow-x: hidden;
  }

  .news-articles-container {
    gap: 1.5rem;
    overflow-x: hidden;
    margin-top: 1rem;
  }

  .news-articles-section .coming-soon-card {
    padding: 3rem 1.5rem;
    min-height: 300px;
    overflow-x: hidden;
  }

  .news-articles-section .section-title {
    font-size: 2rem;
    margin: 0 auto 1rem auto;
  }

  .news-articles-section .section-header {
    margin-bottom: 2rem;
  }

  .coming-soon-icon {
    width: 64px;
    height: 64px;
  }

  .coming-soon-title {
    font-size: 1.5rem;
  }

  .coming-soon-description {
    font-size: 0.95rem;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
  .news-articles-section {
    padding: 3rem 0;
    margin-bottom: 1.5rem;
  }

  .news-articles-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .news-articles-section .coming-soon-card {
    padding: 3.5rem 2rem;
    min-height: 330px;
  }

  .coming-soon-title {
    font-size: 1.65rem;
  }
}

/* Desktop adjustments */
@media (min-width: 1024px) {
  .news-articles-section {
    padding: 4rem 0;
    margin-bottom: 2rem;
  }

  .news-articles-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .news-articles-section .coming-soon-card {
    padding: 4rem 2rem;
    min-height: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .news-articles-section .coming-soon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
  }

  .coming-soon-title {
    font-size: 1.75rem;
  }
}