/* ========================================
   THE FOUND-RY — FOUNDING MEMBERS STYLES
   ======================================== */

/* Hero */
.founding-hero {
  background: var(--stone);
  color: var(--warm-cream);
  padding: 7rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.founding-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,148,79,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.founding-hero-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.founding-hero-label {
  display: inline-block;
  background: rgba(184,148,79,0.15);
  border: 1px solid rgba(184,148,79,0.3);
  color: var(--gold-light);
  border-radius: 2px;
  padding: 4px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.founding-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--warm-cream);
  margin-bottom: 1.2rem;
}
.founding-hero-sub {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.founding-hero-location {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* Thermometer */
.founding-thermometer-section {
  background: var(--stone);
  padding: 0 2rem 4rem;
  border-top: 1px solid rgba(184,148,79,0.1);
}
.founding-thermometer-inner {
  max-width: 760px;
  margin: 0 auto;
}
.founding-goal-label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-top: 2rem;
}

.founding-thermometer-wrap {
  position: relative;
  margin: 3rem 0;
  padding: 0 20px;
}
.founding-thermometer {
  position: relative;
  height: 28px;
}
.thermometer-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: rgba(184,148,79,0.15);
  border-radius: 6px;
  border: 1px solid rgba(184,148,79,0.25);
  overflow: hidden;
  top: 8px;
}
.thermometer-fill {
  height: 100%;
  background: linear-gradient(90deg, #8a6b2e, #c9a96e, #d4b978);
  border-radius: 6px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  min-width: 0;
}
.thermometer-fill-glow {
  position: absolute;
  right: 0;
  top: -2px;
  bottom: -2px;
  width: 20px;
  background: rgba(212,185,120,0.4);
  filter: blur(4px);
  border-radius: 50%;
}

/* Milestone markers */
.milestone-marker {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.milestone-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--warm-cream);
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(184,148,79,0.3), 0 2px 8px rgba(0,0,0,0.3);
  transition: all 0.3s;
  flex-shrink: 0;
}
.milestone-line {
  width: 3px;
  height: 12px;
  background: linear-gradient(to bottom, var(--gold), rgba(184,148,79,0.4));
  border-radius: 2px;
}
.milestone-label-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8px;
  max-width: 90px;
  text-align: center;
}
.milestone-label-right { align-items: flex-end; }
.milestone-emoji { font-size: 1rem; }
.milestone-amount {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  display: block;
  line-height: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.milestone-desc {
  font-size: 0.62rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.3;
  display: block;
  margin-top: 2px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.milestone-marker.reached .milestone-dot {
  background: var(--gold);
  border-color: var(--warm-cream);
  box-shadow: 0 0 0 3px var(--gold), 0 0 12px rgba(184,148,79,0.8);
}
.milestone-marker.reached .milestone-desc { color: var(--gold-light); }

/* Raised display */
.founding-raised-display {
  text-align: center;
  margin-top: 2rem;
}
.founding-raised-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.founding-raised-pct {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.5);
  margin-top: 0.4rem;
}
.founding-backers-count {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.5);
  margin-top: 1rem;
}
.founding-backers-count strong { color: var(--gold-light); }
.founding-backers-sep { margin: 0 8px; }

/* Tiers section */
.founding-tiers-section {
  background: var(--warm-cream);
  padding: 5rem 2rem;
}
.founding-tiers-inner { max-width: 1100px; margin: 0 auto; }
.founding-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  color: var(--stone);
  margin-bottom: 0.5rem;
}
.founding-section-sub {
  text-align: center;
  color: var(--charcoal);
  opacity: 0.7;
  margin-bottom: 3rem;
  font-size: 0.95rem;
}
.founding-tiers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

/* Tier cards */
.founding-tier-card {
  border: 2px solid rgba(184,148,79,0.2);
  border-radius: 4px;
  padding: 1.5rem;
  cursor: pointer;
  background: #fff;
  transition: all 0.25s ease;
  position: relative;
}
.founding-tier-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44,38,32,0.12);
}
.founding-tier-card.selected {
  border-color: var(--gold);
  background: rgba(184,148,79,0.06);
  box-shadow: 0 0 0 2px var(--gold);
}
.founding-tier-card.selected::after {
  content: '✓';
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 700;
}

/* Tier pin image — individual photos */
.tier-pin-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.2rem;
  border: 2px solid rgba(184,148,79,0.2);
  box-shadow: 0 4px 14px rgba(44,38,32,0.12);
  flex-shrink: 0;
}
.tier-pin-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tier-founders-token .tier-pin-wrap {
  border-radius: 8px;
  border-color: rgba(184,148,79,0.35);
}

/* Tier card colors */
.founding-tier-card.tier-quill .tier-name { color: #9a8f7a; }
.founding-tier-card.tier-river .tier-name { color: #4a6670; }
.founding-tier-card.tier-eagle .tier-name { color: #3a3530; }
.founding-tier-card.tier-bridge .tier-name { color: #b8944f; }
.founding-tier-card.tier-founders-token .tier-name { color: #7a5c1e; }

.tier-card-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.8rem;
  gap: 0.3rem;
}
.tier-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}
.tier-price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--stone);
}
.tier-card-pin {
  font-size: 0.75rem;
  color: var(--charcoal);
  opacity: 0.6;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.tier-perks {
  list-style: none;
  margin-bottom: 0.8rem;
}
.tier-perks li {
  font-size: 0.78rem;
  color: var(--charcoal);
  padding: 0.25rem 0;
  line-height: 1.4;
  position: relative;
  padding-left: 1em;
}
.tier-perks li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.tier-recognition {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
  border-top: 1px solid rgba(184,148,79,0.15);
  padding-top: 0.8rem;
  margin-top: 0.8rem;
}
.tier-select-btn {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--stone);
  background: rgba(184,148,79,0.08);
  border: 1px solid rgba(184,148,79,0.25);
  border-radius: 2px;
  padding: 0.45rem 0.8rem;
  transition: all 0.2s;
}
.founding-tier-card:hover .tier-select-btn,
.founding-tier-card.selected .tier-select-btn {
  background: var(--stone);
  color: var(--warm-cream);
  border-color: var(--stone);
}
.founding-tier-card.selected .tier-select-btn::before {
  content: '✓ ';
}

/* Form section */
.founding-form-section {
  background: var(--warm-cream);
  border-top: 1px solid rgba(184,148,79,0.15);
  padding: 4rem 2rem;
}
.founding-form-inner {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid rgba(184,148,79,0.2);
  border-radius: 4px;
  padding: 2.5rem;
}
.founding-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.founding-back-btn {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-size: 0.85rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  padding: 0;
  transition: opacity 0.2s;
}
.founding-back-btn:hover { opacity: 0.7; }
.founding-form-tier-badge {
  background: rgba(184,148,79,0.1);
  border: 1px solid rgba(184,148,79,0.25);
  color: var(--gold);
  border-radius: 2px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.founding-form-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--stone);
  margin-bottom: 1.5rem;
}
.founding-field {
  margin-bottom: 1.2rem;
}
.founding-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.founding-field input[type=text],
.founding-field input[type=email],
.founding-field input[type=tel] {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(184,148,79,0.3);
  border-radius: 2px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  background: var(--warm-cream);
  color: var(--stone);
  transition: border-color 0.2s;
  outline: none;
}
.founding-field input:focus {
  border-color: var(--gold);
}
.founding-field-hint {
  display: block;
  font-size: 0.72rem;
  color: var(--charcoal);
  opacity: 0.5;
  margin-top: 0.3rem;
}
.founding-optional { opacity: 0.5; font-weight: 400; }

.founding-tier-fields { margin-top: 1rem; }

.founding-toggle-row {
  display: flex;
  gap: 1rem;
  margin-top: 0.4rem;
}
.founding-toggle-opt {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--charcoal);
}
.founding-toggle-opt input[type=radio] { accent-color: var(--gold); }
.founding-checkbox-opt {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.founding-checkbox-opt input[type=checkbox] { accent-color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.founding-checkbox-opt a { color: var(--gold); text-decoration: underline; }

.founding-form-summary {
  background: rgba(184,148,79,0.08);
  border: 1px solid rgba(184,148,79,0.2);
  border-radius: 2px;
  padding: 0.8rem 1rem;
  margin-bottom: 1.2rem;
}
.founding-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--stone);
  font-weight: 600;
}

.founding-submit-btn {
  width: 100%;
  padding: 0.85rem;
  background: var(--stone);
  color: var(--warm-cream);
  border: none;
  border-radius: 2px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.founding-submit-btn:hover { background: var(--charcoal); }
.founding-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.founding-form-error {
  background: rgba(220,50,50,0.1);
  border: 1px solid rgba(220,50,50,0.3);
  color: #a33;
  border-radius: 2px;
  padding: 0.6rem 0.85rem;
  font-size: 0.82rem;
  margin-top: 0.8rem;
}
.founding-stripe-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.72rem;
  color: rgba(44,38,32,0.4);
  margin-top: 0.8rem;
}

/* Plaque section */
.founding-plaque-section {
  background: var(--stone);
  padding: 5rem 2rem;
}
.founding-plaque-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.founding-plaque-copy {
  color: rgba(245,240,232,0.65);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.founding-plaque-images { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.founding-plaque-img-wrap {
  max-width: 420px;
  width: 100%;
}
.founding-plaque-img {
  border-radius: 4px;
  border: 2px solid rgba(184,148,79,0.3);
  width: 100%;
}
.founding-plaque-caption {
  display: block;
  font-size: 0.72rem;
  color: var(--gold);
  margin-top: 0.5rem;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Business section */
.founding-business-section {
  background: var(--warm-cream);
  padding: 5rem 2rem;
  border-top: 1px solid rgba(184,148,79,0.1);
}
.founding-business-inner { max-width: 760px; margin: 0 auto; }
.founding-business-section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--stone);
}
.founding-business-section p {
  text-align: center;
  color: var(--charcoal);
  opacity: 0.8;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.founding-business-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.founding-business-perk {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.perk-icon { font-size: 1.8rem; }
.founding-business-perk strong {
  font-size: 0.9rem;
  color: var(--stone);
  font-weight: 600;
}
.founding-business-perk span {
  font-size: 0.8rem;
  color: var(--charcoal);
  opacity: 0.7;
}
.founding-business-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 1.5rem;
}

/* Wall teaser */
.founding-wall-teaser {
  background: linear-gradient(135deg, rgba(184,148,79,0.08) 0%, rgba(184,148,79,0.03) 100%);
  border-top: 1px solid rgba(184,148,79,0.15);
  padding: 5rem 2rem;
  text-align: center;
}
.founding-wall-inner { max-width: 480px; margin: 0 auto; }
.founding-wall-emoji { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.founding-wall-teaser h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--stone);
  margin-bottom: 0.5rem;
}
.founding-wall-teaser p {
  color: var(--charcoal);
  opacity: 0.7;
  margin-bottom: 2rem;
}
.btn-founders-wall {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--stone);
  color: var(--warm-cream);
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.btn-founders-wall:hover { background: var(--charcoal); }

/* Founders Wall page */
.founders-wall-page { background: var(--warm-cream); }
.wall-hero {
  background: var(--stone);
  color: var(--warm-cream);
  padding: 7rem 2rem 5rem;
  text-align: center;
}
.wall-hero-inner { max-width: 580px; margin: 0 auto; }
.wall-hero-label { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.wall-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--warm-cream);
  margin-bottom: 1rem;
}
.wall-hero-sub {
  color: rgba(245,240,232,0.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.wall-hero-location {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.wall-content-section { padding: 4rem 2rem; }
.wall-content-inner { max-width: 860px; margin: 0 auto; }
.wall-intro {
  text-align: center;
  font-size: 0.85rem;
  color: var(--charcoal);
  opacity: 0.6;
  margin-bottom: 3rem;
}
.wall-empty {
  text-align: center;
  padding: 4rem 2rem;
}
.wall-empty-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.wall-empty h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--stone);
  margin-bottom: 0.5rem;
}
.wall-empty p { color: var(--charcoal); opacity: 0.7; margin-bottom: 2rem; }
.btn-become-founding {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--stone);
  color: var(--warm-cream);
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-become-founding:hover { background: var(--charcoal); }
.wall-tier-section { margin-bottom: 3.5rem; }
.wall-tier-header { margin-bottom: 1.5rem; text-align: center; }
.wall-tier-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--stone);
  margin-bottom: 0.3rem;
}
.wall-tier-desc {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
}
.wall-donors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.wall-donor-card {
  background: #fff;
  border: 1px solid rgba(184,148,79,0.25);
  border-radius: 2px;
  padding: 0.6rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 120px;
  transition: border-color 0.2s;
}
.wall-donor-card:hover { border-color: var(--gold); }
.wall-donor-name { font-size: 0.88rem; font-weight: 600; color: var(--stone); }
.wall-donor-business { font-size: 0.7rem; color: var(--charcoal); opacity: 0.6; font-weight: 400; }
.wall-cta-section {
  background: linear-gradient(135deg, rgba(184,148,79,0.08) 0%, rgba(184,148,79,0.03) 100%);
  border-top: 1px solid rgba(184,148,79,0.15);
  padding: 5rem 2rem;
  text-align: center;
}
.wall-cta-inner { max-width: 480px; margin: 0 auto; }
.wall-cta-inner h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--stone);
  margin-bottom: 0.5rem;
}
.wall-cta-inner p { color: var(--charcoal); opacity: 0.7; margin-bottom: 2rem; }

/* Founding Success page */
.founding-success-page { background: var(--warm-cream); min-height: 70vh; }
.founding-success-section { padding: 8rem 2rem 5rem; }
.founding-success-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.founding-success-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.founding-success-icon.pending { color: var(--gold); opacity: 0.5; }
.founding-success-inner h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--stone);
  margin-bottom: 1rem;
}
.founding-success-message {
  font-size: 1.05rem;
  color: var(--charcoal);
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.founding-success-next { font-size: 0.9rem; color: var(--charcoal); opacity: 0.7; margin-bottom: 2rem; }
.founding-success-next a { color: var(--gold); text-decoration: underline; }
.founding-success-note { font-size: 0.85rem; color: var(--charcoal); opacity: 0.6; margin-bottom: 2rem; }
.founding-success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-founders-wall-success {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--stone);
  color: var(--warm-cream);
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-founders-wall-success:hover { background: var(--charcoal); }
.btn-founders-home {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: transparent;
  color: var(--stone);
  border: 1.5px solid rgba(184,148,79,0.4);
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: border-color 0.2s;
}
.btn-founders-home:hover { border-color: var(--gold); }

/* Responsive */
@media (max-width: 1024px) {
  .founding-tiers-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .founding-tiers-grid { grid-template-columns: repeat(2, 1fr); }
  .founding-business-perks { grid-template-columns: 1fr; gap: 1.5rem; }
  .founding-thermometer-wrap { overflow-x: auto; }
  .founding-thermometer { min-width: 500px; }
  .founding-form-inner { padding: 1.5rem; }
}
@media (max-width: 480px) {
  .founding-tiers-grid { grid-template-columns: 1fr; }
  .milestone-label-wrap { display: none; }
  .founding-form-inner { padding: 1.2rem; }
}