/* Блок «О бренде» — философия ALL BLING */

.about-brand {
  padding: 0 20px 190px;
  background: #fff;
}

.about-brand__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "copy copy"
    "features visual"
    "cta cta";
  gap: 20px;
  max-width: 1880px;
  margin: 0 auto;
  padding: 40px 0 0;
}

.about-brand__copy {
  grid-area: copy;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.625rem, 6.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.12;
}

.about-brand__copy-dark {
  color: #212529;
}

.about-brand__copy-muted {
  color: #6c757d;
}

.about-brand__features {
  grid-area: features;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: start;
}

.about-brand__feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  max-width: 220px;
}

.about-brand__feature-icon {
  display: block;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.about-brand__feature-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  color: #212529;
}

.about-brand__visual {
  grid-area: visual;
  align-self: start;
  justify-self: end;
  line-height: 0;
}

.about-brand__img {
  display: block;
  width: auto;
  max-width: min(42vw, 200px);
  height: 190px;
  object-fit: contain;
  object-position: right top;
}

.about-brand__img--placeholder {
  width: auto;
  max-width: 140px;
  padding: 8px;
  object-fit: contain;
}

.about-brand__cta-wrap {
  grid-area: cta;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 4px;
}

.about-brand__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  background: #141575;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.about-brand__cta:hover,
.about-brand__cta:focus-visible {
  opacity: 0.92;
  color: #fff;
}

/* Планшет 768px+: иконка слева, текст справа */
@media (min-width: 768px) and (max-width: 1023.98px) {
  .about-brand__inner {
    padding-top: 48px;
  }

  .about-brand__copy {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
  }

  .about-brand__feature {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    max-width: none;
  }

  .about-brand__img {
    max-width: min(38vw, 240px);
  }

  .about-brand__cta {
    min-height: 64px;
    font-size: 13px;
  }
}

/* ПК от 1024px */
@media (min-width: 1024px) {
  .about-brand__inner {
    grid-template-columns: minmax(0, 1fr) 550px;
    grid-template-areas:
      "copy visual"
      "features visual"
      "cta cta";
    column-gap: clamp(32px, 4vw, 80px);
    row-gap: clamp(28px, 3vw, 48px);
    padding-top: clamp(48px, 5vw, 80px);
    padding-bottom: 0;
  }

  .about-brand__copy {
    font-size: clamp(2.5rem, 3.33vw, 64px);
    line-height: 1.08;
  }

  .about-brand__features {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: clamp(32px, 4vw, 64px);
  }

  .about-brand__feature {
    flex-direction: column;
    gap: 12px;
    max-width: 200px;
  }

  .about-brand__visual {
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: end;
  }

  .about-brand__img {
    width: 550px;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
  }

  .about-brand__cta-wrap {
    margin-top: clamp(8px, 1.5vw, 24px);
    
  }

  .about-brand__cta {
    min-height: 70px;
    font-size: 13px;
  }
}
