/* Features/Family Memories Section Specific Styles */

.features {
  position: relative;
}

.features-content {
  max-width: 100%;
}

/* CTA link with border and animation */
.features-cta a {
  border: 2px solid #000000;
  border-radius: 30px;
  padding: 15px 30px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.features-cta a:hover {
  background-color: rgba(0, 0, 0, 0.05);
  transform: translateX(5px);
  border-color: var(--brand-accent);
}

/* Arrow animation on hover */
.features-cta a span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.features-cta a:hover span {
  transform: translateX(5px);
}

.features-frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: var(--color-frame-bg);
}

.features-frame .img-placeholder,
.features-frame img {
  display: block;
}

.features-slogan {
  text-align: left;
  width: 100%;
}

.features-slogan p {
  white-space: nowrap;
}

/* Bullet Points List */
.features-bullets {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.features-bullets li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.features-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #E2C08D;
  font-weight: bold;
}

/* Multiple Overlapping Images Layout */
.features-images {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.features-image {
  position: absolute;
}

.features-image:first-child {
  right: 0;
  top: 0;
  z-index: 1;
}

.features-image:nth-child(2) {
  right: min(322px, 50%);
  top: 200px;
  z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  /* Image first, text second on mobile */
  .features .row {
    flex-direction: column-reverse;
  }

  .features-frame {
    margin: 0 auto 30px;
    max-width: 100%;
    padding: 20px;
  }

  .features-frame .img-placeholder,
  .features-frame img {
    width: 100%;
    height: auto;
    aspect-ratio: 428 / 440;
  }

  .features-slogan {
    text-align: center;
  }

  /* Overlapping images responsive */
  .features-images {
    min-height: 350px;
    margin-bottom: 30px;
  }

  .features-image:first-child {
    right: 50%;
    transform: translateX(50%);
    width: 70%;
  }

  .features-image:nth-child(2) {
    right: 60%;
    transform: translateX(70%);
    top: 150px;
    width: 40%;
  }

  .features-image .img-placeholder,
  .features-image img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .features-frame {
    padding: 15px;
  }

  .features-images {
    min-height: 280px;
  }

  .features-image:nth-child(2) {
    top: 100px;
  }

  /* ctaAfterTitle: кнопка под заголовком на мобильных */
  .features .row.align-items-center > .col-md-4.text-end {
    text-align: center !important;
    margin-top: 15px;
  }

  .features .row.align-items-center > .col-md-8 .text-h2 {
    text-align: center;
  }

  /* Кнопка на всю ширину на мобильных */
  .features .btn-primary-custom {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .features-frame {
    padding: 10px;
  }

  .features-images {
    min-height: 220px;
  }

  .features-image:nth-child(2) {
    top: 80px;
  }
}
