.page-news-euro-2024-preview {
  --primary-color: #1A202C;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #0a0a0a;
  --background-light: #ffffff;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--background-dark); /* Inherited from body, but explicitly set for clarity */
}

.page-news-euro-2024-preview__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-news-euro-2024-preview__hero-section {
  position: relative;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--background-dark);
  color: var(--text-light);
}

.page-news-euro-2024-preview__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-news-euro-2024-preview__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-news-euro-2024-preview__hero-section .page-news-euro-2024-preview__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-news-euro-2024-preview__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
  font-weight: 700;
}

.page-news-euro-2024-preview__description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  color: var(--text-light);
}

.page-news-euro-2024-preview__cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-news-euro-2024-preview__btn-primary,
.page-news-euro-2024-preview__btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-news-euro-2024-preview__btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.page-news-euro-2024-preview__btn-primary:hover {
  background-color: darken(var(--secondary-color), 10%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-news-euro-2024-preview__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-news-euro-2024-preview__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-news-euro-2024-preview__content-section {
  padding: 60px 0;
}

.page-news-euro-2024-preview__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-news-euro-2024-preview__light-bg {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-news-euro-2024-preview__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: inherit;
  font-weight: 700;
}

.page-news-euro-2024-preview__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-news-euro-2024-preview__content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-news-euro-2024-preview__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-news-euro-2024-preview__list-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 5px solid var(--secondary-color);
  color: inherit;
}

.page-news-euro-2024-preview__list-item h3 {
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.page-news-euro-2024-preview__list-item p {
  font-size: 1em;
  margin-bottom: 0;
  color: inherit;
}

.page-news-euro-2024-preview__grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.page-news-euro-2024-preview__card {
  background-color: var(--background-light);
  color: var(--text-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-news-euro-2024-preview__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-news-euro-2024-preview__card-title {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: 600;
}

.page-news-euro-2024-preview__card-text {
  font-size: 1em;
  line-height: 1.7;
  color: var(--text-dark);
}

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

.page-news-euro-2024-preview__inline-link:hover {
  color: darken(var(--secondary-color), 10%);
  text-decoration: underline;
}

.page-news-euro-2024-preview__cta-final {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: var(--primary-color);
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-news-euro-2024-preview__cta-final .page-news-euro-2024-preview__text-block {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-news-euro-2024-preview__cta-final .page-news-euro-2024-preview__btn-primary {
  padding: 18px 45px;
  font-size: 1.3em;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-news-euro-2024-preview__main-title {
    font-size: 3em;
  }
  .page-news-euro-2024-preview__description {
    font-size: 1.1em;
  }
  .page-news-euro-2024-preview__section-title {
    font-size: 2em;
  }
  .page-news-euro-2024-preview__list-item h3 {
    font-size: 1.2em;
  }
  .page-news-euro-2024-preview__cta-final .page-news-euro-2024-preview__text-block {
    font-size: 1.2em;
  }
  .page-news-euro-2024-preview__cta-final .page-news-euro-2024-preview__btn-primary {
    font-size: 1.1em;
    padding: 15px 35px;
  }
}

@media (max-width: 768px) {
  .page-news-euro-2024-preview {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-news-euro-2024-preview__hero-section {
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-news-euro-2024-preview__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-news-euro-2024-preview__description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-news-euro-2024-preview__cta-group {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }
  .page-news-euro-2024-preview__btn-primary,
  .page-news-euro-2024-preview__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-news-euro-2024-preview__content-section {
    padding: 40px 0;
  }
  .page-news-euro-2024-preview__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-news-euro-2024-preview__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-news-euro-2024-preview__text-block {
    font-size: 1em;
  }
  .page-news-euro-2024-preview__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px 0;
  }
  .page-news-euro-2024-preview__list-item {
    padding: 15px;
    margin-bottom: 10px;
  }
  .page-news-euro-2024-preview__list-item h3 {
    font-size: 1.1em;
  }
  .page-news-euro-2024-preview__grid-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-news-euro-2024-preview__card {
    padding: 20px;
  }
  .page-news-euro-2024-preview__card-title {
    font-size: 1.3em;
  }
  .page-news-euro-2024-preview__cta-final {
    padding: 30px 15px;
    margin-top: 40px;
  }
  .page-news-euro-2024-preview__cta-final .page-news-euro-2024-preview__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
  }
  .page-news-euro-2024-preview__cta-final .page-news-euro-2024-preview__btn-primary {
    font-size: 1em;
    padding: 12px 25px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-news-euro-2024-preview__main-title {
    font-size: 1.8em;
  }
  .page-news-euro-2024-preview__section-title {
    font-size: 1.5em;
  }
  .page-news-euro-2024-preview__cta-group {
    gap: 10px;
  }
}