/* =========================================================================
   BATTERY MANUFACTURERS DEEP-TECH MICROSITE STYLES
   ========================================================================= */

@import url('../styles.css');

:root {
  --mfg-bg: #050507;
  --mfg-bg-alt: #0a0a0e;
  --mfg-surface: #121218;
  --mfg-surface-hover: #1c1c24;
  --mfg-text: #e0e0e0;
  --mfg-text-muted: #8d8d9c;
  --mfg-border: #1f1f2a;
  
  --mfg-accent-blue: #3b82f6;
  --mfg-accent-thermal: #E8512D; /* Levron brand thermal amber */
  --mfg-accent-thermal-glow: rgba(232, 81, 45, 0.15);
  --mfg-accent-blue-glow: rgba(59, 130, 246, 0.15);
  
  --mfg-radius: 8px;
  --mfg-radius-lg: 16px;
  
  --mfg-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  background-color: var(--mfg-bg);
  color: var(--mfg-text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

/* Typography Overrides */
.heading-lg {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.heading-lg em {
  font-style: normal;
  color: var(--mfg-accent-thermal);
}

.text-gradient {
  background: linear-gradient(135deg, #fff 0%, #8d8d9c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================================================================
   1. HERO SECTION
   ========================================================================= */
.mfg-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--mfg-border);
}

.mfg-hero__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.mfg-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: luminosity;
  filter: contrast(1.2) brightness(0.8);
}

.mfg-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5,5,7,0.95) 0%, rgba(5,5,7,0.7) 40%, rgba(5,5,7,0.4) 100%);
}

.mfg-hero__grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
  z-index: 1;
}

.mfg-hero__glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle at center, var(--mfg-accent-thermal-glow) 0%, transparent 70%);
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.mfg-hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.mfg-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mfg-text);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.mfg-hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--mfg-accent-blue);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--mfg-accent-blue);
}

.mfg-hero__title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.mfg-hero__subtitle {
  font-size: 1.25rem;
  color: var(--mfg-text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}

.mfg-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.mfg-hero__specs-strip {
  margin-top: 64px;
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--mfg-border);
}

.mfg-hero__spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mfg-hero__spec-val {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.mfg-hero__spec-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mfg-text-muted);
}

/* =========================================================================
   2. STICKY NAV
   ========================================================================= */
.mfg-sticky-nav {
  position: sticky;
  top: 70px; /* Below main header */
  background: rgba(5, 5, 7, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mfg-border);
  z-index: 90;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}
.mfg-sticky-nav::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.mfg-sticky-nav__inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  white-space: nowrap;
}

.mfg-sticky-nav__link {
  color: var(--mfg-text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 16px 20px;
  border-bottom: 2px solid transparent;
  transition: var(--mfg-transition);
}

.mfg-sticky-nav__link:hover,
.mfg-sticky-nav__link.active {
  color: #fff;
  border-bottom-color: var(--mfg-accent-thermal);
}

/* =========================================================================
   SECTIONS GENERAL
   ========================================================================= */
.mfg-section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.mfg-section--alt {
  background: var(--mfg-bg-alt);
  border-top: 1px solid var(--mfg-border);
  border-bottom: 1px solid var(--mfg-border);
}

.mfg-label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mfg-accent-blue);
  margin-bottom: 16px;
  font-weight: 600;
}

.mfg-label.thermal {
  color: var(--mfg-accent-thermal);
}

.mfg-section-header {
  max-width: 800px;
  margin-bottom: 80px;
}

.mfg-section-header.center {
  margin: 0 auto 80px;
  text-align: center;
}

/* =========================================================================
   3. MANUFACTURER CHALLENGES
   ========================================================================= */
.mfg-challenges__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mfg-ch-infographic {
  background: var(--mfg-surface);
  border: 1px solid var(--mfg-border);
  border-radius: var(--mfg-radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.mfg-ch-nodes {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mfg-ch-node {
  background: var(--mfg-bg);
  border: 1px solid var(--mfg-border);
  border-left: 3px solid var(--mfg-accent-thermal);
  padding: 24px;
  border-radius: var(--mfg-radius);
  transition: var(--mfg-transition);
}
.mfg-ch-node:hover {
  transform: translateX(10px);
  border-color: var(--mfg-accent-thermal);
}

.mfg-ch-node h4 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.mfg-ch-node p {
  font-size: 0.9rem;
  color: var(--mfg-text-muted);
  margin: 0;
}

/* =========================================================================
   4. SAFETY & VALIDATION
   ========================================================================= */
.mfg-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.mfg-flow-card {
  background: var(--mfg-surface);
  border: 1px solid var(--mfg-border);
  border-radius: var(--mfg-radius-lg);
  padding: 32px;
  position: relative;
  z-index: 1;
}
.mfg-flow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(232,81,45,0.05), transparent 70%);
  border-radius: var(--mfg-radius-lg);
  z-index: -1;
}

.mfg-flow-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--mfg-accent-thermal);
}

.mfg-flow-card h3 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 1.25rem;
}

/* =========================================================================
   5. WHY THIN MATTERS (CSS Stackup Visual)
   ========================================================================= */
.mfg-thin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mfg-stackup {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--mfg-border);
  padding: 40px;
  border-radius: var(--mfg-radius-lg);
  background: var(--mfg-surface);
  position: relative;
}

.mfg-stack-layer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  border-radius: var(--mfg-radius);
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  color: #fff;
  transition: var(--mfg-transition);
}

.layer-cell {
  background: linear-gradient(90deg, #1f1f2a, #2a2a35, #1f1f2a);
  border: 1px solid #3f3f4a;
}
.layer-aerogel {
  height: 12px; /* Very thin */
  background: linear-gradient(90deg, #E8512D, #ff7a59);
  box-shadow: 0 0 20px rgba(232,81,45,0.3);
  border-radius: 4px;
}
.layer-module {
  background: linear-gradient(90deg, #0f172a, #1e293b, #0f172a);
  border: 1px solid #334155;
  height: 80px;
}

.mfg-stack-label {
  position: absolute;
  right: -20px;
  background: var(--mfg-accent-blue);
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: translateY(-50%);
}

/* =========================================================================
   6. STRATEGY ACROSS LEVELS
   ========================================================================= */
.mfg-arch-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  justify-content: center;
}

.mfg-arch-tab {
  padding: 12px 32px;
  background: var(--mfg-surface);
  border: 1px solid var(--mfg-border);
  color: var(--mfg-text-muted);
  border-radius: 100px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--mfg-transition);
}
.mfg-arch-tab.active,
.mfg-arch-tab:hover {
  background: #fff;
  color: #000;
}

.mfg-arch-panels {
  background: var(--mfg-surface);
  border: 1px solid var(--mfg-border);
  border-radius: var(--mfg-radius-lg);
  overflow: hidden;
}

.mfg-arch-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.mfg-arch-panel.active {
  display: grid;
}

.mfg-arch-panel-content {
  padding: 64px;
}

.mfg-arch-panel-visual {
  background: #000;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-left: 1px solid var(--mfg-border);
}
.mfg-arch-panel-visual img {
  max-width: 80%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* =========================================================================
   7. PRODUCT FIT
   ========================================================================= */
.mfg-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mfg-fit-card {
  background: var(--mfg-surface);
  border: 1px solid var(--mfg-border);
  border-radius: var(--mfg-radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: var(--mfg-transition);
}
.mfg-fit-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-5px);
}

.mfg-fit-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mfg-text);
  margin-bottom: 24px;
  align-self: flex-start;
}

.mfg-fit-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.mfg-fit-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex-grow: 1;
}

.mfg-fit-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--mfg-text-muted);
  font-size: 0.95rem;
}
.mfg-fit-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--mfg-accent-thermal);
}

.mfg-fit-card .btn {
  margin-top: auto;
}

/* =========================================================================
   8. PERFORMANCE HIGHLIGHTS
   ========================================================================= */
.mfg-metrics-dash {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .mfg-metrics-dash {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .mfg-metrics-dash {
    grid-template-columns: 1fr;
  }
}

.mfg-metric {
  background: var(--mfg-surface);
  border: 1px solid var(--mfg-border);
  border-radius: var(--mfg-radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.mfg-metric::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--mfg-accent-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.mfg-metric:hover::after {
  transform: scaleX(1);
}
.mfg-metric.thermal::after {
  background: var(--mfg-accent-thermal);
}

.mfg-metric-val {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 16px;
}
.mfg-metric-val span {
  font-size: 1rem;
  color: var(--mfg-text-muted);
  font-weight: 400;
}

.mfg-metric-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mfg-text);
  font-weight: 600;
  margin-bottom: 8px;
}

.mfg-metric-desc {
  font-size: 0.85rem;
  color: var(--mfg-text-muted);
}

/* =========================================================================
   9. COMPARISON
   ========================================================================= */
.mfg-comp-table-wrap {
  overflow-x: auto;
  border-radius: var(--mfg-radius-lg);
  border: 1px solid var(--mfg-border);
  background: var(--mfg-surface);
}

.mfg-comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.mfg-comp-table th, 
.mfg-comp-table td {
  padding: 24px;
  border-bottom: 1px solid var(--mfg-border);
}

.mfg-comp-table th {
  background: rgba(0,0,0,0.2);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  font-weight: 600;
}

.mfg-comp-table tr:last-child td {
  border-bottom: none;
}

.mfg-comp-table td:first-child {
  font-weight: 600;
  color: #fff;
}

.mfg-comp-table td {
  color: var(--mfg-text-muted);
}

.td-levron {
  background: rgba(232, 81, 45, 0.05);
  color: var(--mfg-accent-thermal) !important;
  font-weight: 600;
}

/* =========================================================================
   10. SCIENCE TO VALUE
   ========================================================================= */
.mfg-science-flow {
  display: flex;
  align-items: stretch;
  gap: 2px;
  background: var(--mfg-border);
  border: 1px solid var(--mfg-border);
  border-radius: var(--mfg-radius-lg);
  overflow: hidden;
}

.mfg-sf-col {
  flex: 1;
  background: var(--mfg-surface);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.mfg-sf-col h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--mfg-border);
}

.mfg-sf-item {
  margin-bottom: 24px;
}
.mfg-sf-item h4 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1rem;
}
.mfg-sf-item p {
  color: var(--mfg-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* =========================================================================
   11. COLLABORATION MODEL
   ========================================================================= */
.mfg-collab-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mfg-c-step {
  padding: 32px;
  background: var(--mfg-surface);
  border: 1px solid var(--mfg-border);
  border-radius: var(--mfg-radius-lg);
  position: relative;
}

.mfg-c-step::after {
  content: '→';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mfg-border);
  font-size: 2rem;
  z-index: 2;
}
.mfg-c-step:last-child::after {
  display: none;
}

.mfg-c-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  margin-bottom: -16px;
  position: relative;
  z-index: 0;
}

.mfg-c-content {
  position: relative;
  z-index: 1;
}

.mfg-c-content h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.mfg-c-content p {
  font-size: 0.9rem;
  color: var(--mfg-text-muted);
  margin: 0;
}

/* =========================================================================
   12. APPLICATION LANDSCAPE
   ========================================================================= */
.mfg-landscape-map {
  position: relative;
  border-radius: var(--mfg-radius-lg);
  border: 1px solid var(--mfg-border);
  overflow: hidden;
  height: 600px;
  background: #000; /* Will place an image or CSS gradient here */
}

.mfg-landscape-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.mfg-lm-hotspot {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--mfg-accent-thermal);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 10px rgba(232,81,45,0.2);
  transition: var(--mfg-transition);
}
.mfg-lm-hotspot:hover {
  transform: scale(1.2);
  box-shadow: 0 0 0 15px rgba(232,81,45,0.3);
}

.mfg-lm-card {
  position: absolute;
  background: rgba(18,18,24,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
  border-radius: var(--mfg-radius);
  width: 300px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--mfg-transition);
}

.mfg-lm-hotspot:hover .mfg-lm-card {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Positions for hotspots */
.hs-1 { top: 30%; left: 20%; }
.hs-1 .mfg-lm-card { top: 30px; left: 0; }
.hs-2 { top: 60%; left: 50%; }
.hs-2 .mfg-lm-card { bottom: 30px; left: -130px; }
.hs-3 { top: 40%; left: 80%; }
.hs-3 .mfg-lm-card { top: 30px; right: 0; }

/* =========================================================================
   13. WHY LEVRON
   ========================================================================= */
.mfg-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mfg-trust-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mfg-trust-item {
  display: flex;
  gap: 24px;
}

.mfg-trust-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: var(--mfg-bg);
  border: 1px solid var(--mfg-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mfg-accent-blue);
}

.mfg-trust-text h4 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.mfg-trust-text p {
  color: var(--mfg-text-muted);
  margin: 0;
}

.mfg-trust-img img {
  width: 100%;
  border-radius: var(--mfg-radius-lg);
  border: 1px solid var(--mfg-border);
}

/* =========================================================================
   14. RESOURCES
   ========================================================================= */
.mfg-resources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mfg-resource-card {
  display: flex;
  flex-direction: column;
  background: var(--mfg-surface);
  border: 1px solid var(--mfg-border);
  border-radius: var(--mfg-radius-lg);
  padding: 32px;
  text-decoration: none;
  transition: var(--mfg-transition);
}
.mfg-resource-card:hover {
  background: var(--mfg-surface-hover);
  border-color: rgba(255,255,255,0.2);
}

.mfg-rc-type {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mfg-text-muted);
  margin-bottom: 16px;
}

.mfg-rc-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.mfg-rc-action {
  margin-top: auto;
  color: var(--mfg-accent-blue);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* =========================================================================
   15. FINAL CTA
   ========================================================================= */
.mfg-cta-block {
  text-align: center;
  padding: 120px 24px;
  background: linear-gradient(180deg, var(--mfg-bg) 0%, #121216 100%);
  border-top: 1px solid var(--mfg-border);
}

.mfg-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.mfg-cta-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* Additions for reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .mfg-challenges__grid,
  .mfg-thin-grid,
  .mfg-arch-panel,
  .mfg-science-flow,
  .mfg-trust-grid {
    grid-template-columns: 1fr;
  }
  
  .mfg-flow,
  .mfg-fit-grid,
  .mfg-resources {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mfg-collab-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mfg-c-step::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .mfg-hero__title {
    font-size: 2.5rem;
  }
  .mfg-hero__specs-strip {
    flex-direction: column;
    gap: 16px;
  }
  .mfg-flow,
  .mfg-fit-grid,
  .mfg-collab-steps,
  .mfg-resources {
    grid-template-columns: 1fr;
  }
  .mfg-arch-panel-content {
    padding: 32px;
  }
}
