/* =========================================================
   BLOG HUB PAGE — kategori & daftar artikel (preview cards)
   ========================================================= */

.blog-page-main {
  padding-top: 90px;
}

.blog-hero-simple {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 40px 10px 40px;
}

.blog-hero-simple h1 {
  font-family: "Asap Sharp", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #12024D;
  margin: 6px 0 10px 0;
}

.blog-hero-simple p {
  font-family: "Asap Sharp", sans-serif;
  font-size: 15px;
  color: #6b6b75;
  max-width: 640px;
  line-height: 1.6;
}

.blog-category-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 40px;
  scroll-margin-top: 90px;
}

.blog-category-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}

.blog-category-heading h2 {
  font-family: "Asap Sharp", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #12024D;
  margin: 0;
}

.blog-category-heading span {
  font-family: "Asap Sharp", sans-serif;
  font-size: 12px;
  color: #6b6b75;
}

.blog-post-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-post-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border: 1px solid #eef1f6;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-post-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.blog-post-image {
  width: 220px;
  flex-shrink: 0;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-post-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  flex: 1;
}

.blog-post-date {
  font-family: "Asap Sharp", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #052d55;
}

.blog-post-title {
  font-family: "Asap Sharp", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #12024D;
  margin: 0;
  line-height: 1.35;
}

.blog-post-excerpt {
  font-family: "Asap Sharp", sans-serif;
  font-size: 12px;
  color: #6b6b75;
  line-height: 1.5;
  margin: 0;
}

.blog-coming-soon {
  font-family: "Asap Sharp", sans-serif;
  font-size: 13px;
  color: #6b6b75;
  border: 1px dashed #ccd3de;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
}

/* =========================================================
   BLOG POST (artikel individual)
   ========================================================= */

.blog-post-main {
  padding-top: 90px;
}

.blog-post-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 40px 60px 40px;
}

.blog-post-header {
  margin-bottom: 24px;
}

.blog-post-header .blog-post-date {
  margin-bottom: 10px;
}

.blog-post-header h1 {
  font-family: "Asap Sharp", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #12024D;
  line-height: 1.3;
  margin: 0 0 12px 0;
}

.blog-post-lead {
  font-family: "Asap Sharp", sans-serif;
  font-size: 16px;
  color: #6b6b75;
  line-height: 1.6;
  margin: 0;
}

.blog-post-cover {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  margin: 24px 0 32px 0;
}

.blog-post-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-post-body h2 {
  font-family: "Asap Sharp", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #12024D;
  margin: 32px 0 12px 0;
}

.blog-post-body p {
  font-family: "Asap Sharp", sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1.75;
  margin: 0 0 14px 0;
}

.blog-post-body ul,
.blog-post-body ol {
  font-family: "Asap Sharp", sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1.75;
  margin: 0 0 16px 0;
  padding-left: 22px;
}

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

.blog-post-body strong {
  color: #12024D;
}

.blog-post-divider {
  border: none;
  border-top: 1px solid #eef1f6;
  margin: 36px 0;
}

.blog-post-cta {
  background-color: #f7f9fc;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.blog-post-cta p {
  font-family: "Asap Sharp", sans-serif;
  font-size: 14px;
  color: #333;
  margin: 0 0 14px 0;
}

.blog-post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Asap Sharp", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #052d55;
  text-decoration: none;
  margin-bottom: 20px;
}

.blog-post-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Asap Sharp", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  background-color: #052d55;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
}
