/* style/resources-phbet-security-features.css */

/* Base styles for the page content, ensuring it's below the fixed header */
.page-resources-phbet-security-features {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #f5f5f5; /* Light background for contrast with dark text */
  color: #333333; /* Dark text for readability on light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.page-resources-phbet-security-features__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #1A202C; /* Dark background for the hero section */
  color: #ffffff;
  padding-bottom: 40px; /* Add some padding at the bottom for content below the image */
}

.page-resources-phbet-security-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text readability, not changing color */
}

.page-resources-phbet-security-features__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-phbet-security-features__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 800px;
  z-index: 10;
  padding: 20px;
  box-sizing: border-box;
}

.page-resources-phbet-security-features__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-phbet-security-features__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-resources-phbet-security-features__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Article Content Area */
.page-resources-phbet-security-features__article-content {
  max-width: 800px; /* Content width for comfortable reading */
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-resources-phbet-security-features__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #007bff; /* Standard link color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-phbet-security-features__back-link:hover {
  color: #FFD700; /* Gold on hover */
}

.page-resources-phbet-security-features__section {
  margin-bottom: 40px;
}

.page-resources-phbet-security-features__section-title {
  font-size: 2.2em;
  color: #1A202C; /* Dark gray for section titles */
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-phbet-security-features__sub-title {
  font-size: 1.6em;
  color: #1A202C;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-phbet-security-features__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  line-height: 1.7;
}

.page-resources-phbet-security-features__keyword-highlight {
  color: #FFD700; /* Highlight keywords with gold */
  font-weight: bold;
}

.page-resources-phbet-security-features__image-inline {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-resources-phbet-security-features__conclusion {
  text-align: center;
  padding: 40px 0;
  background-color: #1A202C;
  color: #ffffff;
  border-radius: 8px;
  margin-top: 40px;
}

.page-resources-phbet-security-features__conclusion-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-resources-phbet-security-features__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.page-resources-phbet-security-features__button--primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-resources-phbet-security-features__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-phbet-security-features__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-phbet-security-features__button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-resources-phbet-security-features__button--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

.page-resources-phbet-security-features__return-link-container {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 20px;
}

.page-resources-phbet-security-features__back-to-resources-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
}

.page-resources-phbet-security-features__back-to-resources-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-phbet-security-features__hero-title {
    font-size: 2.8em;
  }
  .page-resources-phbet-security-features__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-resources-phbet-security-features {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }
  .page-resources-phbet-security-features__hero-section {
    padding: 30px 15px;
  }
  .page-resources-phbet-security-features__hero-content {
    position: static;
    transform: none;
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }
  .page-resources-phbet-security-features__hero-title {
    font-size: 2.2em;
  }
  .page-resources-phbet-security-features__hero-description {
    font-size: 1em;
  }
  .page-resources-phbet-security-features__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-phbet-security-features__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-resources-phbet-security-features__article-content {
    margin: 20px auto;
    padding: 15px;
  }
  .page-resources-phbet-security-features__section-title {
    font-size: 1.8em;
  }
  .page-resources-phbet-security-features__sub-title {
    font-size: 1.4em;
  }
  .page-resources-phbet-security-features__paragraph {
    font-size: 1em;
  }
  .page-resources-phbet-security-features__image-inline {
    max-width: 100%; /* Ensure images don't overflow */
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-resources-phbet-security-features__conclusion-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-resources-phbet-security-features__hero-title {
    font-size: 1.8em;
  }
  .page-resources-phbet-security-features__hero-description {
    font-size: 0.9em;
  }
  .page-resources-phbet-security-features__button {
    width: 95%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-resources-phbet-security-features__button--large {
    padding: 15px 25px;
    font-size: 1.1em;
  }
  .page-resources-phbet-security-features__section-title {
    font-size: 1.5em;
  }
  .page-resources-phbet-security-features__sub-title {
    font-size: 1.2em;
  }
  .page-resources-phbet-security-features__paragraph {
    font-size: 0.95em;
  }
  .page-resources-phbet-security-features__conclusion-title {
    font-size: 1.8em;
  }
}