/* Wild Gaze – Terms & Conditions premium layout */

.wg-terms {
  font-family: var(--font-body, 'Montserrat', 'Raleway', sans-serif);
  background: #f8fafc;
  color: #334155;
}

.wg-terms-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.wg-terms-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b8941a;
  margin-bottom: 12px;
}

.wg-terms-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, #b8941a, transparent);
}

.wg-terms-heading {
  font-family: var(--font-brand, 'Cinzel', Georgia, serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 12px;
}

.wg-terms-heading .gold-word {
  color: #b8941a;
}

.wg-terms-rule {
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #b8941a, #d4b87a, transparent);
  margin-bottom: 40px;
}

.wg-terms-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wg-terms-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 14px;
  padding: 28px 28px 28px 24px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.wg-terms-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #b8941a, #d4b87a, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wg-terms-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  border-color: rgba(191, 161, 95, 0.35);
}

.wg-terms-item:hover::before {
  opacity: 1;
}

.wg-terms-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fef9ee, #f5ecd4);
  border: 1px solid rgba(191, 161, 95, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wg-terms-icon i {
  font-size: 1.1rem;
  color: #b8941a;
}

.wg-terms-num {
  display: none;
}

.wg-terms-title {
  font-family: var(--font-brand, 'Cinzel', Georgia, serif);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.35;
}

.wg-terms-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #475569;
}

.wg-terms-text strong,
.wg-terms-text b {
  color: #1e293b;
  font-weight: 600;
}

@media (max-width: 640px) {
  .wg-terms-inner {
    padding: 48px 18px 72px;
  }

  .wg-terms-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 20px;
  }

  .wg-terms-icon {
    width: 44px;
    height: 44px;
  }
}
