/* KNOWLEDGE CTA */

.ramiro-knowledge-cta {
  padding: 0 0 var(--section-break-desktop);
  background: var(--ramiro-white);
}

.ramiro-knowledge-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
  padding: 36px;
  border-radius: 30px;
  border: 1px solid rgba(45, 38, 35, 0.12);
  background: transparent;
  color: var(--ramiro-text);
}

.ramiro-knowledge-cta__content {
  min-width: 0;
}

.ramiro-knowledge-cta__title {
  margin: 0 0 14px;
  max-width: 860px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--ramiro-text);
}

.ramiro-knowledge-cta__title strong {
  color: var(--ramiro-red);
  font-weight: 700;
}

.ramiro-knowledge-cta__text {
  max-width: 880px;
  font-size: 17px;
  line-height: 1.68;
  color: var(--ramiro-text);
}

.ramiro-knowledge-cta__text p {
  margin: 0 0 14px;
}

.ramiro-knowledge-cta__text p:last-child {
  margin-bottom: 0;
}

.ramiro-knowledge-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.ramiro-knowledge-cta__actions .ramiro-btn {
  min-width: 214px;
  justify-content: center;
}

@media (max-width: 991px) {
  .ramiro-knowledge-cta {
    padding: 0 0 var(--section-break-tablet);
  }

  .ramiro-knowledge-cta__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }

  .ramiro-knowledge-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .ramiro-knowledge-cta {
    padding: 0 0 var(--section-break-mobile);
  }
  .ramiro-knowledge-cta__inner {
    padding: 22px;
    border-radius: 24px;
  }

  .ramiro-knowledge-cta__title {
    font-size: clamp(26px, 8vw, 34px);
  }

  .ramiro-knowledge-cta__actions,
  .ramiro-knowledge-cta__actions .ramiro-btn {
    width: 100%;
  }

  .ramiro-knowledge-cta__actions .ramiro-btn {
    min-width: 0;
  }
}
