/* style/index-fabet-latest-news.css */

.page-index-fabet-latest-news {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light text for dark background */
  background-color: #0A2342; /* Main dark blue background */
}

.page-index-fabet-latest-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-fabet-latest-news__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-fabet-latest-news__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-fabet-latest-news__section-description {
  font-size: 1.1em;
  color: #c0c0c0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-fabet-latest-news__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1a3a60 100%);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: left;
}

.page-index-fabet-latest-news__hero-content {
  max-width: 600px;
  padding: 20px;
}

.page-index-fabet-latest-news__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-index-fabet-latest-news__hero-subtitle {
  font-size: 1.3em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-index-fabet-latest-news__hero-image-wrapper {
  flex-shrink: 0;
}

.page-index-fabet-latest-news__hero-image {
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-fabet-latest-news__btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.page-index-fabet-latest-news__btn--primary {
  background-color: #FFD700;
  color: #0A2342;
  border: 2px solid #FFD700;
}

.page-index-fabet-latest-news__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-fabet-latest-news__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-index-fabet-latest-news__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-3px);
}

.page-index-fabet-latest-news__news-grid, 
.page-index-fabet-latest-news__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-fabet-latest-news__news-card, 
.page-index-fabet-latest-news__promo-card {
  background-color: #1a3a60;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-index-fabet-latest-news__news-image, 
.page-index-fabet-latest-news__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-index-fabet-latest-news__news-content, 
.page-index-fabet-latest-news__promo-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-index-fabet-latest-news__news-title, 
.page-index-fabet-latest-news__promo-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-fabet-latest-news__news-date {
  font-size: 0.9em;
  color: #909090;
  margin-bottom: 15px;
}

.page-index-fabet-latest-news__news-excerpt, 
.page-index-fabet-latest-news__promo-text {
  font-size: 1em;
  color: #c0c0c0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-fabet-latest-news__news-excerpt a, 
.page-index-fabet-latest-news__promo-text a {
  color: #FFD700;
  text-decoration: underline;
}

.page-index-fabet-latest-news__read-more {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: auto;
}

.page-index-fabet-latest-news__read-more:hover {
  color: #e6c200;
}

.page-index-fabet-latest-news__call-to-action-small {
  background-color: #1a3a60;
  padding: 20px;
  border-radius: 8px;
  margin-top: 50px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-index-fabet-latest-news__call-to-action-small a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-index-fabet-latest-news__call-to-action-small a:hover {
  text-decoration: underline;
}

.page-index-fabet-latest-news__important-announcements {
  background-color: #0A2342;
}

.page-index-fabet-latest-news__announcement-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
}

.page-index-fabet-latest-news__announcement-item {
  background-color: #1a3a60;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-fabet-latest-news__announcement-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-fabet-latest-news__announcement-date {
  font-size: 0.9em;
  color: #909090;
  margin-bottom: 15px;
}

.page-index-fabet-latest-news__announcement-text {
  font-size: 1em;
  color: #c0c0c0;
}

.page-index-fabet-latest-news__exclusive-promotions {
  background-color: #0A2342;
}

.page-index-fabet-latest-news__promo-card {
  background-color: #1a3a60;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  padding-bottom: 25px;
}

.page-index-fabet-latest-news__promo-card .page-index-fabet-latest-news__btn {
  margin-top: 20px;
  align-self: center;
  margin-left: 0;
}

.page-index-fabet-latest-news__guides-tips {
  background-color: #0A2342;
}

.page-index-fabet-latest-news__guide-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-fabet-latest-news__guide-item {
  background-color: #1a3a60;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.page-index-fabet-latest-news__guide-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-fabet-latest-news__guide-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-fabet-latest-news__guide-text {
  font-size: 0.95em;
  color: #c0c0c0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-fabet-latest-news__guide-text a {
  color: #FFD700;
  text-decoration: underline;
}

.page-index-fabet-latest-news__cta-bottom {
  background: linear-gradient(135deg, #1a3a60, #0A2342);
  padding: 80px 0;
}

.page-index-fabet-latest-news__cta-content {
  max-width: 900px;
}

.page-index-fabet-latest-news__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-fabet-latest-news__cta-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-index-fabet-latest-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-fabet-latest-news__cta-buttons .page-index-fabet-latest-news__btn {
  margin-left: 0; /* Override default margin for secondary btn */
}

.page-index-fabet-latest-news .highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-fabet-latest-news__hero {
    flex-direction: column;
    text-align: center;
  }

  .page-index-fabet-latest-news__hero-content {
    max-width: 100%;
  }

  .page-index-fabet-latest-news__hero-title {
    font-size: 2.8em;
  }

  .page-index-fabet-latest-news__hero-subtitle {
    font-size: 1.1em;
  }

  .page-index-fabet-latest-news__hero-image {
    max-width: 100%;
  }

  .page-index-fabet-latest-news__section-title {
    font-size: 2.2em;
  }

  .page-index-fabet-latest-news__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-index-fabet-latest-news__section {
    padding: 40px 0;
  }

  .page-index-fabet-latest-news__news-grid, 
  .page-index-fabet-latest-news__promo-grid, 
  .page-index-fabet-latest-news__guide-list {
    grid-template-columns: 1fr;
  }

  .page-index-fabet-latest-news__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-index-fabet-latest-news__hero-title {
    font-size: 2.2em;
  }

  .page-index-fabet-latest-news__cta-title {
    font-size: 2em;
  }

  .page-index-fabet-latest-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-index-fabet-latest-news__hero {
    padding: 60px 0;
  }

  .page-index-fabet-latest-news__hero-title {
    font-size: 1.8em;
  }

  .page-index-fabet-latest-news__section-title {
    font-size: 1.8em;
  }

  .page-index-fabet-latest-news__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-fabet-latest-news__cta-title {
    font-size: 1.8em;
  }
}