/**
 * Smort Hero Block Styles
 */

.smort-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: var(--space-16);
}

.smort-hero.smort-hero-full {
  min-height: 80vh;
  min-height: 80svh;
  height: 80vh;
  height: 80svh;
  max-height: none;

  @media (max-width: 768px) {
    min-height: 104vh;
  }
}

.smort-hero.smort-hero-half {
  min-height: 65vh;
  height: 65vh;

  @media (max-width: 768px) {
    min-height: 80vh;
    height: 80vh;
  }
}

.smort-hero-image,
.smort-hero-video {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.page-id-19 .smort-hero-image,
.page-id-19 .smort-hero-video {
  object-position: center bottom;
}

.smort-hero-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.smort-hero-inner {
  position: relative;
  z-index: 20;
}

.smort-hero-content {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: var(--space-6);
  align-items: flex-end;
  padding-top: var(--space-8);
}

.smort-hero-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.smort-hero-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  align-items: flex-start;
}

.smort-hero-eyebrow {
  color: var(--white);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  opacity: 0.9;
  margin: 0;
}

.smort-hero-title {
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 90px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin: 0;
  max-width: 800px;
}

.smort-hero-description {
  color: var(--white);
  font-size: 20px;
  line-height: 1.6;
  margin: 0px;

  @media (max-width: 768px) {
    font-size: 16px;
  }
}

/* Responsive styles */
@media (width <= 1024px) {
  .smort-hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .smort-hero-title {
    font-size: 4rem;
  }

  .smort-hero-right {
    align-items: flex-start;
  }
}

@media (width <= 768px) {
  .smort-hero {
    padding-bottom: var(--space-12);
  }

  .smort-hero-content {
    gap: var(--space-6);
    padding-top: var(--space-6);
  }

  .smort-hero-title {
    font-size: 2.5rem;
  }

  .smort-hero-eyebrow {
    font-size: var(--text-xs);
  }
}
