 .wsblog-home-block,
.wsblog-page,
.wsblog-post {
  margin: 2rem 0;
}

.wsblog-head,
.wsblog-page-header,
.wsblog-post-header {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.wsblog-head {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wsblog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.wsblog-layout-list .wsblog-grid,
.wsblog-page .wsblog-grid {
  align-items: stretch;
}

.wsblog-card {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.wsblog-card-image {
  display: block;
  aspect-ratio: 16/10;
  background: #f5f5f5;
}

.wsblog-card-image img,
.wsblog-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wsblog-card-body {
  padding: 1.1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wsblog-card h2,
.wsblog-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.wsblog-card p,
.wsblog-excerpt,
.wsblog-category-description {
  color: #5f6368;
  line-height: 1.65;
}

.wsblog-readmore,
.wsblog-all {
  display: inline-block;
  margin-top: 0.2rem;
  font-weight: 700;
}

.wsblog-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  background: #f2f4f7;
  color: #1f2937;
  text-decoration: none;
}

.wsblog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
}

.wsblog-cover {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/8;
  background: #f5f5f5;
}

.wsblog-content {
  line-height: 1.75;
}

@media (max-width: 991px) {
  .wsblog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .wsblog-grid {
    grid-template-columns: 1fr;
  }

  .wsblog-head {
    align-items: flex-start;
    flex-direction: column;
  }
}


.wsblog-category-cover {
  aspect-ratio: 12/4;
  margin-bottom: 0.5rem;
}

.about-page .about-hero,
.about-page .about-section,
.about-page .about-cta {
  margin-bottom: 32px;
}

.about-page .about-hero h1 {
  max-width: 900px;
}

.about-page .about-intro {
  max-width: 850px;
}

.about-page .pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.about-page .pillar-card {
  height: 100%;
}

.about-page .about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.about-page .stat-card {
  height: 100%;
}

.about-page .about-list {
  margin: 20px 0 0;
  padding-left: 20px;
}

.about-page .about-list li {
  margin-bottom: 12px;
}

.about-page .faq details {
  margin-bottom: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
}

.about-page .faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.about-page .faq summary::-webkit-details-marker {
  display: none;
}

.about-page .faq details p {
  margin-top: 12px;
}

.about-page .about-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.about-page .testimonial-block,
.about-page .about-cta {
  text-align: center;
}

@media (max-width: 991px) {
  .about-page .pillars,
  .about-page .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .about-page .pillars,
  .about-page .about-stats {
    grid-template-columns: 1fr;
  }

  .about-page .faq details {
    padding: 16px;
  }
}
