.section-title-2{
    font-size: 24px;
    line-height: 2;
    font-weight: 500;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 30px;
}

.ky-hamburger {
    display: none;
    font-size: 24px;
    color: var(--primary-bg);
    cursor: pointer;
}

.blog-detail-section {
  padding: 30px 20px;
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  color: var(--primary-text);
}

.blog-detail-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  max-width: 1280px;
  margin: auto;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-size: 14px;

  position: sticky;
  top: 100px;
  align-self: start;
}

.back-link {
  color: var(--primary-main);
  text-decoration: none;
  font-weight: 500;
}

.meta-label {
  text-transform: uppercase;
  font-size: 10px;
  color: #888;
  margin-bottom: 10px;
}

.meta-value {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.author-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-name{
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.author-role{
    font-size: 10px;
    font-weight: 400;
    margin: 0;
}

.author-box img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-title {
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
}
.blog-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  margin-bottom: 6px;
}
.blog-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 30px;
}
.blog-banner, .blog-image {
  width: 100%;
  margin: 0;
  border-radius: 0px;
}
.blog-content h2 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog-content h3 {
  font-size: 18px;
  margin-top: 0px;
  font-weight: 500;
}
.blog-content p {
  font-size: 15px;
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 10px;
}
.blog-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.blog-content li {
  margin-bottom: 8px;
}
.blog-content a {
  color: #2563eb;
  text-decoration: underline;
  font-weight: 500;
}
.blog-quote {
  border-left: 4px solid #bdbbff;
  padding-left: 16px;
  font-style: italic;
  margin: 30px 0;
}
.blog-quote span {
  display: block;
  font-size: 14px;
  color: #555;
  font-style: normal;
  margin-top: 8px;
}

.callout-box {
  background: #f9f9f9;
  padding: 16px 20px;
  border-left: 4px solid #6c63ff;
  border-radius: 4px;
  margin: 30px 0;
  font-size: 14px;
  color: #333;
}

.cta-banner {
  background: var(--primary-main);
  color: #fff;
  padding: 30px;
  border-radius: 3px;
  text-align: center;
  margin-top: 50px;
}

.cta-button {
  font-size: 14px;
  background: linear-gradient(135deg, #ffe500, #ffe082, #ffca28, #ffc107, #ffb300);
  color: var(--primary-main) !important;
  padding: 12px 20px;
  font-weight: 500;
  text-decoration: none !important;
  border-radius: 3px;
  display: inline-block;
  margin-top: 14px;
}
.cta-button:hover {
  background: #eaeaff;
}

@media (max-width: 768px) {
    .ky-hamburger{
        display: block;
    }
}

@media (max-width: 768px) {
  .blog-detail-section{
    padding: 20px 15px;
  }

  .blog-detail-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-title {
    font-size: 30px;
  }

  .blog-sidebar {
    display: none;
  }

  .blog-content p,
  .blog-content ul li {
    font-size: 14px;
    line-height: 1.3;
  }

  .cta-banner {
    padding: 20px 16px;
    margin-top: 20px;
  }

  .cta-button {
    font-size: 13px;
    padding: 10px 16px;
  }

  .blog-content h2 {
    font-size: 16px;
    margin-top: 16px;
    margin-bottom: 14px;
  }

  .blog-image, .blog-banner {
    margin: 0px 0;
  }

  .callout-box {
    padding: 12px 14px;
    font-size: 13px;
  }

  .article-card {
    width: 100%;
  }
}
