/* style/blog-unveiling-747-2-future-trends.css */

/* Base Styles */
.page-blog-unveiling-747-2-future-trends {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main */
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for the main content, body handles fixed header offset */
}

/* Sections */
.page-blog-unveiling-747-2-future-trends__section {
  padding: 60px 0;
  position: relative;
}

.page-blog-unveiling-747-2-future-trends__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-unveiling-747-2-future-trends__section-title {
  font-size: clamp(2em, 4vw, 2.8em); /* H2 font size with clamp */
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Main color for titles */
  line-height: 1.2;
}

.page-blog-unveiling-747-2-future-trends__sub-title {
  font-size: clamp(1.4em, 2.5vw, 2em); /* H3 font size with clamp */
  font-weight: 600;
  color: #FFD36B; /* Auxiliary color for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-unveiling-747-2-future-trends__text-block {
  margin-bottom: 20px;
  color: #FFF6D6;
}

/* Hero Section */
.page-blog-unveiling-747-2-future-trends__hero-section {
  padding-top: var(--header-offset, 120px); /* Desktop: Fixed header spacing */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column; /* Ensure image is above content */
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0A0A0A 0%, #111111 100%); /* Dark gradient background */
}

.page-blog-unveiling-747-2-future-trends__hero-image-container {
  width: 100%;
  max-height: 70vh; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-unveiling-747-2-future-trends__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Min size requirement */
}

.page-blog-unveiling-747-2-future-trends__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 20px;
  margin-top: 20px; /* Spacing below image */
  background: rgba(17, 17, 17, 0.7); /* Card BG with transparency */
  border-radius: 8px;
}

.page-blog-unveiling-747-2-future-trends__hero-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* H1 font size with clamp */
  font-weight: 800;
  color: #F2C14E; /* Main color for H1 */
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.page-blog-unveiling-747-2-future-trends__hero-description {
  font-size: clamp(1.1em, 2vw, 1.4em);
  color: #FFF6D6;
  margin-bottom: 30px;
}

/* Buttons */
.page-blog-unveiling-747-2-future-trends__btn-primary,
.page-blog-unveiling-747-2-future-trends__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-unveiling-747-2-future-trends__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #ffffff; /* White text for primary button */
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-unveiling-747-2-future-trends__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-blog-unveiling-747-2-future-trends__btn-secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main color text */
  border: 2px solid #F2C14E; /* Main color border */
  margin-left: 20px;
}

.page-blog-unveiling-747-2-future-trends__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
  transform: translateY(-3px);
}

.page-blog-unveiling-747-2-future-trends__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Feature Grid */
.page-blog-unveiling-747-2-future-trends__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-unveiling-747-2-future-trends__feature-card {
  background: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-unveiling-747-2-future-trends__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-unveiling-747-2-future-trends__feature-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-height: 200px; /* Min size requirement */
}

.page-blog-unveiling-747-2-future-trends__feature-title {
  font-size: 1.5em;
  font-weight: 700;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 15px;
}

.page-blog-unveiling-747-2-future-trends__feature-description {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Content Grid (for technology and player experience sections) */
.page-blog-unveiling-747-2-future-trends__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.page-blog-unveiling-747-2-future-trends__content-grid--reversed {
  grid-template-columns: 1fr 1fr; /* Default order */
}

.page-blog-unveiling-747-2-future-trends__content-grid--reversed .page-blog-unveiling-747-2-future-trends__content-image {
  order: 2; /* Image on right */
}

.page-blog-unveiling-747-2-future-trends__content-grid--reversed .page-blog-unveiling-747-2-future-trends__content-text {
  order: 1; /* Text on left */
}

.page-blog-unveiling-747-2-future-trends__image-right,
.page-blog-unveiling-747-2-future-trends__image-left {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  min-height: 200px; /* Min size requirement */
}

/* Trend List */
.page-blog-unveiling-747-2-future-trends__trend-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-unveiling-747-2-future-trends__trend-item {
  background: #111111; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #FFF6D6;
}

.page-blog-unveiling-747-2-future-trends__trend-item:hover {
  transform: translateY(-5px);
}

.page-blog-unveiling-747-2-future-trends__trend-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
}

.page-blog-unveiling-747-2-future-trends__trend-description {
  font-size: 0.95em;
  line-height: 1.5;
}

/* FAQ Section */
.page-blog-unveiling-747-2-future-trends__faq-list {
  margin-top: 40px;
}

.page-blog-unveiling-747-2-future-trends__faq-item {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-unveiling-747-2-future-trends__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #111111; /* Card BG */
  color: #FFD36B; /* Auxiliary color */
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.page-blog-unveiling-747-2-future-trends__faq-question:hover {
  background-color: #1a1a1a;
}

.page-blog-unveiling-747-2-future-trends__faq-title {
  font-size: 1.15em;
  margin: 0;
  color: #FFD36B; /* Ensure title color */
}

.page-blog-unveiling-747-2-future-trends__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #F2C14E; /* Main color for toggle */
}

.page-blog-unveiling-747-2-future-trends__faq-item.active .page-blog-unveiling-747-2-future-trends__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-unveiling-747-2-future-trends__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px; /* Initial padding 0 */
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
}

.page-blog-unveiling-747-2-future-trends__faq-item.active .page-blog-unveiling-747-2-future-trends__faq-answer {
  max-height: 1000px !important; /* Sufficiently large */
  padding: 15px 25px 20px; /* Padding when active */
}

.page-blog-unveiling-747-2-future-trends__faq-answer p {
  margin-bottom: 0;
  color: #FFF6D6; /* Ensure paragraph color */
}

/* Strong tag styling */
.page-blog-unveiling-747-2-future-trends strong {
  color: #FFD36B; /* Auxiliary color for strong text */
}

/* Links within content */
.page-blog-unveiling-747-2-future-trends a:not(.page-blog-unveiling-747-2-future-trends__btn-primary):not(.page-blog-unveiling-747-2-future-trends__btn-secondary) {
  color: #F2C14E; /* Main color for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-blog-unveiling-747-2-future-trends a:not(.page-blog-unveiling-747-2-future-trends__btn-primary):not(.page-blog-unveiling-747-2-future-trends__btn-secondary):hover {
  color: #FFD36B; /* Auxiliary color on hover */
}


/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-unveiling-747-2-future-trends__content-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-unveiling-747-2-future-trends__content-grid--reversed .page-blog-unveiling-747-2-future-trends__content-image {
    order: 1; /* Stack image on top for mobile */
  }

  .page-blog-unveiling-747-2-future-trends__content-grid--reversed .page-blog-unveiling-747-2-future-trends__content-text {
    order: 2; /* Text below image for mobile */
  }
}

@media (max-width: 768px) {
  .page-blog-unveiling-747-2-future-trends {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-unveiling-747-2-future-trends__section {
    padding: 40px 0;
  }

  .page-blog-unveiling-747-2-future-trends__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-blog-unveiling-747-2-future-trends__hero-section {
    padding-top: var(--header-offset, 100px) !important; /* Mobile: Fixed header spacing */
  }

  .page-blog-unveiling-747-2-future-trends__hero-title {
    font-size: 2em;
  }

  .page-blog-unveiling-747-2-future-trends__hero-description {
    font-size: 1em;
  }

  .page-blog-unveiling-747-2-future-trends__btn-primary,
  .page-blog-unveiling-747-2-future-trends__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 0; /* Remove side margin for stacking */
  }

  .page-blog-unveiling-747-2-future-trends__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px; /* Add padding to container */
  }
}