.aa-case-offer {
  --aco-text: rgba(185, 185, 185, 0.82);
  --aco-cta-bg: #aa3838;
  --aco-cta-hover: #c24545;
  --aco-cta-ink: #fff;
  --aco-cta-radius: 5px;
  --aco-cta-min-h: 46px;
  --aco-gap: 28px;
  --aco-max: 100%;
  box-sizing: border-box;
  width: 100%;
  max-width: var(--aco-max);
  min-width: 0;
  color: var(--aco-text);
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}

.aa-case-offer *,
.aa-case-offer *::before,
.aa-case-offer *::after {
  box-sizing: border-box;
}

.aa-case-offer__body {
  margin: 0 0 var(--aco-gap);
}

.aa-case-offer__body p {
  margin: 0 0 14px;
}

.aa-case-offer__body p:last-child {
  margin-bottom: 0;
}

.aa-case-offer__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  width: 100%;
  min-height: var(--aco-cta-min-h);
  padding: 15px 20px;
  background: var(--aco-cta-bg);
  color: var(--aco-cta-ink) !important;
  text-decoration: none !important;
  border-radius: var(--aco-cta-radius);
  font-family: Unbounded, Arial, sans-serif;
  transition: background 0.25s ease, color 0.25s ease;
}

.aa-case-offer__cta:hover,
.aa-case-offer__cta:focus-visible {
  background: var(--aco-cta-hover);
  color: var(--aco-cta-ink) !important;
}

.aa-case-offer__cta-main {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.aa-case-offer__cta-sub {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.9;
  line-height: 1.35;
}

@media (max-width: 767px) {
  .aa-case-offer__cta-sub {
    display: none;
  }

  .aa-case-offer__cta {
    min-height: 44px;
    align-items: center;
    text-align: center;
    gap: 0;
  }

  .aa-case-offer__cta-main {
    font-size: 12px;
    font-weight: 500;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aa-case-offer__cta {
    transition: none;
  }
}
