/* style/blog-latest-features-analysis.css */
.page-blog-latest-features-analysis {
  font-family: Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--background-color);
}

.page-blog-latest-features-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-latest-features-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--background-color);
  overflow: hidden;
}

.page-blog-latest-features-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Adjust as needed for visual balance */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-latest-features-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-latest-features-analysis__hero-content-wrapper {
  padding: 40px 0;
  text-align: center;
  background-color: var(--card-bg);
  width: 100%;
  box-sizing: border-box;
  border-bottom: 2px solid var(--border-color);
}

.page-blog-latest-features-analysis__main-title {
  font-size: clamp(2em, 3.5vw, 3.2em);
  color: var(--text-main);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-features-analysis__hero-description {
  font-size: 1.1em;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-blog-latest-features-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-latest-features-analysis__btn-primary,
.page-blog-latest-features-analysis__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-latest-features-analysis__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: 2px solid transparent;
}

.page-blog-latest-features-analysis__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-features-analysis__btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 2px solid var(--border-color);
}

.page-blog-latest-features-analysis__btn-secondary:hover {
  background-color: var(--deep-green);
  color: #F2FFF6;
  border-color: var(--deep-green);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-features-analysis__content-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--divider-color);
}

.page-blog-latest-features-analysis__content-section:last-of-type {
  border-bottom: none;
}

.page-blog-latest-features-analysis__section-title {
  font-size: 2.2em;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-latest-features-analysis__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--gold);
  border-radius: 2px;
}

.page-blog-latest-features-analysis__paragraph {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-secondary);
  text-align: justify;
}

.page-blog-latest-features-analysis__paragraph strong {
  color: var(--text-main);
}

.page-blog-latest-features-analysis__paragraph a {
  color: var(--glow);
  text-decoration: none;
  font-weight: bold;
}

.page-blog-latest-features-analysis__paragraph a:hover {
  text-decoration: underline;
}

.page-blog-latest-features-analysis__image-in-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-latest-features-analysis__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-blog-latest-features-analysis__list-item {
  font-size: 1.05em;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.page-blog-latest-features-analysis__list-item::before {
  content: '✓';
  color: var(--glow);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-blog-latest-features-analysis__list-item strong {
  color: var(--text-main);
}

.page-blog-latest-features-analysis__ordered-list {
  list-style: decimal;
  padding-left: 30px;
  margin-bottom: 20px;
}

.page-blog-latest-features-analysis__feature-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.page-blog-latest-features-analysis__feature-title {
  font-size: 1.8em;
  color: var(--text-main);
  margin-bottom: 20px;
  font-weight: bold;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
}

.page-blog-latest-features-analysis__faq-section {
  background-color: var(--deep-green);
  padding: 60px 0;
}

.page-blog-latest-features-analysis__faq-section .page-blog-latest-features-analysis__section-title {
  color: #F2FFF6;
}

.page-blog-latest-features-analysis__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-features-analysis__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--text-main);
  background-color: var(--card-bg);
  transition: background-color 0.3s ease;
}

.page-blog-latest-features-analysis__faq-item summary:hover {
  background-color: rgba(var(--border-color-rgb), 0.5);
}

.page-blog-latest-features-analysis__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-latest-features-analysis__faq-qtext {
  flex-grow: 1;
}

.page-blog-latest-features-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow);
}

.page-blog-latest-features-analysis__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-secondary);
  text-align: justify;
}

/* Ensure images in content sections are responsive */
.page-blog-latest-features-analysis img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-latest-features-analysis__main-title {
    font-size: clamp(2em, 4vw, 3em);
  }

  .page-blog-latest-features-analysis__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-features-analysis__hero-content-wrapper {
    padding: 30px 0;
  }

  .page-blog-latest-features-analysis__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

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

  .page-blog-latest-features-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-latest-features-analysis__btn-primary,
  .page-blog-latest-features-analysis__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-latest-features-analysis__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-blog-latest-features-analysis__content-section {
    padding: 40px 0;
  }

  .page-blog-latest-features-analysis__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-latest-features-analysis__paragraph,
  .page-blog-latest-features-analysis__list-item,
  .page-blog-latest-features-analysis__faq-answer {
    font-size: 0.95em;
  }

  .page-blog-latest-features-analysis__feature-card {
    padding: 20px;
  }

  .page-blog-latest-features-analysis__feature-title {
    font-size: 1.5em;
  }

  .page-blog-latest-features-analysis__faq-item summary {
    font-size: 1em;
    padding: 15px;
  }

  /* Mobile image responsiveness */
  .page-blog-latest-features-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-latest-features-analysis__container,
  .page-blog-latest-features-analysis__overview,
  .page-blog-latest-features-analysis__features-detail,
  .page-blog-latest-features-analysis__benefits,
  .page-blog-latest-features-analysis__cta-register,
  .page-blog-latest-features-analysis__faq-section,
  .page-blog-latest-features-analysis__conclusion {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-latest-features-analysis__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}