.detail-page .article-region-cluster {
  padding: 0 0 54px;
  background: #fff;
}

.detail-page .article-region-cluster-card {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 28px;
  padding: 28px;
  border: 1px solid #dfe8e1;
  border-radius: 24px;
  background: linear-gradient(135deg, #f7faf7, #ffffff);
}

.detail-page .article-region-cluster-copy > span {
  display: inline-block;
  margin-bottom: 8px;
  color: #39714d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.detail-page .article-region-cluster-copy h2 {
  margin: 0;
  color: #17231b;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.2;
}

.detail-page .article-region-cluster-copy p {
  max-width: 520px;
  margin: 12px 0 0;
  color: #687069;
  font-size: .92rem;
  line-height: 1.7;
}

.detail-page .article-region-cluster-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.detail-page .article-region-cluster-links a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 76px;
  padding: 14px 16px;
  border: 1px solid #e5ebe6;
  border-radius: 16px;
  background: #fff;
  color: #223729;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.detail-page .article-region-cluster-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 93, 63, .28);
  box-shadow: 0 10px 24px rgba(24, 68, 43, .08);
}

.detail-page .article-region-cluster-links span {
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.35;
}

.detail-page .article-region-cluster-links small {
  margin-top: 4px;
  color: #7b827c;
  font-size: .72rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .detail-page .article-region-cluster {
    padding-bottom: 36px;
  }

  .detail-page .article-region-cluster-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
  }

  .detail-page .article-region-cluster-links {
    grid-template-columns: 1fr;
  }
}
