/* style/cockfighting-strategy.css */
.page-cockfighting-strategy {
  font-family: 'Arial', sans-serif;
  color: #E5E5E5; /* Light grey text for dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

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

.page-cockfighting-strategy__hero {
  background: linear-gradient(135deg, #1A202C 0%, #E53E3E 100%); /* Gradient background */
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.page-cockfighting-strategy__hero-content {
  z-index: 10;
  max-width: 800px;
}

.page-cockfighting-strategy__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-strategy__hero-description {
  font-size: 1.2em;
  color: #D1D1D1;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting-strategy__cta-button {
  display: inline-block;
  background-color: #E53E3E; /* Auxiliary color for CTA */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(229, 62, 62, 0.4);
}

.page-cockfighting-strategy__cta-button:hover {
  background-color: #ff5252;
  transform: translateY(-3px);
}

.page-cockfighting-strategy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-cockfighting-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-cockfighting-strategy__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-cockfighting-strategy__section:last-of-type {
  border-bottom: none;
}

.page-cockfighting-strategy__section-title {
  font-size: 2.5em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-cockfighting-strategy__section p {
  font-size: 1.1em;
  color: #B0B0B0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting-strategy__why-strategy p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.page-cockfighting-strategy__card {
  background-color: #2D3748; /* Slightly lighter dark background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-cockfighting-strategy__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-cockfighting-strategy__card-title {
  font-size: 1.6em;
  color: #E53E3E;
  margin-bottom: 15px;
}

.page-cockfighting-strategy__card p {
  font-size: 1em;
  color: #C0C0C0;
  text-align: center;
  flex-grow: 1;
}

.page-cockfighting-strategy__card-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  object-fit: cover;
}

.page-cockfighting-strategy__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-cockfighting-strategy__list li {
  background-color: #2D3748;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-strategy__list li h3 {
  color: #E53E3E;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-cockfighting-strategy__list li p {
  color: #C0C0C0;
  font-size: 1em;
  text-align: justify;
}

.page-cockfighting-strategy__content-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-strategy__related-articles {
  background-color: #202633;
}

.page-cockfighting-strategy__articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-strategy__article-card {
  background-color: #2D3748;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-cockfighting-strategy__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-strategy__article-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  min-height: 60px; /* Ensure consistent card height */
}

.page-cockfighting-strategy__article-title a {
  color: #E53E3E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-cockfighting-strategy__article-title a:hover {
  color: #ff5252;
  text-decoration: underline;
}

.page-cockfighting-strategy__article-description {
  font-size: 0.95em;
  color: #B0B0B0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-cockfighting-strategy__read-more {
  display: inline-block;
  background-color: #E53E3E;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-cockfighting-strategy__read-more:hover {
  background-color: #ff5252;
}

.page-cockfighting-strategy__cta-bottom {
  padding: 80px 0;
  text-align: center;
  background-color: #1A202C;
}

.page-cockfighting-strategy__cta-content {
  background-color: #2D3748;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-cockfighting-strategy__cta-bottom .page-cockfighting-strategy__section-title {
  margin-bottom: 25px;
  color: #FFFFFF;
}

.page-cockfighting-strategy__cta-bottom .page-cockfighting-strategy__section-title::after {
  background-color: #E53E3E;
}

.page-cockfighting-strategy__cta-bottom p {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.15em;
  color: #D1D1D1;
}

.page-cockfighting-strategy__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-cockfighting-strategy__cta-button--secondary {
  background-color: #4A5568;
  box-shadow: 0 4px 15px rgba(74, 85, 104, 0.4);
}

.page-cockfighting-strategy__cta-button--secondary:hover {
  background-color: #616e83;
}

.page-cockfighting-strategy__cta-button--app {
  background-color: #28a745;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.page-cockfighting-strategy__cta-button--app:hover {
  background-color: #218838;
}

.page-cockfighting-strategy .highlight {
  color: #E53E3E;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-cockfighting-strategy__hero-title {
    font-size: 2.8em;
  }
  .page-cockfighting-strategy__section-title {
    font-size: 2em;
  }
  .page-cockfighting-strategy__grid,
  .page-cockfighting-strategy__articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-cockfighting-strategy__hero {
    padding: 80px 0;
  }
  .page-cockfighting-strategy__hero-title {
    font-size: 2.2em;
  }
  .page-cockfighting-strategy__hero-description {
    font-size: 1em;
  }
  .page-cockfighting-strategy__section {
    padding: 40px 0;
  }
  .page-cockfighting-strategy__section-title {
    font-size: 1.8em;
  }
  .page-cockfighting-strategy__card,
  .page-cockfighting-strategy__article-card {
    padding: 20px;
  }
  .page-cockfighting-strategy__card-title {
    font-size: 1.4em;
  }
  .page-cockfighting-strategy__list li {
    padding: 20px;
  }
  .page-cockfighting-strategy__list li h3 {
    font-size: 1.2em;
  }
  .page-cockfighting-strategy__cta-content {
    padding: 30px;
  }
  .page-cockfighting-strategy__cta-bottom p {
    font-size: 1em;
  }
  .page-cockfighting-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-cockfighting-strategy__cta-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-strategy__hero-title {
    font-size: 1.8em;
  }
  .page-cockfighting-strategy__hero-description {
    font-size: 0.9em;
  }
  .page-cockfighting-strategy__section-title {
    font-size: 1.5em;
  }
  .page-cockfighting-strategy__grid,
  .page-cockfighting-strategy__articles-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting-strategy__container {
    padding: 0 15px;
  }
  .page-cockfighting-strategy__hero-content {
    padding: 0 15px;
  }
}