.asp-content-bottom {
  background: var(--white);
  padding: var(--spacing-24);
  width: 100%;
}

.asp-content-bottom__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}


.asp-content-bottom__eyebrow {
  font-family: var(--font-family-base);
  font-size: 24px;  
  font-weight: 500;
  line-height: 48px;
  color: var(--gray-700);  
  margin: 0;
  padding: 10px var(--spacing-20);
}


.asp-content-bottom__heading {
  font-family: var(--font-family-base);
  font-size: 42px; 
  font-weight: 500;
  line-height: 56px;
  color: var(--gray-700); 
  margin: 0;
  padding: var(--spacing-12) var(--spacing-20);
}


.asp-content-bottom__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-16);
  padding: var(--spacing-12) var(--spacing-20);
  width: 100%;
}


.asp-content-bottom__description {
  font-family: var(--font-family-base);
  font-size: 24px;  
  font-weight: 500;
  line-height: 36px;
  color: var(--gray-700);
  margin: 0;
  max-width: 830px;
  flex: 1;
}


.asp-content-bottom__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-6);
  padding: 0 var(--spacing-16) 0 var(--spacing-20);
  height: 48px;
  min-width: 217px;
  flex-shrink: 0;
  background: var(--color-brand-dark);   
  border-radius: var(--border-radius-8);  
  border: none;
  font-family: var(--font-family-base);
  font-size: var(--text-desktop-body-md-500-size); 
  font-weight: 500;
  line-height: 24px;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.asp-content-bottom__btn:hover {
  background: var(--color-brand-primary-hover);
}
.asp-content-bottom__btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .asp-content-bottom__heading  { font-size: 32px; line-height: 40px; }
  .asp-content-bottom__eyebrow  { font-size: 18px; line-height: 32px; }
  .asp-content-bottom__description { font-size: 18px; line-height: 28px; }
}
@media (max-width: 767px) {
  .asp-content-bottom__row {flex-direction: column; align-items: flex-start;}
  .asp-content-bottom__btn { width: 100%; justify-content: center; }
  .asp-content-bottom__heading { font-size: 24px; line-height: 32px; padding: 8px 16px; }
  .asp-content-bottom__eyebrow { font-size: 16px; padding: 8px 16px; }
  .asp-content-bottom__description { font-size: 16px; line-height: 24px; }
  .asp-content-bottom__row { padding: 8px 16px; }
}
