/* style/resources-online-entertainment-trends.css */
.page-resources-online-entertainment-trends {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF;
}

.page-resources-online-entertainment-trends__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-online-entertainment-trends__hero-section {
  background: linear-gradient(135deg, #26A9E0, #a0dcef); /* Lighter variant of primary color */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-resources-online-entertainment-trends__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFFFFF;
}

.page-resources-online-entertainment-trends__hero-subtitle {
  font-size: 1.2em;
  max-width: 600px;
  margin: 0 auto;
  color: #FFFFFF;
}

.page-resources-online-entertainment-trends__article-content {
  padding: 40px 0;
}

.page-resources-online-entertainment-trends__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-online-entertainment-trends__back-link:hover {
  color: #1b769d;
}

.page-resources-online-entertainment-trends__back-link--bottom {
  margin-top: 40px;
  margin-bottom: 0;
}

.page-resources-online-entertainment-trends__section-title {
  font-size: 2em;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

.page-resources-online-entertainment-trends__subsection-title {
  font-size: 1.5em;
  color: #333333;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-online-entertainment-trends__article-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-resources-online-entertainment-trends__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-online-entertainment-trends__list-item {
  margin-bottom: 10px;
}

.page-resources-online-entertainment-trends__article-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-online-entertainment-trends__cta-section {
  text-align: center;
  background-color: #f7f7f7;
  padding: 40px 20px;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-online-entertainment-trends__cta-title {
  font-size: 2em;
  color: #26A9E0;
  margin-bottom: 20px;
}

.page-resources-online-entertainment-trends__cta-button {
  display: inline-block;
  background-color: #EA7C07; /* Login color for CTA, as specified */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-online-entertainment-trends__cta-button:hover {
  background-color: #d46b00;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-online-entertainment-trends__hero-title {
    font-size: 2em;
  }
  .page-resources-online-entertainment-trends__hero-subtitle {
    font-size: 1em;
  }
  .page-resources-online-entertainment-trends__section-title {
    font-size: 1.8em;
  }
  .page-resources-online-entertainment-trends__subsection-title {
    font-size: 1.3em;
  }
  .page-resources-online-entertainment-trends__article-text {
    font-size: 1em;
  }
  .page-resources-online-entertainment-trends__cta-title {
    font-size: 1.8em;
  }
  .page-resources-online-entertainment-trends__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .page-resources-online-entertainment-trends__hero-section {
    padding: 50px 0;
  }
  .page-resources-online-entertainment-trends__hero-title {
    font-size: 1.5em;
  }
  .page-resources-online-entertainment-trends__section-title {
    font-size: 1.5em;
  }
  .page-resources-online-entertainment-trends__subsection-title {
    font-size: 1.2em;
  }
  .page-resources-online-entertainment-trends__article-content {
    padding: 20px 0;
  }
  .page-resources-online-entertainment-trends__cta-title {
    font-size: 1.5em;
  }
  .page-resources-online-entertainment-trends__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
}