/* style/latest-match-predictions-today-focus.css */
.page-latest-match-predictions-today-focus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-latest-match-predictions-today-focus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure spacing from fixed header */
  background-color: #000080; /* Auxiliary color for hero background */
  color: #ffffff;
  overflow: hidden;
}

.page-latest-match-predictions-today-focus__hero-content {
  max-width: 900px;
  z-index: 10;
  margin-bottom: 40px;
}

.page-latest-match-predictions-today-focus__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  line-height: 1.2;
}

.page-latest-match-predictions-today-focus__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-latest-match-predictions-today-focus__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-latest-match-predictions-today-focus__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-latest-match-predictions-today-focus__section {
  padding: 60px 20px;
  text-align: center;
}

.page-latest-match-predictions-today-focus__content-area {
  max-width: 1200px;
  margin: 0 auto;
  color: #f0f0f0; /* Light text for content on dark background */
}

.page-latest-match-predictions-today-focus__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #FFD700; /* Gold for section titles */
}

.page-latest-match-predictions-today-focus__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: left;
  color: #f0f0f0;
}

.page-latest-match-predictions-today-focus__link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-latest-match-predictions-today-focus__link:hover {
  color: #fff;
  text-decoration: underline;
}

.page-latest-match-predictions-today-focus__keyword {
  color: #FFD700;
  font-weight: bold;
}

.page-latest-match-predictions-today-focus__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-latest-match-predictions-today-focus__cta-buttons--center {
  margin-top: 40px;
}

.page-latest-match-predictions-today-focus__btn-primary,
.page-latest-match-predictions-today-focus__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-latest-match-predictions-today-focus__btn-primary {
  background-color: #FFD700;
  color: #000080;
  border: 2px solid #FFD700;
}

.page-latest-match-predictions-today-focus__btn-primary:hover {
  background-color: #e6c200;
  color: #000066;
  border-color: #e6c200;
}

.page-latest-match-predictions-today-focus__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}