.socta {
  position: relative;
  border: none;
}

.socta__inner {
  display: grid;
  align-items: start;
}

/* Left column */
.socta__left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.socta__eyebrow {
  font-family: var(--font-family-heading);
  font-weight: 700;
  letter-spacing: .06em;
  font-size: .85rem;
  color: var(--golden);
  text-transform: uppercase;
}

.socta__headline {
  font-family: var(--font-family-base);
  font-size: 2.5rem;
  margin: 0;
  line-height: 1.1;
}

.socta__lead {
  font-family: var(--font-family-base);
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.4;
}

.socta__body * {
  font-family: var(--font-family-base);
  font-weight: 300;
  color: #131412;
  font-size: 1.25rem;
  line-height: 1.6;
}

.socta__metrics {
  font-family: var(--font-family-base);
  font-weight: 300;
  font-size: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  font-weight: 700;
}

.socta__metrics-sep {
  var(--font-family-heading);
  font-size: 0.75rem;
  font-weight: 300;
  opacity: .6;
  margin: 0 .25rem;
}

.socta__cta {
  font-family: var(--font-family-heading);
  text-transform: uppercase;
  margin-top: 1.25rem;
}

/* CTA Button */
.socta__btn,
.socta__btn:hover {
  /* font-family: var(--font-family-heading);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.92px;
  text-transform: uppercase;
  display: inline-block;
  padding: 16px 32px;
  text-decoration: none;
  color: #fff !important;
  border: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 1.4; */
}

.socta__btn:hover {
  /* transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
}

/* Right column slider */
.socta__slider {
  overflow: hidden;
}

.socta__slides {
  list-style: none;
  margin: 0;
  padding: 0;
}

.socta__slide {
  overflow: hidden;
  border-radius: 12px!important;
}

.socta__imgwrap {
  width: 100%;
  height: 100%;
}

.socta__imgwrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Aspect ratios */
.socta__imgwrap[data-aspect="16x9"] {
  aspect-ratio: 16 / 9;
}

.socta__imgwrap[data-aspect="4x3"] {
  aspect-ratio: 4 / 3;
}

.socta__imgwrap[data-aspect="1x1"] {
  aspect-ratio: 1 / 1;
}

.socta__imgwrap[data-aspect="auto"] {
  min-height: 300px;
}

/* Responsive */
@media (max-width: 1200px) {
  .socta__inner {
    grid-template-columns: 1fr !important;
    row-gap: 32px;
    column-gap: 0;
  }
  
  .socta__headline {
    font-size: 2rem;
  }
  
  .socta__lead {
    font-size: 1.5rem;
  }
  
  .socta__body * {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .socta {
    padding: 32px 20px;
    border-radius: 8px;
  }
  
  .socta__inner {
    row-gap: 24px;
  }
  
  .socta__left {
    gap: 12px;
  }
  
  .socta__headline {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .socta__lead {
    font-size: 1.25rem;
    line-height: 1.4;
  }
  
  .socta__body * {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .socta__metrics {
    font-size: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .socta__metrics-sep {
    display: none;
  }
  
  .socta__metric {
    display: block;
    width: 100%;
  }
  
  .socta__cta {
    margin-top: 1rem;
    text-align: center !important;
  }
  
  .socta__btn {
    width: 100%;
    max-width: 300px;
    padding: 14px 28px;
    font-size: 14px;
    letter-spacing: 1.4px;
  }
  
  .socta__slide {
    border-radius: 8px !important;
  }
  
  .socta__imgwrap[data-aspect="auto"] {
    min-height: 250px;
  }
}

@media (max-width: 480px) {
  .socta {
    padding: 24px 16px;
  }
  
  .socta__inner {
    row-gap: 20px;
  }
  
  .socta__headline {
    font-size: 1.5rem;
  }
  
  .socta__lead {
    font-size: 1.125rem;
  }
  
  .socta__body * {
    font-size: 0.95rem;
  }
  
  .socta__eyebrow {
    font-size: 0.75rem;
  }
  
  .socta__metrics {
    font-size: 0.9rem;
  }
  
  .socta__btn {
    padding: 12px 24px;
    font-size: 13px;
    letter-spacing: 1.2px;
  }
  
  .socta__imgwrap[data-aspect="auto"] {
    min-height: 200px;
  }
}