/* style/resources-cockfighting-alo789-guide.css */

/* Variables and Base Styles (from shared.css or global, but defined here for context) */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f9f9f9;
  --bg-white: #ffffff;
  --btn-register-login-bg: #C30808;
  --btn-register-login-text: #FFFF00;
  --border-color: #e0e0e0;
}

.page-resources-cockfighting-alo789-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light body background */
  background-color: var(--bg-white); /* Assuming body background is white from shared */
}

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

.page-resources-cockfighting-alo789-guide__section {
  padding: 60px 0;
  background-color: var(--bg-white);
}

.page-resources-cockfighting-alo789-guide__section:nth-of-type(even) {
  background-color: var(--bg-light);
}

.page-resources-cockfighting-alo789-guide__heading {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-cockfighting-alo789-guide__paragraph {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-cockfighting-alo789-guide__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 17px;
  padding-left: 0;
}

.page-resources-cockfighting-alo789-guide__list-item {
  margin-bottom: 10px;
}

.page-resources-cockfighting-alo789-guide__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-resources-cockfighting-alo789-guide__image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size for content images */
  min-height: 200px; /* Enforce min size for content images */
}

/* Hero Section */
.page-resources-cockfighting-alo789-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #017439; /* Ensure hero section has a background for text contrast */
  color: var(--text-light);
}