/* style/cockfighting.css */

/* General Page Styles */
.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--dark-bg-1); /* Inherited from shared.css */
}

.page-cockfighting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-cockfighting__section-heading {
  font-size: 32px;
  font-weight: bold;
  color: #FFD700; /* Gold color for headings */
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-cockfighting__text-block {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #f0f0f0; /* Light grey for general text on dark background */
  text-align: justify;
}

.page-cockfighting__text-block a {
  color: #FFD700;
  text-decoration: underline;
}

.page-cockfighting__text-block a:hover {
  color: #fff;
}

.page-cockfighting__btn-primary {
  display: inline-block;
  background: #FFD700;
  color: #1a1a1a;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.page-cockfighting__btn-primary:hover {
  background: #e6c200;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__btn-secondary {
  display: inline-block;
  background: none;
  color: #FFD700;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #FFD700;
  text-align: center;
}

.page-cockfighting__btn-secondary:hover {
  background: #FFD700;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__btn-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* HERO Section */
.page-cockfighting__hero-section {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  margin-top: 80px; /* Adjust for fixed header */
}

.page-cockfighting__hero-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.page-cockfighting__hero-image {
  width: 100%;
  margin: 0;
}

.page-cockfighting__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* LOGO Carousel Section */
.page-cockfighting__logo-carousel-section {
  width: 100%;
  padding: 40px 20px;
  background: #1a1a1a; /* Auxiliary color for contrast */
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-cockfighting__logo-carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.page-cockfighting__logo-carousel {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding: 10px 0;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.page-cockfighting__logo-carousel::-webkit-scrollbar {
  display: none;
}

.page-cockfighting__logo-item {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto;
}

.page-cockfighting__logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__logo-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px;
  box-sizing: border-box;
  pointer-events: auto;
}

.page-cockfighting__logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Games Section */
.page-cockfighting__games-section {
  width: 100%;
  padding: 60px 20px;
  background: var(--dark-bg-1);
}

.page-cockfighting__games-container {
  max-width: 1400px;
  margin: 0 auto;
}

.page-cockfighting__games-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: start;
}

.page-cockfighting__featured-game-area {
  width: 100%;
}

.page-cockfighting__featured-game-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 20px 0;
  color: #FFD700; /* Yellow text */
  text-align: left;
  text-transform: uppercase;
}

.page-cockfighting__featured-game {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a; /* Dark background for card */
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__featured-game:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__featured-game-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-cockfighting__featured-game-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.page-cockfighting__featured-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-cockfighting__games-grid-area {
  width: 100%;
}

.page-cockfighting__games-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
}

.page-cockfighting__games-tab {
  background: none;
  border: none;
  padding: 0;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: #999999;
  transition: color 0.3s ease, text-decoration 0.3s ease;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
}

.page-cockfighting__games-tab:hover {
  color: #FFD700;
}

.page-cockfighting__games-tab.active {
  color: #FFD700; /* Red-like accent for active */
  text-decoration: underline;
}

.page-cockfighting__games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: none;
}

.page-cockfighting__games-grid.active {
  display: grid;
}

.page-cockfighting__game-card {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a1a; /* Dark background for cards */
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__game-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-cockfighting__game-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.page-cockfighting__game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-cockfighting__game-card-title {
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0 0 0;
  padding: 0 5px 10px 5px;
  color: #ffffff; /* White text on dark card background */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.4;
}

/* Introduction Section */
.page-cockfighting__introduction-section {
  padding: 80px 0;
}

.page-cockfighting__dark-bg {
  background: #1a1a1a; /* Auxiliary dark background */
  color: #ffffff;
}

.page-cockfighting__main-heading {
  font-size: 38px;
  font-weight: bold;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

/* Quick Access Section */
.page-cockfighting__quick-access-section {
  padding: 80px 0;
  background: var(--dark-bg-1);
}

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

.page-cockfighting__quick-link-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__quick-link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background: #2a2a2a;
  border-color: #FFD700;
}

.page-cockfighting__link-icon {
  margin-bottom: 15px;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFD700;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__link-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.page-cockfighting__link-text {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  color: #FFD700;
}

.page-cockfighting__text-block--note {
  font-size: 14px;
  color: #aaaaaa;
  margin-top: 30px;
  text-align: center;
}

/* Game Types Section */
.page-cockfighting__game-types-section {
  padding: 80px 0;
}

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

.page-cockfighting__type-card {
  background: var(--dark-bg-1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f0f0f0;
}

.page-cockfighting__type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__type-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-cockfighting__type-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  padding: 15px 20px 10px;
  text-align: center;
}

.page-cockfighting__type-description {
  font-size: 15px;
  padding: 0 20px 20px;
  text-align: justify;
}

/* Promotions Section */
.page-cockfighting__promotions-section {
  padding: 80px 0;
  background: var(--dark-bg-1);
}

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

.page-cockfighting__promo-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
}

.page-cockfighting__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-cockfighting__promo-title {
  font-size: 20px;
  font-weight: bold;
  color: #FFD700;
  padding: 15px 20px 10px;
  text-align: center;
}

.page-cockfighting__promo-description {
  font-size: 15px;
  padding: 0 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-cockfighting__promo-card .page-cockfighting__btn-primary {
  margin: 20px auto;
  width: fit-content;
}

/* Safety & Support Section */
.page-cockfighting__safety-support-section {
  padding: 80px 0;
}

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

.page-cockfighting__feature-card {
  background: var(--dark-bg-1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f0f0f0;
}

.page-cockfighting__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  object-fit: contain;
  display: block;
}

.page-cockfighting__feature-title {
  font-size: 20px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-cockfighting__feature-description {
  font-size: 15px;
  line-height: 1.6;
}

/* FAQ Section */
.page-cockfighting__faq-section {
  padding: 80px 0;
  background: var(--dark-bg-1);
}

.page-cockfighting__faq-list {
  margin-top: 40px;
}

.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #1a1a1a; /* Dark background for question */
  color: #ffffff;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-cockfighting__faq-question:hover {
  background: #2a2a2a;
}

.page-cockfighting__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #FFD700;
}

.page-cockfighting__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

.page-cockfighting__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #2a2a2a; /* Slightly lighter dark background for answer */
  color: #f0f0f0;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-radius: 0 0 8px 8px;
}

.page-cockfighting__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.page-cockfighting__faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

.page-cockfighting__faq-answer a:hover {
  color: #fff;
}

/* Latest News Section */
.page-cockfighting__latest-news-section {
  padding: 80px 0;
}

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

.page-cockfighting__news-card {
  background: var(--dark-bg-1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-cockfighting__news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__news-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-cockfighting__news-content {
  padding: 20px;
  flex-grow: 1;
}

.page-cockfighting__news-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-cockfighting__news-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-cockfighting__news-title a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.page-cockfighting__news-excerpt {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 15px;
  line-height: 1.6;
}

.page-cockfighting__news-date {
  font-size: 13px;
  color: #999999;
  display: block;
  margin-top: auto;
}

/* Responsive Styles */

/* Mobile image adaptation (Important!) */
.page-cockfighting img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1200px) {
  .page-cockfighting__container {
    padding: 0 15px;
  }
}

@media (max-width: 1024px) {
  .page-cockfighting__hero-section {
    margin-top: 70px; /* Adjust for smaller header on tablet */
  }
  .page-cockfighting__games-layout {
    grid-template-columns: 1fr;
  }
  .page-cockfighting__games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-cockfighting__main-heading {
    font-size: 32px;
  }
  .page-cockfighting__section-heading {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    margin-top: 60px; /* Adjust for mobile header */
  }
  .page-cockfighting__logo-carousel-section {
    padding: 30px 15px;
  }
  .page-cockfighting__logo-item {
    width: 150px;
    height: 150px;
  }
  .page-cockfighting__logo-carousel {
    gap: 15px;
  }
  .page-cockfighting__games-section,
  .page-cockfighting__introduction-section,
  .page-cockfighting__quick-access-section,
  .page-cockfighting__game-types-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__safety-support-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__latest-news-section {
    padding: 50px 0;
  }
  .page-cockfighting__container {
    padding: 0 15px;
  }

  .page-cockfighting__main-heading {
    font-size: 28px;
  }
  .page-cockfighting__section-heading {
    font-size: 24px;
  }
  .page-cockfighting__text-block {
    font-size: 15px;
  }
  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary {
    padding: 10px 20px;
    font-size: 14px;
  }

  .page-cockfighting__featured-game-title {
    font-size: 20px;
  }
  .page-cockfighting__featured-game-image {
    height: 300px;
  }
  .page-cockfighting__games-tabs {
    gap: 15px;
  }
  .page-cockfighting__games-tab {
    font-size: 16px;
  }
  .page-cockfighting__games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .page-cockfighting__game-card-image {
    height: 150px;
  }
  .page-cockfighting__game-card-title {
    font-size: 13px;
    margin: 8px 0 0 0;
    padding: 0 3px 8px 3px;
  }

  .page-cockfighting__links-grid,
  .page-cockfighting__game-types-grid,
  .page-cockfighting__promo-grid,
  .page-cockfighting__features-grid,
  .page-cockfighting__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-cockfighting__quick-link-card {
    padding: 20px;
  }
  .page-cockfighting__link-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }
  .page-cockfighting__link-icon img {
    width: 40px;
    height: 40px;
  }
  .page-cockfighting__link-text {
    font-size: 16px;
  }

  .page-cockfighting__type-image,
  .page-cockfighting__promo-image,
  .page-cockfighting__news-image {
    height: 180px;
  }
  .page-cockfighting__type-title,
  .page-cockfighting__promo-title,
  .page-cockfighting__feature-title,
  .page-cockfighting__news-title {
    font-size: 18px;
  }
  .page-cockfighting__type-description,
  .page-cockfighting__promo-description,
  .page-cockfighting__feature-description,
  .page-cockfighting__news-excerpt {
    font-size: 14px;
  }
  .page-cockfighting__faq-question {
    padding: 15px 20px;
  }
  .page-cockfighting__faq-question h3 {
    font-size: 16px;
  }
  .page-cockfighting__faq-toggle {
    font-size: 24px;
    width: 26px;
    height: 26px;
  }
  .page-cockfighting__faq-answer {
    padding: 0 20px;
  }
  .page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
    padding: 15px 20px !important;
  }
  .page-cockfighting__faq-answer p {
    font-size: 15px;
  }

  /* Force responsive image styles for mobile */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-cockfighting__hero-section,
  .page-cockfighting__logo-carousel-section,
  .page-cockfighting__games-section,
  .page-cockfighting__introduction-section,
  .page-cockfighting__quick-access-section,
  .page-cockfighting__game-types-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__safety-support-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__latest-news-section,
  .page-cockfighting__container,
  .page-cockfighting__hero-container,
  .page-cockfighting__logo-carousel-container,
  .page-cockfighting__games-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* Padding already handled by sections */
  }
}

@media (max-width: 480px) {
  .page-cockfighting__main-heading {
    font-size: 24px;
  }
  .page-cockfighting__section-heading {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .page-cockfighting__games-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting__games-tab {
    font-size: 14px;
  }
  .page-cockfighting__featured-game-image {
    height: 250px;
  }
  .page-cockfighting__game-card-image {
    height: 120px;
  }
  .page-cockfighting__quick-link-card {
    flex-direction: row;
    padding: 15px;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }
  .page-cockfighting__link-icon {
    margin: 0 15px 0 0;
    width: 60px;
    height: 60px;
  }
  .page-cockfighting__link-icon img {
    width: 35px;
    height: 35px;
  }
  .page-cockfighting__link-text {
    font-size: 15px;
  }
  .page-cockfighting__type-image,
  .page-cockfighting__promo-image,
  .page-cockfighting__news-image {
    height: 150px;
  }
  .page-cockfighting__type-title,
  .page-cockfighting__promo-title,
  .page-cockfighting__feature-title,
  .page-cockfighting__news-title {
    font-size: 16px;
  }
  .page-cockfighting__promo-description,
  .page-cockfighting__feature-description,
  .page-cockfighting__news-excerpt {
    font-size: 13px;
  }
  .page-cockfighting__faq-question h3 {
    font-size: 15px;
  }
  .page-cockfighting__faq-toggle {
    font-size: 20px;
    width: 22px;
    height: 22px;
  }
  .page-cockfighting__faq-answer p {
    font-size: 14px;
  }
}