.about-text {
  font-family: var(--t-text-font);
  font-size: 1rem;
  line-height: 1.65;
  color: #8B6914;
  font-weight: 600;
}

/* Стили для карточки */
.hp-about__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-left: 3px solid #D4AF37;
  transition: box-shadow 0.3s ease, border-left-color 0.3s ease;
}

.hp-about__card:hover {
  box-shadow: 0 8px 30px rgba(183, 134, 11, 0.1);
  border-left-color: rgba(212, 175, 55, 0.4);
}

.hp-about__card-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #D4AF37;
  line-height: 1;
}

.hp-about__card-text {
  font-family: var(--t-text-font);
  font-size: 1rem;
  line-height: 1.65;
  color: #8B6914;
  margin: 0;
  font-weight: 600;
}

.hp-scroll-fade {
    position: relative;
    z-index: 1;
    background: linear-gradient(
        180deg,
        #1a1a1a 0%,
        #3d3425 30%,
        #f6f4ef 70%,
        #faf7f0 100%
    );
    min-height: 100vh;
}
