/* Blog Post Content - 2025 */
.hl-blog-post-content-2025 {
  width: 100%;
  background: #FFFFFF;
  padding: 64px 0;
  font-family: "Neue Montreal", sans-serif;
}

.hl-content-wrapper-2025 {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
}

/* Post Body - 2025 */
.hl-post-body-2025 {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  color: #4F4D5F;
  margin-bottom: 64px;
}

.blog-post-content .post-body h2 {
  font-size: 32px;
  line-height: 1.3;
  color: #030013;
  font-weight: 500;
  margin: 48px 0 24px;
}

.blog-post-content .post-body h3 {
  font-size: 24px;
  line-height: 1.3;
  color: #030013;
  font-weight: 500;
  margin: 32px 0 16px;
}

.blog-post-content .post-body p {
  margin: 0 0 24px;
}

.blog-post-content .post-body a {
  color: #008EFF;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.blog-post-content .post-body a:hover {
  opacity: 0.8;
}

.blog-post-content .post-body ul,
.blog-post-content .post-body ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.blog-post-content .post-body li {
  margin-bottom: 12px;
}

.blog-post-content .post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 32px 0;
}

.blog-post-content .post-body blockquote {
  border-left: 4px solid #008EFF;
  margin: 32px 0;
  padding: 16px 32px;
  font-style: italic;
  background: rgba(0, 142, 255, 0.05);
}

/* Newsletter Section */
.blog-post-newsletter {
  width: 100%;
  padding: 64px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgb(235, 233, 251) 0%, rgb(230, 254, 248) 100%);
  margin-top: 64px;
  box-sizing: border-box;
}

.blog-post-newsletter .newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.blog-post-newsletter .newsletter-text {
  flex: 1;
  max-width: 486px;
  min-width: 280px;
}

.blog-post-newsletter .newsletter-heading {
  font-size: 42px;
  line-height: 120%;
  margin: 0 0 16px;
  font-family: "Neue Montreal-Medium", Helvetica;
  color: #030013;
}

.blog-post-newsletter .newsletter-description {
  font-size: 16px;
  line-height: 1.5;
  color: #4F4D5F;
  margin: 0;
}

.blog-post-newsletter .newsletter-form-container {
  flex: 1;
  max-width: 500px;
  width: 100%;
  min-width: 280px;
}

/* Subscribe Form */
.blog-post-newsletter .subscribe-form {
  width: 100%;
}

.blog-post-newsletter .form-wrapper {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border-radius: 100px;
  padding: 8px 8px 8px 24px;
  overflow: hidden;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
}

.blog-post-newsletter .email-input {
  flex: 1;
  height: 40px;
  border: none;
  background: transparent;
  font-family: "Neue Montreal", sans-serif;
  font-size: 16px;
  color: #4F4D5F;
  padding: 0;
  min-width: 300px;
}

.blog-post-newsletter .email-input::placeholder {
  color: #4F4D5F;
  opacity: 0.5;
}

.blog-post-newsletter .email-input:focus {
  outline: none;
}

.blog-post-newsletter .subscribe-button {
  height: 40px;
  padding: 0 32px;
  border: none;
  border-radius: 100px;
  background: linear-gradient(90deg, #008EFF 0%, #00EB86 100%);
  color: #FFFFFF;
  font-family: "Neue Montreal", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.blog-post-newsletter .subscribe-button:hover {
  opacity: 0.9;
}

/* Form States */
.blog-post-newsletter .subscribe-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.blog-post-newsletter .form-message {
  margin-top: 12px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}

.blog-post-newsletter .form-message.success {
  background-color: rgba(0, 235, 134, 0.1);
  color: rgb(0, 235, 134);
}

.blog-post-newsletter .form-message.error {
  background-color: rgba(255, 69, 58, 0.1);
  color: rgb(255, 69, 58);
}

/* Responsive Design */
@media (max-width: 991px) {
  .blog-post-newsletter .newsletter-content {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .blog-post-newsletter .newsletter-text {
    max-width: 100%;
    min-width: auto;
  }

  .blog-post-newsletter .newsletter-form-container {
    max-width: 100%;
    min-width: auto;
  }

  .blog-post-newsletter .newsletter-heading {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .blog-post-content {
    padding: 32px 0;
  }

  .blog-post-content .post-body {
    font-size: 16px;
    margin-bottom: 48px;
  }

  .blog-post-content .post-body h2 {
    font-size: 28px;
    margin: 32px 0 16px;
  }

  .blog-post-content .post-body h3 {
    font-size: 20px;
    margin: 24px 0 12px;
  }

  .blog-post-newsletter {
    padding: 32px 20px;
    margin: 32px -20px;
    border-radius: 0;
    width: auto;
  }

  .blog-post-newsletter .form-wrapper {
    flex-direction: column;
    padding: 8px;
    gap: 8px;
    border-radius: 16px;
    width: 100%;
  }

  .blog-post-newsletter .email-input {
    width: 100%;
    min-width: unset;
    padding: 8px 16px;
    text-align: center;
  }

  .blog-post-newsletter .subscribe-button {
    width: 100%;
    margin: 0;
  }

  .blog-post-newsletter .newsletter-heading {
    font-size: 28px;
    margin-bottom: 12px;
  }
}

/* Other Articles Section - 2025 */
.hl-other-articles-2025 {
  margin: 80px 0;
}

.hl-other-articles-title-2025 {
  font-family: "Neue Montreal-Medium", sans-serif;
  font-size: 52px;
  line-height: 120%;
  color: #030013;
  margin-bottom: 40px;
  font-weight: 500;
}

.hl-articles-grid-2025 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.hl-article-card-2025 {
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease;
  background: #FFFFFF;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #BED8ED;
}

.hl-article-card-2025:hover {
  transform: translateY(-4px);
}

.hl-article-image-2025 {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.hl-article-image-2025 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hl-article-content-2025 {
  padding: 24px;
}

.hl-article-tag-2025 {
  display: inline-block;
  font-family: "Neue Montreal-Medium", sans-serif;
  font-size: 14px;
  color: #2D6EF6;
  margin-bottom: 12px;
}

.hl-article-title-2025 {
  font-family: "Neue Montreal-Medium", sans-serif;
  font-size: 24px;
  line-height: 1.3;
  color: #030013;
  margin: 0 0 16px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hl-article-meta-2025 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hl-author-info-2025 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hl-author-avatar-2025 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.hl-author-name-2025 {
  font-family: "Neue Montreal-Medium", sans-serif;
  font-size: 14px;
  color: #030013;
}

.hl-post-date-2025 {
  font-family: "Neue Montreal-Medium", sans-serif;
  font-size: 14px;
  color: #4F4D5F;
}

@media (max-width: 1200px) {
  .hl-content-wrapper-2025 {
    padding: 0 40px;
  }
  
  .hl-articles-grid-2025 {
    gap: 24px;
  }
}

@media (max-width: 991px) {
  .hl-articles-grid-2025 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hl-other-articles-title-2025 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .hl-blog-post-content-2025 {
    padding: 32px 0;
  }

  .hl-content-wrapper-2025 {
    padding: 0 20px;
  }

  .hl-post-body-2025 {
    font-size: 16px;
    margin-bottom: 48px;
  }

  .hl-other-articles-2025 {
    margin: 60px 0;
  }
  
  .hl-other-articles-title-2025 {
    font-size: 32px;
    margin-bottom: 24px;
  }
  
  .hl-articles-grid-2025 {
    grid-template-columns: 1fr;
  }
  
  .hl-article-image-2025 {
    height: 200px;
  }
}

/* Add responsive styles for the newsletter heading */
@media (max-width: 1200px) {
  .blog-post-newsletter {
    padding: 48px;
  }

  .blog-post-newsletter .newsletter-heading {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  /* ... existing styles ... */
  
  .blog-post-newsletter .newsletter-heading {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  /* ... existing styles ... */
  
  .blog-post-newsletter .newsletter-heading {
    font-size: 28px;
    margin-bottom: 12px;
  }
}

/* Content Grid Layout */
.hl-content-grid-2025 {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 64px;
  margin: 0 auto;
  max-width: 1440px;
}

/* Post Body - 2025 */
.hl-post-body-2025 {
  font-size: 18px;
  line-height: 1.6;
  color: #4F4D5F;
  max-width: 876px;
}

.hl-post-body-2025 h2 {
  font-family: "Neue Montreal-Medium", Helvetica;
  font-size: 32px;
  line-height: 1.3;
  color: #030013;
  margin: 48px 0 24px;
}

.hl-post-body-2025 p {
  margin: 0 0 24px;
}

/* Sidebar - 2025 */
.hl-post-sidebar-2025 {
  position: sticky;
  top: 32px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 280px;
  margin-left: auto;
}

/* Progress Navigation */
.hl-progress-nav-2025 {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 24px;
}

.progress-bar-container {
  position: relative;
  width: 24px;
  height: 180px;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 10px;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, rgb(0, 142, 255) 0%, rgb(0, 235, 134) 100%);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.progress-dots {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: grid;
  grid-template-rows: repeat(3, auto);
  align-items: start;
}

.progress-dot {
  width: 24px;
  height: 24px;
  border-radius: 100px;
  border: 1px solid #bed8ed;
  background: #ffffff;
  transition: all 0.2s ease;
}

.progress-dot.active {
  background: linear-gradient(180deg, rgb(0, 142, 255) 0%, rgb(0, 235, 134) 100%);
  border: none;
}

.section-links {
  display: grid;
  grid-template-rows: repeat(3, auto);
  align-items: start;
  gap: 24px;
}

.section-link {
  font-family: "Neue Montreal-Medium", Helvetica;
  font-size: 16px;
  line-height: 1.4;
  color: #4F4D5F;
  text-decoration: none;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-top: 2px; /* Fine-tune vertical alignment with dots */
}

.section-link.active {
  color: #008EFF;
}

/* CTA Section */
.hl-sidebar-cta-2025 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #F8F9FB;
  border-radius: 12px;
}

.cta-title {
  font-family: "Neue Montreal-Bold", Helvetica;
  font-size: 20px;
  line-height: 1.2;
  color: #008EFF;
  margin: 0;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-item img {
  width: 42px;
  height: 46px;
  flex-shrink: 0;
}

.feature-item p {
  font-family: "Neue Montreal-Medium", Helvetica;
  font-size: 16px;
  line-height: 1.4;
  color: #030013;
  margin: 0;
}

.get-started-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  background: linear-gradient(90deg, #008EFF 0%, #00EB86 100%);
  border-radius: 100px;
  color: #FFFFFF;
  font-family: "Neue Montreal-Medium", Helvetica;
  font-size: 16px;
  text-decoration: none;
  transition: opacity 0.2s ease;
  margin-top: 8px;
}

.get-started-btn:hover {
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hl-content-grid-2025 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hl-post-sidebar-2025 {
    display: none;
  }
}

// ... existing styles ... 