/* Blog Page Styles */
.blog_section {
  padding: 10vh 10vw;
  background-color: #0b0b0b;
  color: #f5f5f6;
}

.blog_container {
  max-width: 800px;
  margin: 0 auto;
}

.blog_container h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Clash Grotesk", sans-serif;
  /* text-align: center; */
}

.blog_intro {
  font-size: 20px;
  line-height: 30px;
  color: #9694b1;
  margin-bottom: 40px;
  /* text-align: center; */
}

.blog_content h2 {
  font-size: 32px;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: "Clash Grotesk", sans-serif;
}

.blog_content h3 {
  font-size: 26px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 15px;
  font-family: "Clash Grotesk", sans-serif;
}

.blog_content p {
  font-size: 18px;
  line-height: 28px;
  color: #9694b1;
  margin-bottom: 20px;
  font-family: "Clash Grotesk", sans-serif;
}

.blog_content ul,
.blog_content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.blog_content ul li,
.blog_content ol li {
  font-size: 16px;
  line-height: 26px;
  color: #9694b1;
  margin-bottom: 10px;
  font-family: "Clash Grotesk", sans-serif;
}

.blog_content strong {
  color: #f5f5f6;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog_container h1 {
    font-size: 36px;
  }

  .blog_intro {
    font-size: 18px;
  }

  .blog_content h2 {
    font-size: 28px;
  }

  .blog_content h3 {
    font-size: 22px;
  }

  .blog_content p {
    font-size: 16px;
  }

  .blog_content ul li,
  .blog_content ol li {
    font-size: 14px;
  }
}

/* CTA Section Styles */
.cta_section {
  padding: 8vh 10vw;
  /* background: radial-gradient(127.46% 121.51% at 50% 0%, rgba(109, 51, 232, 0.06) 25%, rgba(109, 51, 232, 0) 73%); */
  text-align: center;
  /* border-top: 1px solid #222222;
    border-bottom: 1px solid #222222; */
}

.cta_container {
  max-width: 800px;
  margin: 0 auto;
}

.cta_container h2 {
  font-size: 32px;
  font-weight: 500;
  color: #f5f5f6;
  margin-bottom: 20px;
  font-family: "Clash Grotesk", sans-serif;
}

.cta_container p {
  font-size: 18px;
  color: #9694b1;
  margin-bottom: 30px;
  font-family: "Clash Grotesk", sans-serif;
}

.cta_btn {
  padding: 12px 24px;
  background: linear-gradient(180deg, #9b96f5 0%, #635cf3 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  font-family: "Clash Grotesk", sans-serif;
  transition: background-color 0.3s ease;
}

.cta_btn:hover {
  background: linear-gradient(180deg, #635cf3 0%, #9b96f5 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta_container h2 {
    font-size: 28px;
  }

  .cta_container p {
    font-size: 16px;
  }

  .cta_btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}

/* Blog Image Styles */
.blog-image-container {
  margin: 2rem 0;
  text-align: center;
}

.responsive-blog-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-caption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blog-image-container {
    margin: 1.5rem 0;
  }
}
