@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

.blog-article {
  font-family: 'Poppins', sans-serif;
  padding: 40px 20px 80px;
}

.article-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 40px;
}

/* BACK */
.back-link {
  font-size: 18px;
  color: #1d3e88;
  text-decoration: none;
}

/* TITLE */
.article-content h1 {
  font-size: 24px;
  font-weight: 600;
  margin: 12px 0;
  line-height: 1.35;
}

/* META */
.article-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #667085;
  margin-bottom: 16px;
}

/* HERO */
.article-hero {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  margin: 20px 0;
}

/* CONTENT */
.article-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #344054;
  margin-bottom: 16px;
}

.article-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 28px 0 16px;
  color: #1d3e88;
}

.article-content ol {
  padding-left: 18px;
}

.article-content li {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* SHARE */
.share-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 13px;
}

.share-row a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
}

/* SIDEBAR */
.article-sidebar h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.sidebar-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.sidebar-item img {
  width: 72px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
}

.sidebar-item p {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 4px;
}

.sidebar-item span {
  font-size: 11px;
  color: #667085;
}

/* RELATED MOBILE */
.related-mobile {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    display: none;
  }

  .related-mobile {
    display: block;
    margin-top: 40px;
  }

  .related-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
  }

  .related-item img {
    width: 70px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
  }

  .related-item p {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .related-item span {
    font-size: 11px;
    color: #667085;
  }
}


/* YOU MIGHT ALSO LIKE (DESKTOP + MOBILE) */
.related-mobile {
  margin-top: 40px;
}

.related-mobile h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1d3e88;
  margin-bottom: 16px;
}

.related-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.related-item img {
  width: 72px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
}

.related-item p {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 4px;
  color: #101828;
}

.related-item span {
  font-size: 11px;
  color: #667085;
}



@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    display: none;
  }
}
