.support-hero {
  min-height: clamp(520px, calc(100vh - 180px), 720px);
}

.support-hero .content-grid {
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.support-hero .hero-title {
  line-height: 1.1;
}

.support-hero .pill-list {
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.support-hero .hero-visual-wrapper {
  width: clamp(240px, 28vw, 360px);
  height: clamp(240px, 28vw, 360px);
}

@media (max-width: 767px) {
  .support-hero {
    min-height: auto;
  }

  .support-hero .hero-visual-wrapper {
    width: clamp(220px, 60vw, 280px);
    height: clamp(220px, 60vw, 280px);
  }
}

.blog-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.blog-card:hover {
  transform: translate3d(0, -6px, 0);
  box-shadow: 0 30px 60px -35px rgba(15, 23, 42, 0.35);
}

.blog-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover img {
  transform: translate3d(0, -2px, 0);
}

.media-cover {
  padding-top: 52%;
  min-height: 180px;
  position: relative;
}

.card-body {
  display: flex;
  flex-direction: column;
}

.card-body > p {
  margin-bottom: 0;
}

.feature-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #475569;
}

.feature-list li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.35rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .blog-card {
    min-height: auto !important;
    border-radius: 24px;
  }

  .blog-card .media-cover {
    padding-top: 40%;
    min-height: 130px;
  }

  .blog-card .card-body {
    padding: 1.15rem;
  }

  .feature-list {
    margin-top: 0.9rem;
    gap: 0.4rem;
  }

  .feature-list li {
    font-size: 0.86rem;
  }
}

.hero-visual {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 9999px;
  background-image: url('../assets/Lucid_Origin_I_want_an_image_of_a_team_of_software_engineers_w_0 (1).jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 45px 120px -60px rgba(15, 23, 42, 0.55);
  isolation: isolate;
}


