.vertex-home-blogs,
.vertex-home-blogs * {
  box-sizing: border-box;
}

.vertex-home-blogs {
  padding: 24px 30px 88px;
  background: linear-gradient(110deg, #ffffff 0%, #ffffff 54%, #f1fbff 100%);
  font-family: Manrope, "DM Sans", Arial, sans-serif;
}

.vertex-home-blogs__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.vertex-home-blogs__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 48px;
}

.vertex-home-blogs__kicker {
  margin-bottom: 12px;
  color: #12141b;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.vertex-home-blogs__title {
  max-width: 760px;
  margin: 0;
  color: #05060a;
  font-size: clamp(38px, 4.7vw, 58px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.vertex-home-blogs__read {
  min-width: 142px;
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(90deg, #7ba7ff, #765cff);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none !important;
  box-shadow: 0 16px 34px rgba(111, 104, 255, .2);
}

.vertex-home-blogs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.vertex-home-blog-card {
  min-height: 472px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid #d8e1ec;
  border-radius: 12px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 22px 58px rgba(65, 80, 115, .08);
}

.vertex-home-blog-card__media {
  position: relative;
  height: 222px;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(circle at 25% 20%, rgba(109, 216, 255, .42), transparent 32%),
    linear-gradient(135deg, #d8f6ff, #88d6ec);
}

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

.vertex-home-blog-card__media--chat img {
  padding: 8px;
  object-fit: contain;
  transform: scale(1.24);
  filter: drop-shadow(0 16px 28px rgba(0, 159, 197, .28));
}

.vertex-home-blog-card__media--growth {
  background:
    radial-gradient(circle at 50% 32%, rgba(74, 217, 255, .34), transparent 30%),
    linear-gradient(135deg, #151c26, #335f77 58%, #11212b);
}

.vertex-home-blog-card__media--growth img {
  object-fit: cover;
  object-position: 18% 45%;
  opacity: .98;
}

.vertex-home-blog-card__media--automation {
  background:
    radial-gradient(circle at 70% 24%, rgba(119, 105, 255, .44), transparent 34%),
    linear-gradient(135deg, #05070e, #152231 62%, #071018);
}

.vertex-home-blog-card__media--automation img {
  padding: 0;
  object-fit: cover;
  object-position: 64% 52%;
  opacity: .96;
  filter: drop-shadow(0 18px 32px rgba(111, 91, 255, .36)) invert(0);
}

.vertex-home-blog-card__media:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .22;
  pointer-events: none;
}

.vertex-home-blog-card__date {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 48px;
  min-height: 66px;
  display: grid;
  place-items: center;
  border-radius: 0 0 10px 10px;
  color: #fff;
  background: #10141d;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.vertex-home-blog-card__date strong {
  display: block;
  font-size: 22px;
}

.vertex-home-blog-card__date span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
}

.vertex-home-blog-card__meta {
  margin: 24px 0 10px;
  color: #191b22;
  font-size: 11px;
  font-weight: 800;
}

.vertex-home-blog-card__meta span + span:before {
  content: " - ";
  padding: 0 5px;
  color: #7d8390;
}

.vertex-home-blog-card h3 {
  margin: 0 0 15px;
  color: #0e1017;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0;
}

.vertex-home-blog-card p {
  margin: 0 0 28px;
  color: #636a78;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.75;
}

.vertex-home-blog-card__button {
  min-height: 43px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #5aa8ff;
  border-radius: 7px;
  color: #11141d !important;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none !important;
  transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.vertex-home-blog-card__button:hover {
  color: #fff !important;
  background: linear-gradient(90deg, #78a9ff, #765cff);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(111, 104, 255, .18);
}

@media (max-width: 1024px) {
  .vertex-home-blogs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .vertex-home-blogs {
    padding: 58px 18px 68px;
  }

  .vertex-home-blogs__head {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }

  .vertex-home-blogs__read {
    width: fit-content;
  }

  .vertex-home-blogs__grid {
    grid-template-columns: 1fr;
  }

  .vertex-home-blog-card {
    min-height: 0;
    padding: 20px;
  }

  .vertex-home-blog-card__media {
    height: 190px;
  }
}
