.wgt-home-bento {
  position: relative;
  padding-top: 48px;
  padding-bottom: 66px;
}

.wgt-home-bento .home-inner {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.wgt-home-bento .home-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--home-surface-border);
  border-radius: 12px;
  background: var(--home-surface-border);
}

.wgt-home-bento .home-bento-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--home-surface);
}

.wgt-home-bento .home-bento-icon {
  display: block;
  width: 32px;
  height: 32px;
  margin-bottom: 28px;
  object-fit: contain;
}

.wgt-home-bento .home-bento-card h3 {
  margin: 0;
  color: var(--home-title);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.wgt-home-bento .home-bento-description,
.wgt-home-bento .home-bento-description p {
  margin: 0;
  color: var(--home-subtitle);
  font-size: 16px;
  line-height: 1.5;
}

/* ===== Gradient promo cell ===== */

.wgt-home-bento .home-bento-promo {
  position: relative;
  grid-column: span 2;
  justify-content: center;
  gap: 24px;
  overflow: hidden;
  background: linear-gradient(115deg, #f7f5ff 0%, #ece5ff 45%, #d9caff 100%);
}

.wgt-home-bento .home-bento-promo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  pointer-events: none;
}

.wgt-home-bento .home-bento-promo-title,
.wgt-home-bento .home-bento-promo-title :is(h1, h2, h3, h4, h5, h6, p) {
  position: relative;
  z-index: 1;
  max-width: 260px;
  margin: 0;
  color: var(--home-title);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
}

.wgt-home-bento .home-bento-promo .home-btn {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  min-width: 0;
  padding: 12px 28px;
}

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

@media (max-width: 768px) {
  .wgt-home-bento .home-bento-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .wgt-home-bento .home-bento-promo {
    grid-column: span 1;
  }

  .wgt-home-bento .home-bento-card {
    padding: 20px;
  }

  .wgt-home-bento .home-bento-icon {
    margin-bottom: 12px;
  }

  .wgt-home-bento .home-bento-promo .home-btn {
    align-self: stretch;
    width: 100%;
  }

  .wgt-home-bento .home-bento-icon {
    width: 28px;
    height: 28px;
  }
}
