/* =========================================================
   Lower homepage sections — updates / why / reviews / brands /
   CTA / learning. Loaded after static-home.css so it wins.
   ========================================================= */

/* Shared section head rhythm for these blocks */
body.wbl-static-home-page .wbl-sh-updates .wbl-sh-section-head,
body.wbl-static-home-page .wbl-sh-why .wbl-sh-section-head,
body.wbl-static-home-page .wbl-sh-reviews .wbl-sh-section-head,
body.wbl-static-home-page .wbl-sh-blog .wbl-sh-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  text-align: left;
}

body.wbl-static-home-page .wbl-sh-updates .wbl-sh-section-head h2,
body.wbl-static-home-page .wbl-sh-why .wbl-sh-section-head h2,
body.wbl-static-home-page .wbl-sh-reviews .wbl-sh-section-head h2,
body.wbl-static-home-page .wbl-sh-blog .wbl-sh-section-head h2 {
  margin: 0;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.wbl-static-home-page .wbl-sh-updates .wbl-sh-section-head p,
body.wbl-static-home-page .wbl-sh-why .wbl-sh-section-head p,
body.wbl-static-home-page .wbl-sh-reviews .wbl-sh-section-head p,
body.wbl-static-home-page .wbl-sh-blog .wbl-sh-section-head p {
  display: block;
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

body.wbl-static-home-page .wbl-sh-updates .wbl-sh-section-head > a,
body.wbl-static-home-page .wbl-sh-why .wbl-sh-section-head > a,
body.wbl-static-home-page .wbl-sh-reviews .wbl-sh-section-head > a,
body.wbl-static-home-page .wbl-sh-blog .wbl-sh-section-head > a {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

/* ---------- Recently Updated ---------- */
body.wbl-static-home-page .wbl-sh-updates {
  background:
    radial-gradient(circle at 12% 12%, rgba(47, 128, 255, 0.06), transparent 32%),
    #f5f7fc;
  padding: 40px 0 44px;
}

body.wbl-static-home-page .wbl-sh-updates .wbl-sh-section-head h2 {
  color: #12183f;
}

body.wbl-static-home-page .wbl-sh-updates .wbl-sh-section-head p {
  color: #667089;
}

body.wbl-static-home-page .wbl-sh-updates .wbl-sh-section-head > a {
  color: #6f4cff;
}

body.wbl-static-home-page .wbl-sh-updates-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

body.wbl-static-home-page .wbl-sh-update-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
  padding: 18px;
  border: 1px solid #e6eaf5;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 24, 63, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

body.wbl-static-home-page .wbl-sh-update-card:hover {
  transform: translateY(-2px);
  border-color: rgba(111, 76, 255, 0.24);
  box-shadow: 0 14px 28px rgba(47, 70, 160, 0.09);
}

body.wbl-static-home-page .wbl-sh-update-time {
  color: #6f4cff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

body.wbl-static-home-page .wbl-sh-update-card-body {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

body.wbl-static-home-page .wbl-sh-update-card img,
body.wbl-static-home-page .wbl-sh-update-thumb {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 12px;
  object-fit: contain;
  background: #f8faff;
  border: 1px solid #e6eaf5;
}

body.wbl-static-home-page .wbl-sh-update-card h3 {
  margin: 0 0 6px;
  color: #12183f;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
}

body.wbl-static-home-page .wbl-sh-update-change {
  margin: 0;
  color: #44506b;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}

body.wbl-static-home-page .wbl-sh-update-platform {
  margin-top: auto;
  padding-top: 4px;
  color: #7a849c;
  font-size: 12px;
  font-weight: 600;
}

/* ---------- Why Weblytic ---------- */
body.wbl-static-home-page .wbl-sh-why {
  background:
    radial-gradient(circle at 14% 16%, rgba(47, 128, 255, 0.16), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(123, 63, 242, 0.2), transparent 34%),
    linear-gradient(145deg, #071225 0%, #0f1c42 100%);
  color: #fff;
  padding: 48px 0;
}

body.wbl-static-home-page .wbl-sh-why .wbl-sh-section-head h2 {
  color: #fff;
}

body.wbl-static-home-page .wbl-sh-why .wbl-sh-section-head p {
  color: #c5d0e8;
}

body.wbl-static-home-page .wbl-sh-why .wbl-sh-section-head > a {
  color: #c4b5fd;
}

body.wbl-static-home-page .wbl-sh-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body.wbl-static-home-page .wbl-sh-why-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(167, 139, 250, 0.18);
  border-radius: 16px;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

body.wbl-static-home-page .wbl-sh-why-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(167, 139, 250, 0.34);
  transform: translateY(-2px);
}

body.wbl-static-home-page .wbl-sh-why-icon {
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 12px;
  margin-bottom: 14px;
  background-color: rgba(123, 63, 242, 0.16);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px 22px;
  border: 1px solid rgba(167, 139, 250, 0.35);
  position: relative;
}

body.wbl-static-home-page .wbl-sh-why-icon::before {
  content: none;
}

body.wbl-static-home-page .wbl-sh-why-architecture .wbl-sh-why-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23C4B5FD' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M4 20V10l8-5 8 5v10'/%3E%3Cpath d='M9 20v-6h6v6'/%3E%3C/svg%3E");
}

body.wbl-static-home-page .wbl-sh-why-products .wbl-sh-why-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23C4B5FD' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M4 8l8-4 8 4-8 4-8-4z'/%3E%3Cpath d='M4 12l8 4 8-4M4 16l8 4 8-4'/%3E%3C/svg%3E");
}

body.wbl-static-home-page .wbl-sh-why-support .wbl-sh-why-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23C4B5FD' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='9' r='3.5'/%3E%3Cpath d='M5 20c1.2-4.5 12.8-4.5 14 0M4 11a8 8 0 0116 0'/%3E%3C/svg%3E");
}

body.wbl-static-home-page .wbl-sh-why-updates .wbl-sh-why-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23C4B5FD' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M4 12a8 8 0 0114.5-4.5M20 12a8 8 0 01-14.5 4.5'/%3E%3Cpath d='M18 3v5h-5M6 21v-5h5'/%3E%3C/svg%3E");
}

body.wbl-static-home-page .wbl-sh-why-ai .wbl-sh-why-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23C4B5FD' stroke-width='2' stroke-linecap='round'%3E%3Crect x='6' y='7' width='12' height='10' rx='3'/%3E%3Cpath d='M9 4v3M15 4v3M9 17v3M15 17v3M3 10h3M3 14h3M18 10h3M18 14h3'/%3E%3C/svg%3E");
}

body.wbl-static-home-page .wbl-sh-why-custom .wbl-sh-why-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23C4B5FD' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M8 8l-4 4 4 4M16 8l4 4-4 4M13 5l-2 14'/%3E%3C/svg%3E");
}

body.wbl-static-home-page .wbl-sh-why-card h3 {
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

body.wbl-static-home-page .wbl-sh-why-card p {
  color: #b7c3db;
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
}

/* ---------- Reviews ---------- */
body.wbl-static-home-page .wbl-sh-reviews {
  background:
    radial-gradient(circle at 12% 16%, rgba(47, 128, 255, 0.14), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(123, 63, 242, 0.16), transparent 32%),
    #071225;
  padding: 48px 0 40px;
}

body.wbl-static-home-page .wbl-sh-reviews .wbl-sh-section-head h2 {
  color: #fff;
}

body.wbl-static-home-page .wbl-sh-reviews .wbl-sh-section-head p {
  color: #c5d0e8;
}

body.wbl-static-home-page .wbl-sh-reviews .wbl-sh-section-head > a {
  color: #c4b5fd;
}

body.wbl-static-home-page .wbl-sh-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.wbl-static-home-page .wbl-sh-review {
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin: 0;
  padding: 22px 22px 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(167, 139, 250, 0.18);
  border-radius: 16px;
  box-shadow: none;
}

body.wbl-static-home-page .wbl-sh-review-stars {
  margin-bottom: 12px;
  letter-spacing: 2px;
}

body.wbl-static-home-page .wbl-sh-review > p {
  flex: 1;
  margin: 0 0 14px;
  color: #eef2ff;
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 500;
}

body.wbl-static-home-page .wbl-sh-review-context {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

body.wbl-static-home-page .wbl-sh-review-context span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #dbe7ff;
  font-size: 11.5px;
  font-weight: 700;
}

body.wbl-static-home-page .wbl-sh-review-result {
  margin: 0 0 16px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(123, 63, 242, 0.22);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

body.wbl-static-home-page .wbl-sh-review footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

body.wbl-static-home-page .wbl-sh-review footer strong {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

body.wbl-static-home-page .wbl-sh-review footer span span {
  color: #a8b4cc;
  font-size: 12px;
}

body.wbl-static-home-page .wbl-sh-reviews-dots {
  display: none;
}

/* ---------- Brands ---------- */
body.wbl-static-home-page .wbl-sh-brands {
  background: #fff;
  padding: 22px 0;
  border-top: 1px solid #eef1f8;
  border-bottom: 1px solid #eef1f8;
}

body.wbl-static-home-page .wbl-sh-brands-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

/* ---------- Pre-footer CTA ---------- */
body.wbl-static-home-page .wbl-sh-prefooter-cta {
  padding: 56px 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(47, 128, 255, 0.18), transparent 34%),
    radial-gradient(circle at 82% 40%, rgba(123, 63, 242, 0.22), transparent 36%),
    linear-gradient(135deg, #071225 0%, #14244d 100%);
}

body.wbl-static-home-page .wbl-sh-prefooter-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

body.wbl-static-home-page .wbl-sh-prefooter-cta h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.wbl-static-home-page .wbl-sh-prefooter-cta p {
  margin: 0;
  max-width: 560px;
  color: #c5d0e8;
  font-size: 15px;
  line-height: 1.55;
}

body.wbl-static-home-page .wbl-sh-prefooter-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

body.wbl-static-home-page .wbl-sh-prefooter-cta .wbl-sh-btn-primary {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
}

/* ---------- Learning Center + Newsletter ---------- */
body.wbl-static-home-page .wbl-sh-blog {
  background:
    radial-gradient(circle at 8% 12%, rgba(123, 63, 242, 0.05), transparent 32%),
    #f5f7fc;
  padding: 40px 0 48px;
  margin-bottom: 0;
}

body.wbl-static-home-page .wbl-sh-blog .wbl-sh-section-head h2 {
  color: #12183f;
}

body.wbl-static-home-page .wbl-sh-blog .wbl-sh-section-head p {
  color: #667089;
}

body.wbl-static-home-page .wbl-sh-blog .wbl-sh-section-head > a {
  color: #6f4cff;
}

body.wbl-static-home-page .wbl-sh-blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 24px;
  align-items: start;
}

body.wbl-static-home-page .wbl-sh-learning-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

body.wbl-static-home-page .wbl-sh-learning-tab {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #e2e7f3;
  background: #fff;
  color: #667085;
  font-size: 12.5px;
  font-weight: 700;
}

body.wbl-static-home-page .wbl-sh-learning-tab.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #2f80ff, #7b3ff2);
  color: #fff;
  box-shadow: 0 8px 20px rgba(47, 128, 255, 0.22);
}

body.wbl-static-home-page .wbl-sh-blog-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.wbl-static-home-page .wbl-sh-blog-card,
body.wbl-static-home-page .wbl-sh-blog-card.is-featured {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  padding: 0 0 14px;
  background: #fff;
  border: 1px solid #e6eaf5;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(17, 24, 63, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

body.wbl-static-home-page .wbl-sh-blog-card:hover,
body.wbl-static-home-page .wbl-sh-blog-card.is-featured:hover {
  transform: translateY(-2px);
  border-color: rgba(111, 76, 255, 0.24);
  box-shadow: 0 14px 28px rgba(47, 70, 160, 0.09);
}

body.wbl-static-home-page .wbl-sh-blog-thumb,
body.wbl-static-home-page .wbl-sh-blog-card.is-featured .wbl-sh-blog-thumb {
  height: 132px;
  margin: 0;
  background: #eef3ff;
}

body.wbl-static-home-page .wbl-sh-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.wbl-static-home-page .wbl-sh-blog-cat {
  display: inline-flex;
  align-self: flex-start;
  margin: 12px 14px 0;
  padding: 4px 9px;
  border-radius: 999px;
  background: #f1edff;
  color: #6f4cff;
  font-size: 11px;
  font-weight: 700;
}

body.wbl-static-home-page .wbl-sh-blog-card h4,
body.wbl-static-home-page .wbl-sh-blog-card.is-featured h4 {
  min-height: 0;
  margin: 10px 14px 8px;
  color: #12183f;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

body.wbl-static-home-page .wbl-sh-blog-meta {
  margin: auto 14px 0;
  color: #7a849c;
  font-size: 12.5px;
  font-weight: 600;
}

body.wbl-static-home-page .wbl-sh-newsletter {
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  background: #fff;
  border: 1px solid #e6eaf5;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(17, 24, 63, 0.05);
  position: sticky;
  top: 88px;
}

body.wbl-static-home-page .wbl-sh-newsletter h3 {
  margin: 0 0 8px;
  color: #12183f;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.wbl-static-home-page .wbl-sh-newsletter p {
  margin: 0 0 18px;
  color: #667089;
  font-size: 14px;
  line-height: 1.5;
}

body.wbl-static-home-page .wbl-sh-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.wbl-static-home-page .wbl-sh-newsletter-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid #e2e7f3;
  border-radius: 12px;
  background: #f8faff;
  color: #12183f;
  font-size: 14px;
  box-sizing: border-box;
}

body.wbl-static-home-page .wbl-sh-newsletter-form .wbl-sh-btn-primary {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
}

body.wbl-static-home-page .wbl-sh-newsletter small {
  margin-top: 12px;
  color: #8a93a8;
  font-size: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  body.wbl-static-home-page .wbl-sh-updates-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.wbl-static-home-page .wbl-sh-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.wbl-static-home-page .wbl-sh-blog-grid {
    grid-template-columns: 1fr !important;
  }

  body.wbl-static-home-page .wbl-sh-newsletter {
    position: static;
  }
}

@media (max-width: 991px) {
  body.wbl-static-home-page .wbl-sh-updates,
  body.wbl-static-home-page .wbl-sh-why,
  body.wbl-static-home-page .wbl-sh-reviews,
  body.wbl-static-home-page .wbl-sh-blog,
  body.wbl-static-home-page .wbl-sh-prefooter-cta {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  body.wbl-static-home-page .wbl-sh-updates .wbl-sh-section-head,
  body.wbl-static-home-page .wbl-sh-why .wbl-sh-section-head,
  body.wbl-static-home-page .wbl-sh-reviews .wbl-sh-section-head,
  body.wbl-static-home-page .wbl-sh-blog .wbl-sh-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  body.wbl-static-home-page .wbl-sh-reviews-grid {
    grid-template-columns: 1fr !important;
  }

  body.wbl-static-home-page .wbl-sh-prefooter-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  /* Full-width text sections so paragraphs read completely */
  body.wbl-static-home-page .wbl-sh-updates-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  body.wbl-static-home-page .wbl-sh-blog-cards {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  body.wbl-static-home-page .wbl-sh-why-grid,
  body.wbl-static-home-page .wbl-sh-reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  body.wbl-static-home-page .wbl-sh-learning-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 0 16px !important;
    padding: 0 0 10px !important;
    border-bottom: 0 !important;
  }

  body.wbl-static-home-page .wbl-sh-learning-tabs::-webkit-scrollbar {
    display: none;
  }

  body.wbl-static-home-page .wbl-sh-learning-tab {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
  }

  body.wbl-static-home-page .wbl-sh-prefooter-cta-actions {
    width: 100%;
  }

  body.wbl-static-home-page .wbl-sh-prefooter-cta-actions .wbl-sh-btn-primary,
  body.wbl-static-home-page .wbl-sh-prefooter-cta-actions .wbl-sh-btn-secondary {
    width: 100%;
  }

  body.wbl-static-home-page .wbl-sh-why-card,
  body.wbl-static-home-page .wbl-sh-update-card,
  body.wbl-static-home-page .wbl-sh-review {
    padding: 14px !important;
    min-height: 0 !important;
  }

  body.wbl-static-home-page .wbl-sh-why-card h3,
  body.wbl-static-home-page .wbl-sh-update-card h3 {
    font-size: 15px !important;
  }

  body.wbl-static-home-page .wbl-sh-why-card p,
  body.wbl-static-home-page .wbl-sh-update-card p,
  body.wbl-static-home-page .wbl-sh-review > p,
  body.wbl-static-home-page .wbl-sh-review p {
    display: block !important;
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    overflow: visible !important;
    max-height: none !important;
    font-size: 13.5px !important;
    line-height: 1.55 !important;
  }

  /* Learning Center: single-column readable cards */
  body.wbl-static-home-page .wbl-sh-blog-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.wbl-static-home-page .wbl-sh-blog-main,
  body.wbl-static-home-page .wbl-sh-blog-cards,
  body.wbl-static-home-page .wbl-sh-newsletter {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.wbl-static-home-page .wbl-sh-blog .wbl-sh-section-head {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    margin-bottom: 14px !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  body.wbl-static-home-page .wbl-sh-blog .wbl-sh-section-head > div,
  body.wbl-static-home-page .wbl-sh-blog .wbl-sh-section-head p {
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
    overflow: visible !important;
  }

  body.wbl-static-home-page .wbl-sh-learning-tabs {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  body.wbl-static-home-page .wbl-sh-blog-cards {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  body.wbl-static-home-page .wbl-sh-blog-card,
  body.wbl-static-home-page .wbl-sh-blog-card.is-featured {
    display: grid !important;
    grid-template-columns: 104px minmax(0, 1fr) !important;
    grid-template-rows: auto auto auto !important;
    grid-template-areas:
      "thumb cat"
      "thumb title"
      "thumb meta" !important;
    column-gap: 12px !important;
    row-gap: 4px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding: 10px !important;
    overflow: hidden !important;
    min-height: 0 !important;
  }

  body.wbl-static-home-page .wbl-sh-blog-thumb,
  body.wbl-static-home-page .wbl-sh-blog-card.is-featured .wbl-sh-blog-thumb {
    grid-area: thumb !important;
    width: 104px !important;
    height: 104px !important;
    margin: 0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
  }

  body.wbl-static-home-page .wbl-sh-blog-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  body.wbl-static-home-page .wbl-sh-blog-cat {
    grid-area: cat !important;
    margin: 0 !important;
    align-self: start !important;
  }

  body.wbl-static-home-page .wbl-sh-blog-card h4,
  body.wbl-static-home-page .wbl-sh-blog-card.is-featured h4 {
    grid-area: title !important;
    margin: 0 !important;
    font-size: 14.5px !important;
    line-height: 1.35 !important;
    display: block !important;
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    overflow: visible !important;
    max-height: none !important;
    min-height: 0 !important;
    min-width: 0 !important;
    overflow-wrap: break-word !important;
  }

  body.wbl-static-home-page .wbl-sh-blog-meta {
    grid-area: meta !important;
    margin: 0 !important;
    font-size: 12px !important;
    min-width: 0 !important;
  }

  body.wbl-static-home-page .wbl-sh-newsletter {
    margin-top: 4px !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 575px) {
  body.wbl-static-home-page .wbl-sh-updates,
  body.wbl-static-home-page .wbl-sh-why,
  body.wbl-static-home-page .wbl-sh-reviews,
  body.wbl-static-home-page .wbl-sh-blog,
  body.wbl-static-home-page .wbl-sh-prefooter-cta {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  body.wbl-static-home-page .wbl-sh-advisor {
    padding: 16px !important;
  }

  body.wbl-static-home-page .wbl-sh-advisor-visual img {
    max-height: 140px !important;
    width: auto !important;
    margin: 0 auto !important;
  }

  body.wbl-static-home-page .wbl-sh-col {
    padding: 14px !important;
  }

  body.wbl-static-home-page .wbl-sh-service-card {
    padding: 14px !important;
  }

  body.wbl-static-home-page .wbl-sh-service-card h4 {
    font-size: 14px !important;
  }

  body.wbl-static-home-page .wbl-sh-service-card p {
    font-size: 12px !important;
  }

  body.wbl-static-home-page .wbl-sh-industry {
    padding: 10px 12px !important;
    min-height: 0 !important;
  }
}

@media (max-width: 480px) {
  body.wbl-static-home-page .wbl-sh-update-card-body {
    flex-direction: column;
  }
}
