*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial,
    sans-serif;
  background: #fff;
  color: #111;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: stretch;
  max-width: 1100px;
  width: 100%;
}

.hero__image {
  overflow: hidden;
  border-radius: 15px;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

.hero__content {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.hero__title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ca0064;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.hero__subtitle {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111;
}

.hero__body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #333;
}

@media (max-width: 700px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__image {
    height: 280px;
  }

  .hero__content {
    padding: 32px 24px;
  }

  .hero__title {
    font-size: 1.8rem;
  }
}
