/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 08 2026 | 07:30:12 */
/* ==================================================
   BANNER 3 — CRAFTSMANSHIP
   ================================================== */

.cga-craft-v3,
.cga-craft-v3 * {
  box-sizing: border-box;
}

.cga-craft-v3 {
  --craft-gold: #d5a545;
  --craft-dark: #17120c;

  position: relative;
  width: min(560px, calc(100% - 40px));
  margin-right: auto;
  margin-left: clamp(20px, 5vw, 90px);
  padding: 24px 28px 26px;
  overflow: hidden;
  color: #fff;
  text-align: left;
  background: linear-gradient(
    115deg,
    rgba(10, 13, 13, 0.94),
    rgba(12, 15, 15, 0.73)
  );
  border: 1px solid rgba(213, 165, 69, 0.3);
  border-left: 4px solid var(--craft-gold);
  border-radius: 4px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

/* Decorative gold line */
.cga-craft-v3::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 3px;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(213, 165, 69, 0),
    var(--craft-gold)
  );
}

/* Experience label */
.cga-craft-v3-eyebrow {
  display: flex;
  margin: 0 0 13px;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cga-craft-v3-eyebrow span {
  display: inline-block;
  padding: 6px 10px;
  color: var(--craft-dark);
  background-color: var(--craft-gold);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* Main heading */
.cga-craft-v3-title {
  width: 100%;
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.025em;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.35);
}

.cga-craft-v3-title span {
  display: block;
  color: var(--craft-gold);
}

/* Supporting text */
.cga-craft-v3-description {
  width: 100%;
  max-width: 470px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 400;
  line-height: 1.5;
}

/* Button */
.cga-craft-v3-button {
  display: inline-flex;
  min-height: 43px;
  padding: 10px 17px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--craft-dark) !important;
  background-color: var(--craft-gold);
  border: 1px solid var(--craft-gold);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  box-shadow: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.cga-craft-v3-button span {
  color: inherit;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.cga-craft-v3-button:hover {
  color: #fff !important;
  background-color: transparent;
  border-color: var(--craft-gold);
  transform: translateY(-2px);
}

.cga-craft-v3-button:hover span {
  transform: translateX(3px);
}

.cga-craft-v3-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 549px) {
  .cga-craft-v3 {
    position: relative;
    left: 50%;
    width: calc(100vw - 24px);
    max-width: 380px;
    margin: 0;
    padding: 18px;
    transform: translateX(-50%);
  }

  .cga-craft-v3-eyebrow,
  .cga-craft-v3-title,
  .cga-craft-v3-description {
    width: 100%;
    max-width: 100%;
    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .cga-craft-v3-eyebrow {
    margin-bottom: 10px;
    gap: 6px;
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .cga-craft-v3-eyebrow span {
    padding: 5px 8px;
    font-size: 9px;
  }

  .cga-craft-v3-title {
    margin-bottom: 9px;
    font-size: 28px;
    line-height: 1.05;
  }

  .cga-craft-v3-description {
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.45;
  }

  .cga-craft-v3-button {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 10px;
  }
}