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

.page-entertainment-news-celebrity-gossip-news__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #003366 0%, #004080 100%);
  color: #fff;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFCC00;
}

.page-entertainment-news-celebrity-gossip-news__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-entertainment-news-celebrity-gossip-news__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(50%);
}

.page-entertainment-news-celebrity-gossip-news__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-entertainment-news-celebrity-gossip-news__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFCC00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-entertainment-news-celebrity-gossip-news__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-entertainment-news-celebrity-gossip-news__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-entertainment-news-celebrity-gossip-news__section-title {
  font-size: 2.2em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-entertainment-news-celebrity-gossip-news__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-entertainment-news-celebrity-gossip-news__section-title--light {
  color: #fff;
}

.page-entertainment-news-celebrity-gossip-news__section-title--light::after {
  background-color: #FFCC00;
}

.page-entertainment-news-celebrity-gossip-news__text-block {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
  color: #555;
}

.page-entertainment-news-celebrity-gossip-news__text-block--light {
  color: #e0e0e0;
}

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

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

.page-entertainment-news-celebrity-gossip-news__article:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-entertainment-news-celebrity-gossip-news__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-entertainment-news-celebrity-gossip-news__article-title {
  font-size: 1.5em;
  color: #003366;
  padding: 20px 20px 10px;
}

.page-entertainment-news-celebrity-gossip-news__article-excerpt {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-entertainment-news-celebrity-gossip-news__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin: 10px 20px 20px;
  text-align: center;
}

.page-entertainment-news-celebrity-gossip-news__button--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-entertainment-news-celebrity-gossip-news__button--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-entertainment-news-celebrity-gossip-news__button--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #003366;
  margin-top: auto;
}

.page-entertainment-news-celebrity-gossip-news__button--secondary:hover {
  background-color: #004080;
  transform: translateY(-2px);
}

.page-entertainment-news-celebrity-gossip-news__section--cta {
  background: linear-gradient(135deg, #003366 0%, #004080 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  border-top: 5px solid #FFCC00;
  border-bottom: 5px solid #FFCC00;
}

.page-entertainment-news-celebrity-gossip-news__cta-content {
  max-width: 900px;
  margin-bottom: 40px;
}

.page-entertainment-news-celebrity-gossip-news__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-entertainment-news-celebrity-gossip-news__button--secondary-light {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-entertainment-news-celebrity-gossip-news__button--secondary-light:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
}

.page-entertainment-news-celebrity-gossip-news__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-entertainment-news-celebrity-gossip-news__content-block {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
}

.page-entertainment-news-celebrity-gossip-news__content-image {
  max-width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-entertainment-news-celebrity-gossip-news__content-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-entertainment-news-celebrity-gossip-news__section--trust {
  background-color: #003366;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.page-entertainment-news-celebrity-gossip-news__trust-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-entertainment-news-celebrity-gossip-news__trust-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-entertainment-news-celebrity-gossip-news__trust-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.5));
}

.page-entertainment-news-celebrity-gossip-news__trust-title {
  font-size: 1.6em;
  color: #FFCC00;
  margin-bottom: 15px;
}

.page-entertainment-news-celebrity-gossip-news__trust-description {
  font-size: 1em;
  color: #e0e0e0;
}

.page-entertainment-news-celebrity-gossip-news__button--centered {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

.page-entertainment-news-celebrity-gossip-news__section--trends {
  text-align: center;
}

.page-entertainment-news-celebrity-gossip-news__trend-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  margin-top: 40px;
}

.page-entertainment-news-celebrity-gossip-news__section--call-to-action-final {
  background-color: #f0f0f0;
  text-align: center;
  padding: 60px 20px;
  border-top: 2px solid #ddd;
}

.page-entertainment-news-celebrity-gossip-news__final-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .page-entertainment-news-celebrity-gossip-news__title {
    font-size: 2em;
  }

  .page-entertainment-news-celebrity-gossip-news__subtitle {
    font-size: 1.1em;
  }

  .page-entertainment-news-celebrity-gossip-news__section-title {
    font-size: 1.8em;
  }

  .page-entertainment-news-celebrity-gossip-news__hero {
    padding: 40px 15px;
  }

  .page-entertainment-news-celebrity-gossip-news__section {
    padding: 40px 15px;
  }

  .page-entertainment-news-celebrity-gossip-news__article-grid,
  .page-entertainment-news-celebrity-gossip-news__content-grid,
  .page-entertainment-news-celebrity-gossip-news__trust-points {
    grid-template-columns: 1fr;
  }

  .page-entertainment-news-celebrity-gossip-news__button {
    width: 100%;
    margin: 10px 0;
  }

  .page-entertainment-news-celebrity-gossip-news__cta-buttons,
  .page-entertainment-news-celebrity-gossip-news__final-buttons {
    flex-direction: column;
  }
}