.site-banner {
  container: site-banner / inline-size;
  padding: 5px;
  display: block;
  background: oklch(97% 1% 31deg);
  color: black;
  text-align: center;

  border: 10px solid #0000;
  background-image: linear-gradient(
    35deg,
    oklch(75% 4% 281deg),
    oklch(94% 2% 274deg),
    oklch(75% 4% 281deg),
    oklch(94% 2% 274deg)
  );
  background-origin: border-box;
  background-clip: border-area;
  border-radius: 20px;

  margin: 10px;
  font-weight: bold;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 12px;

  &:hover,
  &:focus {
    text-decoration: none;
    .site-banner-cta {
      background: black;
    }
  }
}

.site-banner-inside {
  padding: 0.75rem 1rem;
  display: grid;
  grid-template-areas:
    "badge subtitle cta"
    "badge title cta";
  grid-template-columns: 60px 1fr 200px;
  background: oklch(97% 1% 31deg);
  position: relative;
  border-radius: 10px;

  @media (width < 500px) {
    grid-template-columns: 1fr;
    grid-template-areas:
      "subtitle"
      "title"
      "cta";

    .site-banner-subtitle,
    .site-banner-title {
      padding-inline-start: 40px;
    }

    .site-banner-cta {
      margin-block-start: 0.5rem;
    }
  }
}

.site-banner-badge {
  width: 100px;
  height: auto;
  position: absolute;
  left: -25px;
  top: -25px;
}

.site-banner-title {
  grid-area: title;
  font-weight: 900;
  font-size: 1.1rem;
  font-size: clamp(1.1rem, 1.7cqi, 1.5rem);
  text-wrap: balance;
  line-height: 1.2;
}

.site-banner-subtitle {
  grid-area: subtitle;
  color: oklch(53% 46% 28deg);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.9rem;
}

.site-banner-cta {
  grid-area: cta;
  align-self: center;
  background: oklch(53% 46% 28deg);
  color: white;
  font-weight: 400px;
  border-radius: 10px;
  padding: 0.5rem 1rem;
}
