/* =========================================================
   Rental Benefits
   Figma RentalSection.tsx 혜택 영역 변환
========================================================= */

.rental-benefits {
  width: 100%;
  margin-bottom: 40px;
}

.rental-benefits > h3 {
  margin: 0 0 24px;

  color: #1a1a1a;

  text-align: center;

  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: -0.025em;

  word-break: keep-all;
}

.rental-benefits__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.rental-benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;

  min-width: 0;
  padding: 24px;

  border: 1px solid rgba(2, 61, 165, 0.2);
  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      rgba(2, 61, 165, 0.05) 0%,
      rgba(2, 61, 165, 0.1) 100%
    );
}

.rental-benefit-card__icon {
  flex: 0 0 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  border-radius: 50%;

  background: #023da5;
  color: #ffffff;

  box-shadow:
    0 4px 6px -1px rgba(2, 61, 165, 0.25),
    0 2px 4px -2px rgba(2, 61, 165, 0.15);
}

.rental-benefit-card__icon svg {
  width: 20px;
  height: 20px;
}

.rental-benefit-card__content {
  flex: 1 1 auto;
  min-width: 0;
}

.rental-benefit-card__content h4 {
  margin: 0;

  color: #1a1a1a;

  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;

  word-break: keep-all;
}

.rental-benefit-card__content p {
  margin: 4px 0 0;

  color: #666666;

  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;

  word-break: keep-all;
}

@media (min-width: 768px) {
  .rental-benefits > h3 {
    font-size: 24px;
  }

  .rental-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rental-benefit-card {
    padding: 32px;
  }
}