.page-resources-latest-features-analysis {
  color: #0D1117; /* Dark text for light body background #f4f4f4 */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-latest-features-analysis__hero-section {
  background-color: #0D1117;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-resources-latest-features-analysis__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-latest-features-analysis__hero-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-latest-features-analysis__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-resources-latest-features-analysis__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-latest-features-analysis__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1em;
}

.page-resources-latest-features-analysis__button--primary {
  background-color: #FFD700;
  color: #0D1117;
  border: 2px solid #FFD700;
}

.page-resources-latest-features-analysis__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-latest-features-analysis__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-latest-features-analysis__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-resources-latest-features-analysis__hero-image {
  margin-top: 40px;
  max-width: 100%;
}

.page-resources-latest-features-analysis__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-resources-latest-features-analysis__article-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-latest-features-analysis__back-link-wrapper {
  text-align: right;
  margin-bottom: 30px;
}

.page-resources-latest-features-analysis__back-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-latest-features-analysis__back-link:hover {
  color: #0D1117;
}

.page-resources-latest-features-analysis__section-title {
  font-size: 2em;
  color: #0D1117;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-latest-features-analysis__subsection-title {
  font-size: 1.5em;
  color: #0D1117;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-latest-features-analysis__article-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-resources-latest-features-analysis__article-content a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-latest-features-analysis__article-content a:hover {
  text-decoration: underline;
}

.page-resources-latest-features-analysis__article-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-resources-latest-features-analysis__download-steps {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-resources-latest-features-analysis__download-steps li {
  margin-bottom: 10px;
}

.page-resources-latest-features-analysis__cta-buttons {
  text-align: center;
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .page-resources-latest-features-analysis__hero-title {
    font-size: 2em;
  }

  .page-resources-latest-features-analysis__hero-description {
    font-size: 1em;
  }

  .page-resources-latest-features-analysis__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-latest-features-analysis__button {
    width: 100%;
    padding: 12px 20px;
  }

  .page-resources-latest-features-analysis__section-title {
    font-size: 1.6em;
  }

  .page-resources-latest-features-analysis__subsection-title {
    font-size: 1.3em;
  }

  .page-resources-latest-features-analysis__article-content {
    margin: 20px auto;
    padding: 15px;
  }

  .page-resources-latest-features-analysis__article-content p,
  .page-resources-latest-features-analysis__download-steps li {
    font-size: 1em;
  }

  .page-resources-latest-features-analysis__article-image,
  .page-resources-latest-features-analysis__hero-image img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
  }
  
  .page-resources-latest-features-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

/* Ensure content area images do not cause horizontal scroll */
@media (max-width: 768px) {
  .page-resources-latest-features-analysis {
    overflow-x: hidden;
  }
  .page-resources-latest-features-analysis__article-content img,
  .page-resources-latest-features-analysis__hero-image img {
    max-width: 100% !important;
    height: auto !important;
  }
}