/* style/resources-98win-faq.css */

/* Base styles for the page content */
.page-resources-98win-faq {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for assumed light background */
  background-color: var(--background-color, #ffffff); /* Inherit from shared or default to white */
}

.page-resources-98win-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-98win-faq__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Fixed height for desktop */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  box-sizing: border-box;
}

.page-resources-98win-faq__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px;
  filter: none; /* Absolutely no filters */
}