/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 01 2026 | 06:47:11 */
/* Custom Guitar Atelier Series heading */
.cga-series-heading,
.cga-series-heading * {
  box-sizing: border-box;
}

.cga-series-heading {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  margin: 50px 0 36px;
  padding: 42px 24px 39px;
  text-align: center;
}

/* Soft editorial background */
.cga-series-heading::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(250, 246, 239, 0.88) 20%,
    #faf6ef 50%,
    rgba(250, 246, 239, 0.88) 80%,
    rgba(255, 255, 255, 0) 100%
  );
  border-top: 1px solid rgba(184, 135, 53, 0.17);
  border-bottom: 1px solid rgba(184, 135, 53, 0.17);
}

/* Subtle gold glow */
.cga-series-heading::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -130px;
  left: 50%;
  width: 370px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(191, 143, 61, 0.15) 0%,
    rgba(191, 143, 61, 0) 70%
  );
  transform: translateX(-50%);
  pointer-events: none;
}

.cga-series-kicker {
  display: block;
  margin-bottom: 10px;
  color: #996a24;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cga-series-heading h2 {
  margin: 0;
  color: #30231e;
  font-family: inherit;
  font-size: clamp(34px, 3.2vw, 50px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.028em;
  text-transform: none;
  text-wrap: balance;
}

/* Decorative divider */
.cga-series-divider {
  position: relative;
  display: flex;
  max-width: 170px;
  height: 14px;
  align-items: center;
  justify-content: center;
  margin: 17px auto;
}

.cga-series-divider::before,
.cga-series-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(184, 135, 53, 0),
    rgba(184, 135, 53, 0.7)
  );
}

.cga-series-divider::after {
  background: linear-gradient(
    90deg,
    rgba(184, 135, 53, 0.7),
    rgba(184, 135, 53, 0)
  );
}

.cga-series-divider i {
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin: 0 10px;
  background: #b88735;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(184, 135, 53, 0.11);
}

.cga-series-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: #70675f;
  font-size: 16px;
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 549px) {
  .cga-series-heading {
    margin: 34px 0 27px;
    padding: 32px 17px 30px;
  }

  .cga-series-kicker {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .cga-series-heading h2 {
    font-size: 32px;
  }

  .cga-series-heading p {
    font-size: 15px;
    line-height: 1.6;
  }
}

