/* === Expert portal shared styles === */
:root {
  --exp-gold: #D4BC7A;
  --exp-gold-d: #9E7E3F;
  --exp-gold-l: #E5D4A0;
  --exp-amb: #9B4A6B;
  --exp-amb-l: #F5EFF2;
  --exp-amb-b: #E0C0CE;
  --exp-gold-grad: linear-gradient(135deg,#C4A559 0%,#D4BC7A 40%,#E5D4A0 70%,#EFE2B8 100%);
  --exp-bg: #FAFAF8;
  --exp-t1: #2C2A26;
  --exp-t2: #6B6660;
  --exp-t3: #A09A94;
  --exp-bd: #EBEBEB;
  --exp-bd2: #F4F2EE;
  --exp-sh: 0 2px 12px rgba(0,0,0,.06);
}

.exp-page {
  min-height: 100vh;
  background: var(--exp-bg);
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
}
.exp-page-main {
  flex: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 28px 28px 60px;
}
.exp-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--exp-bd2);
  box-shadow: var(--exp-sh);
  overflow: hidden;
  margin-bottom: 16px;
}
.exp-card-head {
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--exp-bd2);
  display: flex; align-items: center; justify-content: space-between;
}
.exp-card-title {
  font-size: 13px; font-weight: 700; color: #1a1a1a;
  letter-spacing: .05em; text-transform: uppercase;
}
.exp-card-body { padding: 20px 22px; }
.exp-btn-gold {
  background: var(--exp-gold-grad);
  color: #fff; border: none; border-radius: 9px;
  padding: 10px 20px; font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all .2s;
  box-shadow: 0 2px 10px rgba(184,145,42,.2);
  font-family: inherit;
}
.exp-btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,145,42,.35);
}
.exp-btn-outline {
  background: #fff; color: var(--exp-t1);
  border: 1.5px solid var(--exp-bd); border-radius: 9px;
  padding: 9px 20px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .15s; font-family: inherit;
}
.exp-btn-outline:hover {
  border-color: var(--exp-gold); color: var(--exp-gold-d);
}
.exp-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; font-weight: 700; color: #1a1a1a;
  margin-bottom: 4px;
}
.exp-section-sub {
  font-size: 13px; color: var(--exp-t2); margin-bottom: 20px;
}
.exp-footer {
  border-top: 1px solid rgba(0,0,0,.06);
  background: var(--exp-bg);
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px; margin-top: auto;
}
.exp-footer-left {
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
  color: #bbb; text-transform: uppercase;
}
.exp-footer-link {
  font-size: 11px; color: #aaa; cursor: pointer; padding: 4px 10px;
  background: none; border: none; font-family: inherit;
  transition: color .15s;
}
.exp-footer-link:hover { color: #C4A559; }
