/* =========================================================
   HGC PRO SINGLE – BRAND MATCH
   ========================================================= */

:root {
  --hgc-green-dark: #2f3f1f;
  --hgc-green: #4f6b2a;
  --hgc-green-accent: #9ac31c;
  --hgc-text-main: #1f1f1f;
  --hgc-text-soft: #5f5f5f;
  --hgc-border-soft: rgba(0,0,0,.12);
}

/* Layout */
.hgc-pro-single {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 16px;
}

/* Back link */
.hgc-pro-single__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  color: var(--hgc-green);
  text-decoration: none;
  font-weight: 500;
}

.hgc-pro-single__back:hover {
  text-decoration: underline;
}

/* Grid */
.hgc-pro-single__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 900px) {
  .hgc-pro-single__grid {
    grid-template-columns: 1fr;
  }
}

/* Image card */
.hgc-pro-single__card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0,0,0,.08);
}

.hgc-pro-single__img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content */
.hgc-pro-single__content {
  padding-top: 8px;
}

.hgc-pro-single__title {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: 1.05;
  font-weight: 800;
  color: var(--hgc-text-main);
}

/* Meta / contact */
.hgc-pro-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

/* Chips */
.hgc-pro-single__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--hgc-border-soft);
  background: #fff;
  color: var(--hgc-green-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.hgc-pro-single__chip:hover {
  background: rgba(0,0,0,.03);
}

/* Primary CTA */
.hgc-pro-single__chip--primary {
  background: var(--hgc-green-dark);
  color: #fff;
  border-color: transparent;
}

.hgc-pro-single__chip--primary:hover {
  background: var(--hgc-green);
}

/* Intro / description */
.hgc-pro-single__desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--hgc-text-soft);
}

/* WYSIWYG content consistency */
.hgc-pro-single__desc p {
  margin: 0 0 14px;
}

.hgc-pro-single__desc strong {
  color: var(--hgc-text-main);
}