/* style/resources-789-club-security-review.css */

/* Base styles for the page content */
.page-resources-789-club-security-review {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #FFFFFF; /* Default body background */
}

/* Fixed header offset - apply to the first main content section or hero */
.page-resources-789-club-security-review__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  text-align: center;
  color: #FFFFFF;
}

.page-resources-789-club-security-review__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-789-club-security-review__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-resources-789-club-security-review__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-resources-789-club-security-review__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-resources-789-club-security-review__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-resources-789-club-security-review__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-resources-789-club-security-review__sub-title {
  font-size: 1.8em;
  color: #26A9E0; /* Brand color for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-789-club-security-review__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-resources-789-club-security-review__introduction-section,
.page-resources-789-club-security-review__content-section,
.page-resources-789-club-security-review__faq-section,
.page-resources-789-club-security-review__conclusion-section {
  padding: 60px 0;
}

/* Color contrast enforcement */
.page-resources-789-club-security-review__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-resources-789-club-security-review__dark-bg {
  background-color: #26A9E0; /* Main brand color */
  color: #FFFFFF;
}
.page-resources-789-club-security-review__dark-bg .page-resources-789-club-security-review__section-title,
.page-resources-789-club-security-review__dark-bg .page-resources-789-club-security-review__sub-title {
  color: #FFFFFF; /* White titles on dark background */
}

.page-resources-789-club-security-review__text-block {
  margin-bottom: 30px;
}

.page-resources-789-club-security-review__text-block p {
  margin-bottom: 15px;
}

.page-resources-789-club-security-review__text-block a {
  color: #EA7C07; /* Login color for links within text */
  text-decoration: underline;
}

.page-resources-789-club-security-review__text-block a:hover {
  color: #000000; /* Darker on hover for contrast */
}

/* Button styles */
.page-resources-789-club-security-review__btn-primary {
  display: inline-block;
  background-color: #EA7C07; /* Login color for primary action */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  box-sizing: border-box;
}

.page-resources-789-club-security-review__btn-primary:hover {
  background-color: #C06000; /* Slightly darker on hover */
}

/* Image and video responsive styles */
.page-resources-789-club-security-review img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-789-club-security-review__image-wrapper {
  margin: 30px auto;
  max-width: 1000px; /* Max width for content images */
  text-align: center;
}

.page-resources-789-club-security-review__video-section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-789-club-security-review__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 1000px;
  margin: 30px auto;
  border-radius: 8px;
}

.page-resources-789-club-security-review__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 10; /* Ensure link is clickable over video */
}