.az-article-page {
  background:
    radial-gradient(circle at 12% 16%, rgba(122, 0, 124, .09), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(192, 0, 155, .10), transparent 24%),
    #F7F7F8;
  padding-top: clamp(112px, 11vw, 150px);
  padding-bottom: clamp(54px, 7vw, 90px);
}

.az-article-shell {
  width: min(100% - 32px, 980px);
  margin-inline: auto;
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: clamp(24px, 3vw, 34px);
  box-shadow: 0 28px 80px rgba(17, 17, 17, .09);
  padding: clamp(24px, 4.5vw, 58px);
}

.az-article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7A007C;
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 24px;
}

.az-article-back::before {
  content: "‹";
  font-size: 1.5rem;
  line-height: 1;
}

.az-article-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.03;
  letter-spacing: -.06em;
  margin: 16px 0;
  color: #111;
}

.az-article-subtitle {
  color: #4A4A4A;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.72;
  max-width: 820px;
  margin: 0 0 24px;
}

.az-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: #6B6B6B;
  font-weight: 700;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #E8E8E8;
}

.az-article-meta strong {
  color: #111;
}

.az-article-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  margin: 30px 0 36px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, .34), transparent 24%),
    linear-gradient(135deg, #7A007C, #C0009B);
  box-shadow: 0 24px 60px rgba(122, 0, 124, .16);
}

.az-article-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.az-article-content {
  color: #262626;
  font-size: clamp(1rem, 1.1vw, 1.06rem);
  line-height: 1.84;
}

.az-article-content h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.18;
  margin: 38px 0 14px;
  letter-spacing: -.035em;
  color: #111;
}

.az-article-content h3 {
  font-size: clamp(1.18rem, 2vw, 1.35rem);
  line-height: 1.3;
  margin: 28px 0 10px;
  color: #111;
}

.az-article-content p {
  margin: 0 0 18px;
  color: #3B3B3B;
}

.az-article-content a {
  color: #7A007C;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.az-article-content ul,
.az-article-content ol {
  margin: 0 0 22px 22px;
  color: #3B3B3B;
}

.az-article-content li {
  margin-bottom: 10px;
}

.az-article-content blockquote {
  margin: 30px 0;
  padding: 22px 24px;
  border-left: 4px solid #7A007C;
  border-radius: 18px;
  background: #F7F7F8;
  color: #2B2B2B;
  font-weight: 700;
}

.az-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid #E8E8E8;
}

.az-article-tags span {
  color: #6B6B6B;
  font-weight: 800;
}

.az-article-tags mark {
  border: 1px solid rgba(122, 0, 124, .18);
  border-radius: 999px;
  background: rgba(122, 0, 124, .07);
  color: #7A007C;
  padding: 8px 12px;
  font-weight: 800;
}

.az-article-cta {
  margin-top: 34px;
  padding: 26px;
  border-radius: 26px;
  background: #F7F7F8;
  border: 1px solid #E8E8E8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.az-article-cta strong {
  display: block;
  font-size: 1.3rem;
  letter-spacing: -.03em;
  margin-bottom: 4px;
  color: #111;
}

.az-article-cta p {
  margin: 0;
  color: #6B6B6B;
}

@media (max-width: 760px) {
  .az-article-shell {
    width: min(100% - 22px, 980px);
    padding: 22px;
    border-radius: 22px;
  }

  .az-article-header h1 {
    font-size: clamp(1.86rem, 10vw, 2.62rem);
    line-height: 1.05;
    letter-spacing: -.045em;
  }

  .az-article-cover {
    border-radius: 20px;
    margin: 24px 0 28px;
  }

  .az-article-meta {
    gap: 8px 12px;
    font-size: .92rem;
  }

  .az-article-content {
    line-height: 1.78;
  }

  .az-article-cta {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    padding: 22px;
    border-radius: 22px;
  }
}
