.ci-product-features-section {

  .ci-product-features__intro {
    margin-bottom: 6rem;
    @media screen and (max-width: 1024px) {
      margin-bottom: 4rem;
    }
  }

  .ci-product-features__grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    @media screen and (max-width: 1024px) {
      gap: 4rem;
    }
  }

  .ci-feature-card {
    @media screen and (max-width: 769px) {
      flex-direction: column;
    }
  }

  .ci-feature-card__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    img,
    .placeholder-svg {
      display: block;
      width: 8rem;
      min-width: 8rem;
      height: auto;
      object-fit: cover;
    }
    @media screen and (max-width: 1024px) {
      img,
      .placeholder-svg {
        width: 6rem;
        min-width: 6rem;
      }
    }
    @media screen and (max-width: 769px) {
      justify-content: flex-start;
    }
  }

  .ci-feature-card__title {
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 1rem;
  }

  .ci-feature-card__description {
    margin-bottom: 2.5rem;
  }

  .ci-feature-card__link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 500;
    text-decoration: none;
    color: currentColor;
    transition: opacity 0.2s ease;

    &:hover,
    &:focus-visible {
      opacity: 0.8;
    }
  }

  .ci-feature-card__external-icon {
    width: 1.8rem;
    height: 1.8rem;
    flex-shrink: 0;
  }
}
