/* News page custom styles */
.news-hero-section {
  background: linear-gradient(120deg, #fef7e5 82%, #fdedb3 100%);
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 2px solid var(--color-gray-100);
}
.news-hero-content {
  align-items: center;
  text-align: center;
  gap: var(--space-4);
}
.news-hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 700px;
  margin-top: var(--space-6);
}
.news-hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--color-gray-700);
  margin-bottom: var(--space-4);
}
.news-section-nav {
  margin: var(--space-6) 0 var(--space-12) 0;
}
.news-section-list {
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  font-family: var(--font-accent);
  font-size: var(--font-size-lg);
}
.news-section-list a {
  color: var(--color-primary);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-xs);
  transition: background var(--transition-base), color var(--transition-base);
}
.news-section-list a:hover,
.news-section-list a:focus {
  color: var(--color-success);
  background: var(--color-gray-100);
}

.news-block {
  margin-bottom: var(--space-12);
  scroll-margin-top: var(--space-12);
}
.news-block.alt {
  background: linear-gradient(135deg, #fafbfc 40%, #f3f6f8 100%);
  padding: var(--space-8) 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}
.news-block-header {
  margin-bottom: var(--space-8);
  text-align: center;
}
.news-block-header h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.news-block-header p {
  font-size: var(--font-size-lg);
  color: var(--color-gray-700);
}

/* News Grid Layout */
.news-grid {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-6);
}
.news-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.news-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}
.news-card:hover .news-card-image img {
  transform: scale(1.05);
}
.news-card-content {
  padding: var(--space-5);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.news-date {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-2);
  display: block;
}
.news-card h3 {
  font-size: var(--font-size-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}
.news-card p {
  color: var(--color-gray-700);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  flex-grow: 1;
}
.news-read-more {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-base);
  margin-top: auto;
}
.news-read-more:hover {
  color: var(--color-success);
}

/* News List Layout */
.news-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.news-list-item {
  display: flex;
  gap: var(--space-6);
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}
.news-list-item:hover {
  box-shadow: var(--shadow-md);
}
.news-list-content {
  flex: 2;
}
.news-list-content h3 {
  font-size: var(--font-size-2xl);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.news-list-content p {
  color: var(--color-gray-700);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}
.news-list-image {
  flex: 1;
  min-width: 250px;
}
.news-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* Rating */
.news-rating {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.rating-stars {
  color: #f5a623;
  font-size: var(--font-size-xl);
}
.rating-text {
  font-weight: 700;
  color: var(--color-primary);
  font-size: var(--font-size-lg);
}

/* Events */
.events-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.event-card {
  display: flex;
  gap: var(--space-6);
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.event-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}
.event-date-badge {
  background: var(--color-primary);
  color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  text-align: center;
  min-width: 80px;
  height: fit-content;
  display: flex;
  flex-direction: column;
}
.event-day {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  line-height: 1;
}
.event-month {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  margin-top: var(--space-1);
}
.event-content {
  flex: 1;
}
.event-content h3 {
  font-size: var(--font-size-2xl);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.event-content p {
  margin-bottom: var(--space-2);
  line-height: 1.6;
}
.event-content .button {
  margin-top: var(--space-4);
}

/* Newsletter CTA */
.news-cta-section {
  margin: var(--space-12) auto;
  max-width: 700px;
}
.news-cta {
  padding: var(--space-8);
  background: linear-gradient(120deg, #fef7e5 50%, #fdedb3 100%);
  text-align: center;
  gap: var(--space-4);
}
.news-cta h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.news-cta p {
  font-size: var(--font-size-lg);
  color: var(--color-gray-700);
  margin-bottom: var(--space-4);
}
.news-newsletter-form {
  display: flex;
  gap: var(--space-3);
  max-width: 500px;
  margin: 0 auto;
}
.news-newsletter-form input[type="email"] {
  flex: 1;
  padding: var(--space-3);
  border: 2px solid var(--color-gray-300);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-base);
  transition: border-color var(--transition-base);
}
.news-newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .news-hero-subtitle {
    font-size: var(--font-size-lg);
  }
  .news-section-list {
    font-size: var(--font-size-base);
    gap: var(--space-1) var(--space-2);
  }
  .news-list-item {
    flex-direction: column;
    padding: var(--space-4);
  }
  .news-list-image {
    min-width: unset;
  }
  .event-card {
    flex-direction: column;
    padding: var(--space-4);
  }
  .event-date-badge {
    min-width: 60px;
    align-self: flex-start;
  }
  .news-cta {
    padding: var(--space-6) var(--space-4);
  }
  .news-newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-section-list {
    flex-direction: column;
    align-items: stretch;
  }
  .news-section-list a {
    text-align: center;
    padding: var(--space-2);
  }
}
