/* style/blog-latest-updates-ga67.css */

/* Base styles for the page, ensuring text contrast with dark body background */
.page-blog-latest-updates-ga67 {
  color: #F2FFF6; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Section spacing and container */
.page-blog-latest-updates-ga67__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-latest-updates-ga67__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #F2FFF6; /* Text Main */
  line-height: 1.2;
}

.page-blog-latest-updates-ga67__text-block {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #A7D9B8; /* Text Secondary */
}

/* Hero Section */
.page-blog-latest-updates-ga67__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-blog-latest-updates-ga67__hero-image-wrapper {
  width: 100%;
  position: relative;
  margin-bottom: 40px;
}

.page-blog-latest-updates-ga67__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-latest-updates-ga67__hero-content {
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
  z-index: 1;
}

.page-blog-latest-updates-ga67__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: 800;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.page-blog-latest-updates-ga67__description {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

/* CTA Button (Primary) */
.page-blog-latest-updates-ga67__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main for buttons */
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-blog-latest-updates-ga67__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* About GA67 Section */
.page-blog-latest-updates-ga67__about-ga67-section {
  background-color: #08160F; /* Background */
  padding: 80px 0;
  color: #F2FFF6; /* Text Main */
}

.page-blog-latest-updates-ga67__dark-section {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-latest-updates-ga67__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

.page-blog-latest-updates-ga67__feature-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease;
}

.page-blog-latest-updates-ga67__feature-card:hover {
  transform: translateY(-5px);
}

.page-blog-latest-updates-ga67__feature-icon {
  width: 100%;
  height: auto;
  max-width: 150px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-latest-updates-ga67__feature-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-blog-latest-updates-ga67__feature-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

/* Latest News Section */
.page-blog-latest-updates-ga67__latest-news-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG for this section's background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-latest-updates-ga67__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-blog-latest-updates-ga67__news-card {
  background-color: #08160F; /* Background for news cards */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease;
}

.page-blog-latest-updates-ga67__news-card:hover {
  transform: translateY(-5px);
}

.page-blog-latest-updates-ga67__news-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog-latest-updates-ga67__news-content {
  padding: 25px;
}

.page-blog-latest-updates-ga67__news-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-blog-latest-updates-ga67__news-title a {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-latest-updates-ga67__news-title a:hover {
  color: #57E38D; /* Glow */
}

.page-blog-latest-updates-ga67__news-date {
  font-size: 0.9em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-blog-latest-updates-ga67__news-excerpt {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-blog-latest-updates-ga67__read-more-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  color: #57E38D; /* Glow */
  border: 1px solid #57E38D;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-blog-latest-updates-ga67__read-more-button:hover {
  background-color: #57E38D;
  color: #08160F; /* Background */
}

.page-blog-latest-updates-ga67__view-all-button-container {
  text-align: center;
  margin-top: 50px;
}

/* Benefits Section */
.page-blog-latest-updates-ga67__benefits-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

.page-blog-latest-updates-ga67__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

.page-blog-latest-updates-ga67__benefit-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease;
}

.page-blog-latest-updates-ga67__benefit-card:hover {
  transform: translateY(-5px);
}

.page-blog-latest-updates-ga67__benefit-icon {
  width: 100%;
  height: auto;
  max-width: 100px;
  margin-bottom: 20px;
  border-radius: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-latest-updates-ga67__benefit-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-blog-latest-updates-ga67__benefit-description {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
}

/* Registration Guide Section */
.page-blog-latest-updates-ga67__registration-guide-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG for this section's background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-latest-updates-ga67__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

.page-blog-latest-updates-ga67__step-card {
  background-color: #08160F; /* Background for step cards */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease;
}

.page-blog-latest-updates-ga67__step-card:hover {
  transform: translateY(-5px);
}

.page-blog-latest-updates-ga67__step-image {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-latest-updates-ga67__step-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-blog-latest-updates-ga67__step-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-latest-updates-ga67__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

/* FAQ Section */
.page-blog-latest-updates-ga67__faq-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-latest-updates-ga67__faq-list {
  max-width: 800px;
  margin: 50px auto 0 auto;
}

.page-blog-latest-updates-ga67__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-latest-updates-ga67__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
  list-style: none; /* Remove default marker for <summary> */
}

.page-blog-latest-updates-ga67__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-latest-updates-ga67__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-blog-latest-updates-ga67__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-blog-latest-updates-ga67__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.5;
}

/* Final CTA Section */
.page-blog-latest-updates-ga67__cta-final-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
  text-align: center;
  color: #F2FFF6; /* Text Main */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-latest-updates-ga67__section-title {
    font-size: 2em;
  }
  .page-blog-latest-updates-ga67__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
}

@media (max-width: 768px) {
  .page-blog-latest-updates-ga67 {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-latest-updates-ga67__container {
    padding: 0 15px;
  }

  .page-blog-latest-updates-ga67__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-blog-latest-updates-ga67__hero-image,
  .page-blog-latest-updates-ga67__feature-icon,
  .page-blog-latest-updates-ga67__news-image,
  .page-blog-latest-updates-ga67__benefit-icon,
  .page-blog-latest-updates-ga67__step-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-latest-updates-ga67__hero-image-wrapper,
  .page-blog-latest-updates-ga67__features-grid,
  .page-blog-latest-updates-ga67__news-grid,
  .page-blog-latest-updates-ga67__benefits-grid,
  .page-blog-latest-updates-ga67__steps-grid,
  .page-blog-latest-updates-ga67__faq-list,
  .page-blog-latest-updates-ga67__cta-button,
  .page-blog-latest-updates-ga67__read-more-button,
  .page-blog-latest-updates-ga67__feature-card,
  .page-blog-latest-updates-ga67__news-card,
  .page-blog-latest-updates-ga67__benefit-card,
  .page-blog-latest-updates-ga67__step-card,
  .page-blog-latest-updates-ga67__faq-item,
  .page-blog-latest-updates-ga67__about-ga67-section,
  .page-blog-latest-updates-ga67__latest-news-section,
  .page-blog-latest-updates-ga67__benefits-section,
  .page-blog-latest-updates-ga67__registration-guide-section,
  .page-blog-latest-updates-ga67__faq-section,
  .page-blog-latest-updates-ga67__cta-final-section
  {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-latest-updates-ga67__news-grid,
  .page-blog-latest-updates-ga67__features-grid,
  .page-blog-latest-updates-ga67__benefits-grid,
  .page-blog-latest-updates-ga67__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-latest-updates-ga67__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-blog-latest-updates-ga67__text-block {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-blog-latest-updates-ga67__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-latest-updates-ga67__read-more-button {
    width: auto !important;
    max-width: none !important;
  }
}