/* ============================================
   STEP 3 REDESIGN - LID ATTACHMENT & PRECISION
   Modern Sleek Tech Aesthetic - Matching Step 1 & 2
   ============================================ */

/* Step 3 Container - Uses technology-style background from section-transitions.css */
.snap-page.step3a {
  background: transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: clamp(3rem, 6vh, 5rem) clamp(1.5rem, 5vw, 6rem);
  min-height: 100vh;
  gap: .5rem;
}

/* Background handled by section-transitions.css */

/* ============================================
   HEADER SECTION
   ============================================ */

.step3-modern-header {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 1300px;
  animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Orange Accent Line */
.step3-accent-line {
  width: clamp(60px, 8vw, 120px);
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    #ff6b00 30%,
    #ff8c00 50%,
    #ff6b00 70%,
    transparent 100%);
  margin: 0 auto clamp(1.5rem, 3vh, 2.5rem);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.6),
              0 0 40px rgba(255, 107, 0, 0.3);
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    opacity: 0.8;
    filter: brightness(1.3);
  }
}

/* Main Title */
.step3-main-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: #ff6b00;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(255, 107, 0, 0.3);
  animation: titleFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes titleFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ============================================
   BEFORE/AFTER SECTION
   ============================================ */

.step3-before-after-section {
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 1;
  animation: sectionFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

@keyframes sectionFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step3-before-after-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

/* State Card */
.step3-state-card {
  position: relative;
}

/* State Label */
.step3-state-label {
  font-family: 'Orbitron', monospace;
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff6b00;
  text-align: center;
  margin-bottom: clamp(1rem, 2vh, 1.5rem);
  text-shadow: 0 2px 4px rgba(255, 107, 0, 0.3);
}

/* Image Box */
.step3-image-box {
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 2px solid rgba(255, 107, 0, 0.2);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(255, 107, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.step3-image-box:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(255, 107, 0, 0.25);
}

/* Before Box Animation */
.step3-before-box {
  position: relative;
  min-height: 300px;
}

.step3-top-float {
  animation: floatLid 3s ease-in-out infinite;
}

@keyframes floatLid {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.step3-floating-lid,
.step3-bottom-part,
.step3-before-after-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Arrow Divider */
.step3-arrow-divider {
  width: 60px;
  height: 60px;
  position: relative;
}

.step3-arrow-divider::before {
  content: '→';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: #ff6b00;
  font-weight: bold;
  text-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* ============================================
   COMBINED ASSEMBLY & PRECISION SECTION
   ============================================ */

.step3-combined-section {
  width: 100%;
  max-width: 1300px;
  position: relative;
  z-index: 1;
  border-radius: 24px;
  animation: sectionFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vh, 5rem);
}

.step3-combined-section.details{
    border: 2px solid rgba(255, 107, 0, 0.15);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(255, 107, 0, 0.1);
      padding: clamp(2rem, 4vh, 3rem) clamp(1rem, 3vw, 2rem);
        background: rgba(255, 255, 255, 0.9);


}

/* Assembly Content */
.step3-assembly-content {
  text-align: center;
}

/* Results Content */
.step3-results-content {
  text-align: center;
}

/* Section Title */
.step3-section-title {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff6b00;
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
  text-shadow: 0 2px 4px rgba(255, 107, 0, 0.2);
}

/* Component Flow */
.step3-component-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
}

/* Component Item */
.step3-component-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2vh, 1.5rem);
  animation: componentSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.step3-component-item.video-item{
  width:75%;
}

.step3-component-item:nth-child(1) { animation-delay: 0.7s; }
.step3-component-item:nth-child(3) { animation-delay: 0.8s; }
.step3-component-item:nth-child(5) { animation-delay: 0.9s; }

@keyframes componentSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Component Box - Simplified, No Border */
.step3-component-box {
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step3-component-box:hover {
  transform: scale(1.08);
}

.step3-component-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  transition: filter 0.3s ease;
}

/* Make clickable videos show pointer cursor */
.step3-component-img.step2-video {
  cursor: pointer;
}

.step3-component-img.step2-video:hover {
  filter: drop-shadow(0 8px 24px rgba(255, 107, 0, 0.4));
  transform: scale(1.02);
}

.step3-component-box:hover .step3-component-img {
  filter: drop-shadow(0 8px 24px rgba(255, 107, 0, 0.3));
}

/* Video Link Wrapper - Remove default link styling */
.step3-video-link {
  text-decoration: none;
  color: inherit;
  display: contents;
}

.step3-video-link:hover {
  text-decoration: none;
  color: inherit;
}

/* Component Label */
.step3-component-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b00;
  text-align: center;
  min-height: clamp(100px, 4vw, 3rem);
}

/* Operator Symbol */
.step3-operator-symbol {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  color: #ff8c00;
  text-shadow: 0 2px 4px rgba(255, 107, 0, 0.3);
}

/* Badge - Success Green */
.step3-badge {
  margin:0 7rem;
  display: inline-block;
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #007142;
  background: linear-gradient(90deg,
    rgba(0, 217, 126, 0.18) 0%,
    rgba(34, 197, 94, 0.28) 100%);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(0, 217, 126, 0.4);
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
  box-shadow:
    0 0 25px rgba(0, 217, 126, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow:
      0 0 25px rgba(0, 217, 126, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
  50% {
    box-shadow:
      0 0 35px rgba(0, 217, 126, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

/* Results Title */
.step3-results-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: #ff6b00;
  line-height: 1.4;
  margin: 0 0 clamp(1.5rem, 3vh, 2rem);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Description Paragraph */
.step3-description {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: #444;
  line-height: 1.7;
  margin: 0 auto clamp(2rem, 4vh, 3rem);
  max-width: 900px;
  text-align: left;
}

/* Section Heading */
.step3-section-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: #ff6b00;
  margin: clamp(2rem, 4vh, 3rem) 0 clamp(1.5rem, 3vh, 2rem);
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Features List */
.step3-features-list {
  max-width: 900px;
  margin: 0 auto clamp(2rem, 4vh, 3rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vh, 2rem);
}

/* Feature Item */
.step3-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

/* Feature Bullet */
.step3-feature-bullet {
  width: 10px;
  height: 10px;
  min-width: 10px;
  background: #ff6b00;
  border-radius: 50%;
  margin-top: 0.5rem;
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.4);
}

/* Feature Content */
.step3-feature-content {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: #444;
  line-height: 1.7;
}

.step3-feature-label strong{
  color:#ff6b00 !important;
  font-size: 1.5rem;
}

.step3-feature-content strong {
  color: #2a2a2a;
  font-weight: 600;
}

/* Sub List */
.step3-sub-list {
  margin-top: 1rem;
  margin-left: 1.5rem;
  list-style: none;
  padding: 0;
}

.step3-sub-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
}

.step3-sub-list li::before {
  content: '◦';
  position: absolute;
  left: 0;
  color: #ff6b00;
  font-size: 1.2rem;
}

/* Animation Container */
.step3-animation-container {
  margin: clamp(2rem, 4vh, 3rem) auto 0;
  max-width: 600px;
  text-align: center;
}

.step3-animation {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 107, 0, 0.2);
}

/* Precision Stats */
.step3-precision-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vh, 3rem);
}

/* Stat Card - Orange Border with Green Icons */
.step3-stat-card {
  background: #ffffff;
  border-radius: 16px;
  padding: clamp(1.8rem, 3vw, 2.5rem);
  border: 2px solid rgba(255, 107, 0, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: statSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.step3-stat-card:nth-child(1) { animation-delay: 0.9s; }
.step3-stat-card:nth-child(2) { animation-delay: 1.0s; }
.step3-stat-card:nth-child(3) { animation-delay: 1.1s; }

@keyframes statSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step3-stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 0, 0.5);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(255, 107, 0, 0.25);
}

/* Stat Icon - Orange */
.step3-stat-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto clamp(1rem, 2vh, 1.5rem);
  background: linear-gradient(135deg,
    rgba(255, 107, 53, 0.25) 0%,
    rgba(247, 147, 30, 0.35) 100%);
  border-radius: 12px;
  border: 2px solid rgba(255, 107, 53, 0.5);
  position: relative;
  box-shadow:
    0 0 25px rgba(255, 107, 53, 0.4),
    inset 0 0 10px rgba(255, 107, 53, 0.15);
  transition: all 0.4s ease;
}

.step3-stat-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, #ff6b35 0%, transparent 70%);
  border-radius: 50%;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.step3-stat-card:hover .step3-stat-icon {
  transform: scale(1.1) rotateZ(5deg);
  border-color: rgba(255, 107, 53, 0.8);
  box-shadow:
    0 0 35px rgba(255, 107, 53, 0.6),
    inset 0 0 15px rgba(255, 107, 53, 0.25);
}

/* Stat Value - Dark Gray */
.step3-stat-value {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: clamp(0.5rem, 1vh, 0.75rem);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Stat Label */
.step3-stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #555;
  line-height: 1.4;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 968px) {
  .step3-before-after-grid {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .step3-arrow-divider {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .step3-component-flow {
    flex-direction: column;
  }

  .step3-operator-symbol {
    transform: rotate(90deg);
  }
}

@media (max-width: 480px) {
  .step3-main-title {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }

  .step3-results-title {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }
}

/* ============================================
   PRECISION PASSIVE ALIGNMENT - MODERN REDESIGN
   Clean, Visual-First Dashboard Aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

.precision-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2rem, 4vh, 3rem) clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Header */
.precision-header {
  text-align: center;
}

.precision-accent {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b00, #ff9500);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.precision-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #ff6b00;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.precision-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: #666;
  margin: 0;
  letter-spacing: 0.02em;
}

/* Intro Card */
.precision-intro-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(255, 149, 0, 0.04) 100%);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 16px;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.precision-intro-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.3);
}

.precision-intro-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
}

.precision-intro-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 400;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.precision-intro-text strong {
  font-weight: 600;
  color: #ff6b00;
}

/* Metrics Grid */
.precision-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 700px;
  margin: 0 auto;
}

.precision-metric-card {
  background: white;
  border: 2px solid rgba(255, 107, 0, 0.15);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.precision-metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b00, #ff9500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.precision-metric-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow: 0 16px 40px rgba(255, 107, 0, 0.15);
}

.precision-metric-card:hover::before {
  transform: scaleX(1);
}

.metric-value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: #ff6b00;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.metric-label {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.metric-desc {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  font-weight: 400;
  color: #888;
}

/* Features Row */
.precision-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.precision-feature-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  text-align: center;
  transition: all 0.3s ease;
}

.precision-feature-card:hover {
  border-color: rgba(255, 107, 0, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.precision-feature-card:hover .feature-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
}

.precision-feature-card:hover .feature-icon svg {
  stroke: white;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ff6b00;
  transition: stroke 0.3s ease;
}

.feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
}

.feature-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  font-weight: 400;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .precision-features-row {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .precision-metrics-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .precision-intro-card {
    flex-direction: column;
    text-align: center;
  }

  .metric-value {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}
