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

.page-resources-8k8-com-account-security-guide__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  padding: 40px 20px;
}

.page-resources-8k8-com-account-security-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-resources-8k8-com-account-security-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.page-resources-8k8-com-account-security-guide__hero-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-8k8-com-account-security-guide__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-resources-8k8-com-account-security-guide__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000000;
  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;
}

.page-resources-8k8-com-account-security-guide__hero-button:hover {
  background-color: #e6c200;
}

.page-resources-8k8-com-account-security-guide__content-area {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.page-resources-8k8-com-account-security-guide__article-wrapper {
  padding: 20px;
}

.page-resources-8k8-com-account-security-guide__intro-paragraph {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-8k8-com-account-security-guide__heading {
  color: #FFD700;
  font-size: 2em;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-resources-8k8-com-account-security-guide__heading + p {
  margin-top: 20px;
}

.page-resources-8k8-com-account-security-guide__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-resources-8k8-com-account-security-guide__list-item {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-resources-8k8-com-account-security-guide__list-item strong {
  color: #FFD700;
}

.page-resources-8k8-com-account-security-guide__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  display: block;
  max-width: 800px; /* Ensure images don't overflow content area */
}

.page-resources-8k8-com-account-security-guide__image--centered {
  margin-left: auto;
  margin-right: auto;
}

.page-resources-8k8-com-account-security-guide__call-to-action {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
}

.page-resources-8k8-com-account-security-guide__button {
  display: inline-block;
  background-color: #FFD700;
  color: #000000;
  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;
  margin: 10px;
}

.page-resources-8k8-com-account-security-guide__button:hover {
  background-color: #e6c200;
}

.page-resources-8k8-com-account-security-guide__button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-resources-8k8-com-account-security-guide__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  color: #FFD700;
}

.page-resources-8k8-com-account-security-guide__return-link {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
}

.page-resources-8k8-com-account-security-guide__return-link a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-8k8-com-account-security-guide__return-link a:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-8k8-com-account-security-guide__hero-title {
    font-size: 2em;
  }

  .page-resources-8k8-com-account-security-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-8k8-com-account-security-guide__heading {
    font-size: 1.6em;
  }

  .page-resources-8k8-com-account-security-guide__content-area {
    padding: 15px;
    margin: 20px auto;
  }

  .page-resources-8k8-com-account-security-guide__article-wrapper {
    padding: 10px;
  }

  .page-resources-8k8-com-account-security-guide__image {
    max-width: 100%;
    height: auto;
  }
  
  .page-resources-8k8-com-account-security-guide__hero-section {
    min-height: 300px;
    padding: 20px 10px;
  }

  .page-resources-8k8-com-account-security-guide__hero-button,
  .page-resources-8k8-com-account-security-guide__button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 5px;
  }

  .page-resources-8k8-com-account-security-guide__call-to-action {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-resources-8k8-com-account-security-guide__hero-title {
    font-size: 1.8em;
  }

  .page-resources-8k8-com-account-security-guide__heading {
    font-size: 1.4em;
  }

  .page-resources-8k8-com-account-security-guide__hero-button,
  .page-resources-8k8-com-account-security-guide__button {
    width: calc(100% - 20px);
    margin: 5px 10px;
  }
}

/* Ensure content images are not too small */
.page-resources-8k8-com-account-security-guide img {
  min-width: 200px;
  min-height: 200px;
}

/* CSS for content area images in mobile view */
@media (max-width: 768px) {
  .page-resources-8k8-com-account-security-guide img {
    max-width: 100%;
    height: auto;
  }
}