/* style/resources-g666-common-issues.css */
.page-resources-g666-common-issues {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #FFFFFF; /* Matches body default */
}

/* Fixed Header Offset */
.page-resources-g666-common-issues__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

/* Hero Section */
.page-resources-g666-common-issues__hero-section {
  background-color: #017439; /* Main brand color */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-resources-g666-common-issues__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-g666-common-issues__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-resources-g666-common-issues__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Ensure buttons wrap on small screens */
}

.page-resources-g666-common-issues__btn-primary,
.page-resources-g666-common-issues__btn-secondary,
.page-resources-g666-common-issues__btn-play {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-resources-g666-common-issues__btn-primary,
.page-resources-g666-common-issues__btn-play {
  background-color: #C30808; /* Custom color for Login/Register */
  color: #FFFF00; /* Custom font color for Login/Register */
  border: 2px solid #C30808;
}

.page-resources-g666-common-issues__btn-primary:hover,
.page-resources-g666-common-issues__btn-play:hover {
  background-color: #E00A0A; /* Slightly darker on hover */
  border-color: #E00A0A;
}

.page-resources-g666-common-issues__btn-secondary {
  background-color: transparent;
  color: #FFFF00; /* Custom font color for Login/Register */
  border: 2px solid #C30808;
}

.page-resources-g666-common-issues__btn-secondary:hover {
  background-color: #C30808;
  color: #FFFFFF;
}

/* Content Area */
.page-resources-g666-common-issues__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff; /* Explicitly white for light-bg */
  color: #333333;
}

.page-resources-g666-common-issues__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-resources-g666-common-issues__section-title {
  font-size: 2em;
  color: #017439; /* Brand color for titles */
  margin-bottom: 30px;
  text-align: center;
}

.page-resources-g666-common-issues p {
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-g666-common-issues__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

/* Video Section */
.page-resources-g666-common-issues__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: #000; /* Fallback for video area */
  max-width: 100%;
  box-sizing: border-box;
}

.page-resources-g666-common-issues__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  max-width: 100%;
  display: block;
}

.page-resources-g666-common-issues__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page-resources-g666-common-issues__video-wrapper:hover .page-resources-g666-common-issues__video-overlay {
  opacity: 1;
}

.page-resources-g666-common-issues__video-description {
  text-align: center;
  font-style: italic;
  margin-top: 10px;
  color: #555555;
}

/* FAQ List */
.page-resources-g666-common-issues__faq-list {
  margin-top: 40px;
}

.page-resources-g666-common-issues__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-resources-g666-common-issues__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #ffffff;
  cursor: pointer;
  font-weight: bold;
  color: #017439; /* Brand color for questions */
  transition: background-color 0.3s ease;
}

.page-resources-g666-common-issues__faq-question:hover {
  background-color: #f0f0f0;
}