/* ========== SMORT CALLOUT SECTION BLOCK ========== */

.smort-callout-section {
  position: relative;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding-top: 3%;
}

.smort-callout-section-media-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 85%;
  z-index: 1;
}

.smort-callout-section-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.smort-callout-section-image,
.smort-callout-section-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.smort-callout-section-callout {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--space-16);
  border-radius: var(--border-radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-8);

  .button {
    min-width: fit-content;
    align-self: flex-end;
  }
}
.smort-callout-section-callout-text {
  display: flex;
  flex-direction: row;
  gap: var(--space-8);
  & > *:first-child {
    flex: 1;
  }
  & > *:last-child {
    flex: 0.6;
  }
}

.smort-callout-section-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-4);
  line-height: 1.2;
  text-wrap: balance;
}

.smort-callout-section-content {
  font-size: var(--text-base);
  margin-bottom: var(--space-md);
  line-height: 1.6;
  min-width: fit-content;
  ul {
    list-style: unset;
    padding-left: var(--space-4);
  }

  li {
    padding-left: var(--space-2);
    &::marker {
      content: "✓";
      font-size: 20px;
      color: var(--secondary-color);
    }
  }
  &[data-marker-color="white"] li::marker {
    color: var(--white);
  }
  &[data-marker-color="black"] li::marker {
    color: var(--black);
  }
}

.smort-callout-section-text p {
  margin-bottom: var(--space-sm);
}

.smort-callout-section-text p:last-child {
  margin-bottom: 0;
}

/* ========== RESPONSIVE ========== */

@media (width <= 1024px) {
  .smort-callout-section {
    min-height: 600px;
  }

  .smort-callout-section-callout-text {
    flex-direction: column;
    gap: var(--space-4);
  }
  .smort-callout-section-title {
    font-size: var(--text-xl);
  }

  .smort-callout-section-content {
    font-size: var(--text-sm);
  }
}

@media (max-width: 768px) {
  .smort-callout-section-callout {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-8);
  }
  .smort-callout-section-content-overlay {
    padding: var(--space-md) 0;
  }

  .smort-callout-section-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-sm);
  }

  .smort-callout-section-content {
    font-size: var(--text-sm);
    margin-bottom: var(--space-sm);
  }
}

@media (max-width: 480px) {
  .smort-callout-section-title {
    font-size: var(--text-base);
  }

  .smort-callout-section-text {
    font-size: var(--text-xs);
  }
}
