.page-news-updates {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-news-updates__hero {
  background: linear-gradient(135deg, #A80000 0%, #FFD700 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.page-news-updates__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:cockfighting,arena,blur,dynamic]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-news-updates__hero-content {
  position: relative;
  z-index: 1;
}

.page-news-updates__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.page-news-updates__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #eee;
}

.page-news-updates__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #A80000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-news-updates__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-news-updates__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-news-updates__section:nth-of-type(even) {
  background-color: #f2f2f2;
}

.page-news-updates__section-title {
  font-size: 2.5em;
  color: #A80000;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-news-updates__news-grid, .page-news-updates__insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-news-updates__news-card, .page-news-updates__insight-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news-updates__news-card:hover, .page-news-updates__insight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-news-updates__news-image, .page-news-updates__insight-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.page-news-updates__news-card:hover .page-news-updates__news-image,
.page-news-updates__insight-card:hover .page-news-updates__insight-image {
  transform: scale(1.05);
}

.page-news-updates__card-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news-updates__card-title {
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.3;
}

.page-news-updates__card-title a {
  text-decoration: none;
  color: #A80000;
  transition: color 0.3s ease;
}

.page-news-updates__card-title a:hover {
  color: #FFD700;
}

.page-news-updates__card-meta {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 15px;
}

.page-news-updates__card-excerpt {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news-updates__read-more {
  display: inline-block;
  color: #A80000;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 2px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.page-news-updates__read-more:hover {
  color: #FFD700;
  border-color: #A80000;
  padding-left: 5px;
  padding-right: 5px;
}

.page-news-updates__update-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-news-updates__update-item {
  background-color: #fcfcfc;
  border: 1px solid #eee;
  border-left: 5px solid #A80000;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-updates__update-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-news-updates__update-date {
  font-size: 0.9em;
  color: #999;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-news-updates__update-title {
  font-size: 1.8em;
  color: #A80000;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-news-updates__update-title a {
  text-decoration: none;
  color: #A80000;
  transition: color 0.3s ease;
}

.page-news-updates__update-title a:hover {
  color: #FFD700;
}

.page-news-updates__update-content {
  color: #555;
  margin-bottom: 20px;
}

.page-news-updates__cta {
  background-color: #A80000;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.page-news-updates__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-news-updates__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #eee;
}

.page-news-updates__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #A80000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 10px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-news-updates__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-news-updates__cta-button--secondary {
  background-color: #fff;
  color: #A80000;
  border: 2px solid #FFD700;
}

.page-news-updates__cta-button--secondary:hover {
  background-color: #f0f0f0;
  color: #A80000;
  border-color: #e6c200;
}

.page-news-updates__seo-content {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.page-news-updates__seo-content h2 {
  font-size: 2.2em;
  color: #A80000;
  margin-bottom: 30px;
  text-align: center;
}

.page-news-updates__seo-content h3, .page-news-updates__seo-content h4 {
  font-size: 1.8em;
  color: #A80000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-news-updates__seo-content p {
  margin-bottom: 20px;
  color: #444;
  text-align: justify;
}

.page-news-updates__seo-content ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #444;
}

.page-news-updates__seo-content ul li {
  margin-bottom: 10px;
}

.page-news-updates__seo-content a {
  color: #A80000;
  text-decoration: underline;
  font-weight: bold;
}

.page-news-updates__seo-content a:hover {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-news-updates__hero-title {
    font-size: 2.8em;
  }
  .page-news-updates__hero-subtitle {
    font-size: 1.2em;
  }
  .page-news-updates__section-title {
    font-size: 2em;
  }
  .page-news-updates__news-grid, .page-news-updates__insight-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-news-updates__card-title {
    font-size: 1.4em;
  }
  .page-news-updates__update-title {
    font-size: 1.6em;
  }
  .page-news-updates__cta-title {
    font-size: 2.2em;
  }
  .page-news-updates__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-news-updates__hero {
    padding: 80px 15px;
  }
  .page-news-updates__hero-title {
    font-size: 2.2em;
  }
  .page-news-updates__hero-subtitle {
    font-size: 1em;
  }
  .page-news-updates__hero-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-news-updates__section {
    padding: 40px 0;
  }
  .page-news-updates__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-news-updates__news-grid, .page-news-updates__insight-grid {
    grid-template-columns: 1fr;
  }
  .page-news-updates__card-body {
    padding: 20px;
  }
  .page-news-updates__card-title {
    font-size: 1.3em;
  }
  .page-news-updates__update-item {
    padding: 20px 25px;
  }
  .page-news-updates__update-title {
    font-size: 1.4em;
  }
  .page-news-updates__cta {
    padding: 60px 15px;
  }
  .page-news-updates__cta-title {
    font-size: 1.8em;
  }
  .page-news-updates__cta-description {
    font-size: 0.9em;
  }
  .page-news-updates__cta-button {
    display: block;
    width: calc(100% - 20px);
    margin: 0 auto 15px;
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-news-updates__seo-content h2 {
    font-size: 1.8em;
  }
  .page-news-updates__seo-content h3, .page-news-updates__seo-content h4 {
    font-size: 1.5em;
  }
}