/* style/news.css */
.page-news {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-news .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-news .hero-section {
  background-color: var(--primary-color, #003366);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-news .hero-container {
  max-width: 900px;
  z-index: 1;
}

.page-news .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--secondary-color, #FFD700);
}

.page-news .hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-news .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--secondary-color, #FFD700);
  color: var(--primary-color, #003366);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news .cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-news .section-title {
  font-size: 2.5em;
  color: var(--primary-color, #003366);
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-news .section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news .latest-news-section, .page-news .categories-section, .page-news .why-follow-section, .page-news .cta-promo-section, .page-news .contact-support-section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.page-news .categories-section, .page-news .contact-support-section {
  background-color: #f0f4f8;
}

.page-news .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-news .news-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news .news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.page-news .news-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-news .news-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-news .news-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-news .news-card-title {
  font-size: 1.5em;
  color: var(--primary-color, #003366);
  margin-bottom: 15px;
  line-height: 1.3;
  font-weight: bold;
}

.page-news .news-card-summary {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-news .news-card-date {
  font-size: 0.85em;
  color: #999999;
  display: block;
  margin-top: auto;
}

.page-news .read-more {
  display: flex;
  align-items: center;
  color: var(--secondary-color, #FFD700);
  font-weight: bold;
  margin-top: 15px;
}

.page-news .read-more .arrow {
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.page-news .news-card:hover .read-more .arrow {
  margin-left: 12px;
}

.page-news .category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-news .category-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-news .category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.page-news .category-card-icon {
  width: 100px; 
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-news .category-card-title {
  font-size: 1.8em;
  color: var(--primary-color, #003366);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-news .category-card-description {
  font-size: 0.95em;
  color: #555555;
}

.page-news .cta-promo-section {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color, #003366) 0%, #001a33 100%);
  color: #ffffff;
  padding: 80px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.page-news .cta-promo-section .section-title {
  color: var(--secondary-color, #FFD700);
  margin-bottom: 25px;
}

.page-news .cta-promo-section .section-description {
  color: #e0e0e0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-news .primary-cta {
  background-color: var(--secondary-color, #FFD700);
  color: var(--primary-color, #003366);
}

.page-news .primary-cta:hover {
  background-color: #e6c200;
}

.page-news .why-follow-section {
  background-color: #ffffff;
}

.page-news .reason-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-news .reason-list li {
  background-color: #f9f9f9;
  border-left: 5px solid var(--secondary-color, #FFD700);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

.page-news .reason-list li:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.page-news .reason-title {
  font-size: 1.4em;
  color: var(--primary-color, #003366);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-news .reason-list p {
  color: #555555;
  font-size: 0.95em;
}

.page-news .contact-support-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #e6f0f7; /* Light blueish grey */
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.page-news .contact-support-section .section-title {
  color: var(--primary-color, #003366);
  margin-bottom: 25px;
}

.page-news .contact-support-section .section-description {
  color: #555555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-news .secondary-cta {
  background-color: var(--primary-color, #003366);
  color: #ffffff;
}

.page-news .secondary-cta:hover {
  background-color: #004d99; /* Slightly darker primary color */
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-news .text-link {
  color: var(--secondary-color, #FFD700);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news .text-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-news .hero-title {
    font-size: 2.8em;
  }
  .page-news .section-title {
    font-size: 2em;
  }
  .page-news .news-grid, .page-news .category-grid, .page-news .reason-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-news .hero-section, .page-news .latest-news-section, .page-news .categories-section, .page-news .why-follow-section, .page-news .cta-promo-section, .page-news .contact-support-section {
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  .page-news .hero-title {
    font-size: 2.2em;
  }
  .page-news .hero-description {
    font-size: 1em;
  }
  .page-news .section-title {
    font-size: 1.8em;
  }
  .page-news .section-description {
    font-size: 0.95em;
  }
  .page-news .news-grid, .page-news .category-grid, .page-news .reason-list {
    grid-template-columns: 1fr;
  }
  .page-news .news-card-image {
    height: 200px;
  }
  .page-news .news-card-title {
    font-size: 1.3em;
  }
  .page-news .category-card-title {
    font-size: 1.5em;
  }
  .page-news .category-card-icon {
    width: 80px;
    height: 80px;
  }
  .page-news .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-news .reason-title {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-news .hero-section, .page-news .latest-news-section, .page-news .categories-section, .page-news .why-follow-section, .page-news .cta-promo-section, .page-news .contact-support-section {
    padding: 30px 0;
  }
  .page-news .hero-title {
    font-size: 1.8em;
  }
  .page-news .section-title {
    font-size: 1.6em;
  }
  .page-news .news-card-content {
    padding: 15px;
  }
}