.aw-area-hero {
  max-width: 1280px;
  height: clamp(320px, 38vw, 460px);
  margin: 24px auto 0;
  overflow: hidden;
  border-radius: 24px;
  background: #f6f3f6;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.aw-area-hero img,
.aw-area-hero .aw-area-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.aw-area-content {
  padding: 34px 16px 68px;
  background: #f6f6f6;
}

.aw-area-content > .aw-area-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid #ece7ec;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .1);
}

.aw-area-content h1,
.aw-area-content h2,
.aw-area-content h3 {
  color: #872e83;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.aw-area-content h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.aw-area-content h2 {
  margin: 30px 0 14px;
  font-size: calc(1.305rem + .66vw);
}

.aw-area-content h3 {
  margin: 0 0 12px;
  font-size: calc(1.2825rem + .39vw);
}

.aw-area-content p,
.aw-area-content li {
  color: #5f5660;
  font-size: 16px;
  line-height: 1.72;
}

.aw-area-content a {
  color: #872e83;
}

.aw-area-content .aw-area-highlight {
  color: #872e83;
  font-weight: 700;
}

.aw-area-content .aw-area-cta-row {
  width: 100%;
}

.aw-area-content .aw-area-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.aw-area-content .aw-area-cta-card,
.aw-area-content .aw-area-card {
  height: 100%;
  margin-bottom: 20px;
  padding: 26px;
  border: 1px solid #ece7ec;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.aw-area-content .aw-area-cta-card:hover,
.aw-area-content .aw-area-card:hover {
  transform: translateY(-6px);
  border-color: rgba(135, 46, 131, .28);
  box-shadow: 0 18px 38px rgba(135, 46, 131, .15);
}

.aw-area-content .aw-area-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: #faf7fa;
  color: #872e83;
  font-size: 22px;
  transition: transform .24s ease, background-color .24s ease, color .24s ease;
}

.aw-area-content .aw-area-cta-card:hover .aw-area-cta-icon {
  transform: scale(1.06);
  background: #872e83;
  color: #fff;
}

.aw-area-content .aw-area-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 116px;
  padding: 10px 16px;
  border: 1px solid #872e83;
  border-radius: 999px;
  background: #872e83;
  color: #fff;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(135, 46, 131, .2);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.aw-area-content .aw-area-link:hover {
  transform: translateY(-2px);
  background: #6f256b;
  color: #fff;
  box-shadow: 0 12px 24px rgba(135, 46, 131, .26);
}

.aw-area-content .aw-area-cta-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.aw-area-content .aw-area-arrow {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (min-width: 1200px) {
  .aw-area-content h2 {
    font-size: 1.8rem;
  }

  .aw-area-content h3 {
    font-size: 1.575rem;
  }
}

@media (max-width: 768px) {
  .aw-area-hero {
    height: 240px;
    margin-top: 12px;
    border-radius: 0;
  }

  .aw-area-content {
    padding: 22px 12px 46px;
  }

  .aw-area-content > .aw-area-container {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .aw-area-content .aw-area-cta-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
