/* style/blog-okplay-latest-trends.css */

/* Root variables for colors */
:root {
  --okplay-primary: #F2C14E;
  --okplay-secondary: #FFD36B;
  --okplay-card-bg: #111111;
  --okplay-background: #0A0A0A;
  --okplay-text-main: #FFF6D6;
  --okplay-border: #3A2A12;
  --okplay-glow: #FFD36B;
  --okplay-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --okplay-dark-text: #333333; /* For light backgrounds */
}

.page-blog-okplay-latest-trends {
  font-family: Arial, sans-serif;
  color: var(--okplay-text-main); /* Default text color for dark body background */
  background-color: var(--okplay-background); /* Ensure consistent background */
  line-height: 1.6;
}

.page-blog-okplay-latest-trends__section {
  padding: 60px 20px;
  text-align: center;
}

.page-blog-okplay-latest-trends__dark-section {
  background-color: var(--okplay-card-bg); /* Darker background for contrast */
}

.page-blog-okplay-latest-trends__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Consistent inner padding */
  box-sizing: border-box;
}

.page-blog-okplay-latest-trends__section-title {
  font-size: 2.5em;
  color: var(--okplay-primary);
  margin-bottom: 30px;
  font-weight: bold;
}

.page-blog-okplay-latest-trends__text-block {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--okplay-text-main);
}

/* Hero Section */
.page-blog-okplay-latest-trends__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--okplay-background);
}

.page-blog-okplay-latest-trends__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for aesthetic */
  overflow: hidden;
}

.page-blog-okplay-latest-trends__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-okplay-latest-trends__hero-content {
  padding: 40px 20px 60px;
  max-width: 900px;
  z-index: 1;
}

.page-blog-okplay-latest-trends__main-title {
  font-weight: 700;
  color: var(--okplay-primary);
  margin-bottom: 20px;
  line-height: 1.2;
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
}

.page-blog-okplay-latest-trends__hero-description {
  font-size: 1.2em;
  color: var(--okplay-text-main);
  margin-bottom: 40px;
}