.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }
}

.hero-image {
  flex: 1 1 0;
  width: 100%;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  display: block;
}

.hero-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-logo {
  width: 140px;
  height: auto;
  filter: invert(0.2);
}

.hero-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.15;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: var(--primary-text);
}

.hero-cta-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero-content .btn-primary {
  display: inline-block;
  width: fit-content;
}
