.buying-guide-highlights {
  padding: 2rem 0 0;
  background: transparent;
  margin: auto;
  width: 90%;
}

.buying-guide-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.buying-guide-highlight-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 124px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(18px);
  animation: buying-guide-highlight-enter 0.7s ease forwards;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.buying-guide-highlight-card:nth-child(2) {
  animation-delay: 0.08s;
}

.buying-guide-highlight-card:nth-child(3) {
  animation-delay: 0.16s;
}

.buying-guide-highlight-card:nth-child(4) {
  animation-delay: 0.24s;
}

.buying-guide-highlight-card:hover {
  transform: translateY(-3px);
  border-color: rgba(248, 191, 106, 0.38);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.buying-guide-highlight-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(248, 191, 106, 0.14);
  border: 1px solid rgba(248, 191, 106, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f8bf6a;
  font-size: 18px;
  flex-shrink: 0;
}

.buying-guide-highlight-card__content {
  min-width: 0;
}

.buying-guide-highlight-card__title {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-align: start;
}

.buying-guide-highlight-card__description {
  margin: 0 !important;
  color: #fff !important;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  text-align: start !important;
}

@keyframes buying-guide-highlight-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 640px) {
  .buying-guide-highlights__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .buying-guide-highlight-card {
    padding: 14px;
    min-height: 0;
  }

  .buying-guide-highlight-card__title {
    font-size: 14px;
    margin-bottom: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .buying-guide-highlight-card {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .buying-guide-highlight-card:hover {
    transform: none;
  }
}
