/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 01 2026 | 06:47:07 */
/* ==================================================
   CGA — PREMIUM COMPONENTS INTRO
   ================================================== */

.cga-components-intro,
.cga-components-intro * {
  box-sizing: border-box;
}

.cga-components-intro {
  --cga-gold: #a8752d;
  --cga-gold-light: #d6b271;
  --cga-dark: #211915;
  --cga-text: #6f655d;
  --cga-border: rgba(168, 117, 45, 0.24);

  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 38px auto 55px;
  padding: 50px clamp(24px, 5vw, 72px) 40px;
  overflow: hidden;
  isolation: isolate;
  text-align: center;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(214, 178, 113, 0.16),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #fdfbf7 62%,
      #f8f2e8 100%
    );

  border: 1px solid var(--cga-border);
  border-radius: 20px;

  box-shadow:
    0 18px 45px rgba(48, 35, 24, 0.08),
    0 3px 10px rgba(48, 35, 24, 0.04);
}

/* Gold detail across the top */
.cga-components-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 3px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--cga-gold-light),
    var(--cga-gold),
    var(--cga-gold-light),
    transparent
  );
}

/* Soft decorative glow */
.cga-components-intro::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 320px;
  height: 320px;
  z-index: -1;

  border-radius: 50%;
  background: rgba(199, 151, 74, 0.08);
  filter: blur(8px);
}

.cga-components-intro-content {
  position: relative;
  z-index: 1;
}

.cga-components-kicker {
  margin: 0 0 12px;
  color: var(--cga-gold);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cga-components-intro h2 {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0;

  color: var(--cga-dark);
  font-size: clamp(29px, 3.1vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.cga-components-intro h2 span {
  color: var(--cga-gold);
}

.cga-components-divider {
  display: block;
  width: 66px;
  height: 3px;
  margin: 21px auto 22px;

  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--cga-gold-light),
    var(--cga-gold)
  );
}

.cga-components-description {
  max-width: 980px;
  margin: 0 auto;

  color: var(--cga-text);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 400;
  line-height: 1.75;
}

/* Three component highlights */
.cga-components-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;

  max-width: 920px;
  margin: 30px auto 0;
  padding: 0;

  list-style: none;
}

.cga-components-highlights li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  min-height: 66px;
  margin: 0;
  padding: 13px 17px;

  color: var(--cga-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.035em;
  text-transform: uppercase;

  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(168, 117, 45, 0.2);
  border-radius: 12px;

  box-shadow: 0 7px 20px rgba(48, 35, 24, 0.045);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.cga-components-highlights li:hover {
  transform: translateY(-3px);
  border-color: rgba(168, 117, 45, 0.48);
  box-shadow: 0 12px 25px rgba(48, 35, 24, 0.09);
}

.cga-components-icon {
  display: inline-flex;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  color: var(--cga-gold);
  background: rgba(168, 117, 45, 0.1);
  border: 1px solid rgba(168, 117, 45, 0.18);
  border-radius: 50%;
}

.cga-components-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Tablet */
@media (max-width: 849px) {
  .cga-components-intro {
    margin: 28px auto 42px;
    padding: 40px 22px 30px;
    border-radius: 16px;
  }

  .cga-components-highlights {
    gap: 10px;
  }

  .cga-components-highlights li {
    padding: 12px 10px;
    font-size: 12px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cga-components-intro {
    padding: 34px 18px 24px;
    text-align: left;
  }

  .cga-components-kicker {
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .cga-components-intro h2 {
    font-size: 28px;
  }

  .cga-components-divider {
    margin-left: 0;
  }

  .cga-components-description {
    font-size: 16px;
    line-height: 1.65;
  }

  .cga-components-highlights {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .cga-components-highlights li {
    justify-content: flex-start;
    min-height: 60px;
    padding: 10px 14px;
    font-size: 13px;
  }
}

/* Respect reduced-motion settings */
@media (prefers-reduced-motion: reduce) {
  .cga-components-highlights li {
    transition: none;
  }
}