.news-container {
  min-height: calc(100vh - 200px);
}

.news-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.news-item {
  display: flex;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(102, 102, 102, 0.3);
}

.news-item:last-child {
  border-bottom: none;
}

.news-date {
  font-size: 1rem;
  color: var(--color-grey-medium);
  font-weight: 600;
  min-width: 120px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-content {
  flex: 1;
}

.news-title {
  font-size: 1.5rem;
  color: var(--color-grey-light);
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.news-title a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease, text-shadow 0.3s ease;
  text-shadow: 0 0 0px rgba(135, 206, 250, 0);
}

.news-title a:hover {
  opacity: 1;
  text-shadow: 0 0 8px rgba(135, 206, 250, 0.6), 0 0 15px rgba(135, 206, 250, 0.4), 0 0 20px rgba(135, 206, 250, 0.3);
  animation: pulseGlow 3s ease-in-out infinite;
}

.news-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-grey-light);
}

/* Interview Page Styles */
.interview-article {
  max-width: 800px;
  margin: 0 auto;
}

.interview-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.interview-question {
  margin-bottom: 0.5rem;
}

.interview-question h2 {
  font-size: 1.4rem;
  color: var(--color-grey-light);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.5;
  margin: 0;
}

.interview-answer {
  margin-left: 1.5rem;
}

.interview-answer p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-grey-light);
  margin-bottom: 1rem;
}

.interview-answer p:last-child {
  margin-bottom: 0;
}

.interview-answer a {
  color: var(--color-grey-medium);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.interview-answer a:hover {
  color: var(--color-grey-light);
}

.interview-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(102, 102, 102, 0.3);
}

.back-link {
  display: inline-block;
  font-size: 1rem;
  color: var(--color-grey-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s ease;
  text-shadow: 0 0 0px rgba(135, 206, 250, 0);
}

.back-link:hover {
  color: var(--color-grey-light);
  text-shadow: 0 0 8px rgba(135, 206, 250, 0.6), 0 0 15px rgba(135, 206, 250, 0.4), 0 0 20px rgba(135, 206, 250, 0.3);
  animation: pulseGlow 3s ease-in-out infinite;
}

@media (max-width: 768px) {
  .news-item {
    flex-direction: column;
    gap: 1rem;
  }

  .news-date {
    min-width: auto;
  }

  .interview-answer {
    margin-left: 0;
  }

  .interview-question h2 {
    font-size: 1.2rem;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    text-shadow: 0 0 8px rgba(135, 206, 250, 0.6), 0 0 15px rgba(135, 206, 250, 0.4), 0 0 20px rgba(135, 206, 250, 0.3);
  }
  50% {
    text-shadow: 0 0 12px rgba(135, 206, 250, 0.8), 0 0 20px rgba(135, 206, 250, 0.6), 0 0 30px rgba(135, 206, 250, 0.5);
  }
}

