/* style/resources-pub774-security.css */
.page-resources-pub774-security {
  color: #ffffff; /* Light text on dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

.page-resources-pub774-security__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  background-color: #0A2463; /* Main brand color for hero background */
}

.page-resources-pub774-security__hero-container {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-resources-pub774-security__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.3;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-resources-pub774-security__hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(10, 36, 99, 0.7); /* Semi-transparent overlay for readability */
  border-radius: 10px;
}

.page-resources-pub774-security__hero-title {
  font-size: 3.2em;
  color: #E3B505; /* Accent color for title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-pub774-security__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-resources-pub774-security__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-pub774-security__button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #E3B505; /* Accent color for primary button */
  color: #0A2463; /* Dark text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-resources-pub774-security__button:hover {
  background-color: #f0c520;
  transform: translateY(-2px);
}

.page-resources-pub774-security__button--secondary {
  background-color: transparent;
  color: #E3B505;
  border: 2px solid #E3B505;
}

.page-resources-pub774-security__button--secondary:hover {
  background-color: #E3B505;
  color: #0A2463;
}

.page-resources-pub774-security__content-area {
  max-width: 800px; /* Content width for readability */
  margin: 40px auto;
  padding: 0 20px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for content section */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-pub774-security__back-link {
  display: inline-block;
  margin: 20px 0;
  color: #E3B505;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-pub774-security__back-link:hover {
  color: #f0c520;
  text-decoration: underline;
}

.page-resources-pub774-security__article {
  padding: 20px 0;
}

.page-resources-pub774-security__article-heading {
  color: #E3B505;
  font-size: 2.2em;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(227, 181, 5, 0.3);
  padding-bottom: 10px;
}

.page-resources-pub774-security__article-sub-heading {
  color: #f0f0f0;
  font-size: 1.6em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-pub774-security__article-paragraph {
  font-size: 1.1em;
  margin-bottom: 1em;
  color: #cccccc;
}

.page-resources-pub774-security__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-resources-pub774-security__article-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-resources-pub774-security__call-to-action {
  background-color: #0A2463;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-pub774-security__call-to-action-title {
  color: #E3B505;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.page-resources-pub774-security__call-to-action-description {
  color: #f0f0f0;
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-pub774-security__hero-title {
    font-size: 2.8em;
  }
  .page-resources-pub774-security__hero-description {
    font-size: 1.1em;
  }
  .page-resources-pub774-security__article-heading {
    font-size: 2em;
  }
  .page-resources-pub774-security__call-to-action-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-pub774-security {
    padding-top: var(--header-offset, 120px);
  }
  .page-resources-pub774-security__hero-content {
    padding: 60px 15px;
  }
  .page-resources-pub774-security__hero-title {
    font-size: 2.2em;
  }
  .page-resources-pub774-security__hero-description {
    font-size: 1em;
  }
  .page-resources-pub774-security__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-pub774-security__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-resources-pub774-security__content-area {
    margin: 20px auto;
    padding: 0 15px;
  }
  .page-resources-pub774-security__article-heading {
    font-size: 1.8em;
  }
  .page-resources-pub774-security__article-sub-heading {
    font-size: 1.4em;
  }
  .page-resources-pub774-security__article-paragraph {
    font-size: 1em;
  }
  .page-resources-pub774-security__call-to-action {
    padding: 30px 20px;
  }
  .page-resources-pub774-security__call-to-action-title {
    font-size: 1.8em;
  }
  .page-resources-pub774-security__article-image,
  .page-resources-pub774-security__image-wrapper img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }
}

@media (max-width: 480px) {
  .page-resources-pub774-security__hero-title {
    font-size: 1.8em;
  }
  .page-resources-pub774-security__hero-content {
    padding: 40px 10px;
  }
  .page-resources-pub774-security__button {
    width: 95%;
  }
  .page-resources-pub774-security__article-heading {
    font-size: 1.5em;
  }
  .page-resources-pub774-security__article-sub-heading {
    font-size: 1.2em;
  }
  .page-resources-pub774-security__call-to-action-title {
    font-size: 1.5em;
  }
}