/* -----------------------------------
   Golden Circle shared components
----------------------------------- */

.gc-container {
  width: calc(100% - 40px);
  max-width: var(--gc-container);
  margin-inline: auto;
}

.gc-section {
  padding: 56px 0;
}

.gc-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.gc-section-kicker {
  font-family: var(--gc-font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gc-gold);
  margin-bottom: 8px;
}

.gc-section-title {
  font-family: var(--gc-font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  color: var(--gc-text);
  margin: 0;
}

.gc-section-subtitle {
  font-family: var(--gc-font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gc-muted);
  margin: 8px 0 0;
  max-width: 620px;
}

.gc-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--gc-font-body);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--gc-blue);
  text-decoration: none;
}

.gc-link-arrow:hover {
  color: var(--gc-gold);
}

.gc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--gc-radius-sm);
  font-family: var(--gc-font-body);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.gc-btn:hover {
  transform: translateY(-1px);
}

.gc-btn-primary {
  background: var(--gc-gold);
  color: var(--gc-blue-deep);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.22);
}

.gc-btn-primary:hover {
  background: var(--gc-gold-soft);
  color: var(--gc-blue-deep);
}

.gc-btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--gc-white);
  background: transparent;
}

.gc-btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gc-white);
}

.gc-card {
  background: var(--gc-white);
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-md);
  box-shadow: var(--gc-shadow-card);
  font-family: var(--gc-font-body);
  overflow: hidden;
}

.gc-card:hover {
  box-shadow: var(--gc-shadow-soft);
}

@media (max-width: 768px) {
  .gc-container {
    width: calc(100% - 28px);
    max-width: var(--gc-container);
  }

  .gc-section {
    padding: 40px 0;
  }

  .gc-section-header {
    display: block;
  }

  .gc-section-header .gc-link-arrow {
    margin-top: 14px;
  }
}

