/* style/index-upcoming-cockfighting-events.css */

/* --- Base Styles --- */
.page-index-upcoming-cockfighting-events {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: var(--secondary-color); /* Matches body background */
}

.page-index-upcoming-cockfighting-events__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-upcoming-cockfighting-events__section-title {
  font-size: 36px;
  color: #017439;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-index-upcoming-cockfighting-events__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #017439;
  border-radius: 2px;
}

.page-index-upcoming-cockfighting-events__section-title--light {
  color: #ffffff;
}

.page-index-upcoming-cockfighting-events__section-title--light::after {
  background-color: #ffffff;
}

.page-index-upcoming-cockfighting-events__text-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 17px;
  color: #333333;
}

.page-index-upcoming-cockfighting-events__text-block--light {
  color: #f0f0f0;
}

/* --- Image & Button Base Styles (Global for this page) --- */
.page-index-upcoming-cockfighting-events img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-index-upcoming-cockfighting-events__cta-button,
.page-index-upcoming-cockfighting-events__btn-primary,
.page-index-upcoming-cockfighting-events__btn-secondary,
.page-index-upcoming-cockfighting-events a[class*="button"],
.page-index-upcoming-cockfighting-events a[class*="btn"] {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  text-align: center;
}

.page-index-upcoming-cockfighting-events__btn-primary,
.page-index-upcoming-cockfighting-events__cta-button {
  background: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid transparent;
}