/* ========================================
   MANWELL - Digital Forge for Modern Masculinity
   Brand Colors: Navy Blue (#1a3a52), Teal (#4a9b8e), Light Gray (#f8f9fa)
   Typography: Inter (sans-serif) - Modern minimalist approach
   ======================================== */

/* ========== GLOBAL RESET & TYPOGRAPHY ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #2c3e50;
  line-height: 1.7;
  letter-spacing: 0.2px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.25;
  color: #1a3a52;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #4a5568;
  line-height: 1.8;
}

a {
  color: #4a9b8e;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #1a3a52;
  text-decoration: underline;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  padding: 1rem 2rem;
  border-bottom: 1px solid #e8f0f5;
  box-shadow: 0 2px 8px rgba(26, 58, 82, 0.08);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #1a3a52;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  font-size: 0.95rem;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  color: #4a5568;
  position: relative;
  padding-bottom: 0.25rem;
  font-weight: 500;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #4a9b8e;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #1a3a52;
}

nav a:hover::after {
  width: 100%;
}

/* Mobile menu toggle (hidden by default) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 70px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f7fb 100%);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(240, 247, 251, 0.5));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeInUp 1.5s ease-out;
}

.hero-headline {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(26, 58, 82, 0.1);
  letter-spacing: -1px;
}

.hero-subheading {
  font-size: 1.3rem;
  color: #4a9b8e;
  font-family: 'Inter', sans-serif;
  margin-bottom: 3rem;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(26, 58, 82, 0.05);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #4a9b8e;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  border: 2px solid #4a9b8e;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: 'Inter', sans-serif;
  border-radius: 4px;
}

.cta-button:hover {
  background-color: #1a3a52;
  border-color: #1a3a52;
  box-shadow: 0 8px 20px rgba(74, 155, 142, 0.2);
  transform: translateY(-2px);
}

/* ========== TRIPTYCH SECTION ========== */
.triptych {
  background-color: #ffffff;
  padding: 6rem 2rem;
  border-top: 1px solid #e8f0f5;
}

.triptych-container {
  max-width: 1200px;
  margin: 0 auto;
}

.triptych-headline {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.triptych-subtext {
  text-align: center;
  color: #8896a6;
  margin-bottom: 4rem;
  font-size: 0.95rem;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  font-weight: 500;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.pillar {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid #e8f0f5;
  transition: all 0.5s ease;
  background: #ffffff;
  border-radius: 8px;
}

.pillar:hover {
  border-color: #4a9b8e;
  background: linear-gradient(135deg, rgba(74, 155, 142, 0.05), rgba(74, 155, 142, 0.02));
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(74, 155, 142, 0.15);
}

.pillar-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.pillar h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.pillar p {
  font-size: 0.95rem;
  color: #6b7a8a;
  line-height: 1.8;
}

.triptych-footer {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #e8f0f5;
  font-size: 1.1rem;
  color: #4a9b8e;
  font-style: italic;
  font-weight: 500;
}

/* ========== VIDEO PORTAL SECTION ========== */
.video-portal {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 6rem 2rem;
  border-top: 1px solid #e8f0f5;
}

.video-container {
  max-width: 1200px;
  margin: 0 auto;
}

.portal-headline {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.portal-subtext {
  text-align: center;
  color: #6b7a8a;
  margin-bottom: 4rem;
  font-size: 1rem;
  font-weight: 500;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border: 1px solid #e8f0f5;
  overflow: hidden;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.4s ease;
  group: video-card;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(26, 58, 82, 0.05);
}

.video-card:hover {
  border-color: #4a9b8e;
  box-shadow: 0 12px 28px rgba(74, 155, 142, 0.15);
  transform: translateY(-8px);
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-theme {
  display: inline-block;
  background-color: #4a9b8e;
  color: #ffffff;
  padding: 0.4rem 0.9rem;
  font-size: 0.75rem;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  font-weight: 700;
  margin-bottom: 1rem;
  border-radius: 3px;
}

.portal-cta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid #4a9b8e;
  border-radius: 50%;
  color: #4a9b8e;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  background: #ffffff;
}

.social-link:hover {
  background-color: #4a9b8e;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(74, 155, 142, 0.3);
}

/* ========== FOOTER ========== */
footer {
  background-color: #1a3a52;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem;
  text-align: center;
}

footer p {
  font-size: 0.95rem;
  color: #b8c5d6;
}

footer strong {
  color: #4a9b8e;
}

/* ========== GENERAL CONTENT SECTIONS ========== */
.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
  border-bottom: 1px solid #e8f0f5;
}

.content-section h2 {
  margin-bottom: 2rem;
}

.content-section p {
  margin-bottom: 1.5rem;
}

/* ========== FORMS ========== */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  color: #2c3e50;
  font-weight: 600;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.85rem;
  border: 1px solid #e8f0f5;
  background-color: #ffffff;
  color: #1a3a52;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-radius: 4px;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #4a9b8e;
  background-color: #f8f9fa;
  box-shadow: 0 0 8px rgba(74, 155, 142, 0.15);
}

.form-confirmation {
  background: linear-gradient(135deg, rgba(74, 155, 142, 0.1), rgba(74, 155, 142, 0.05));
  border: 1px solid rgba(74, 155, 142, 0.3);
  padding: 2rem;
  text-align: center;
  border-radius: 4px;
  animation: fadeInUp 0.8s ease-out;
}

.form-confirmation h3 {
  color: #4a9b8e;
  margin-bottom: 1rem;
}

.form-confirmation p {
  color: #6b7a8a;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========== REVEAL ON SCROLL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  nav ul {
    gap: 1.5rem;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 2rem;
    background: #ffffff;
    padding: 2rem;
    border: 1px solid #e8f0f5;
    display: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(26, 58, 82, 0.1);
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .hero-headline {
    font-size: 1.5rem;
  }

  .hero-subheading {
    font-size: 1rem;
  }

  p {
    font-size: 0.9rem;
  }

  .cta-button {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
  }
}

/* ========== CRISIS RESOURCES SECTION ========== */
.crisis-hero {
  background: linear-gradient(135deg, #1a3a52 0%, #d32f2f 100%);
  min-height: 40vh;
}

.crisis-hero .hero-content h1 {
  color: #ffffff;
  font-size: 2.8rem;
}

.crisis-hero .hero-content .hero-subheading {
  color: #f0f0f0;
  font-size: 1.3rem;
}

.crisis-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.emergency-banner {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(211, 47, 47, 0.3);
}

.emergency-header h2 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.crisis-buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.crisis-action-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  font-weight: 600;
  cursor: pointer;
}

.crisis-action-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
  transform: translateY(-2px);
}

.crisis-action-btn .btn-icon {
  font-size: 2rem;
}

.crisis-action-btn .btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.crisis-action-btn .btn-text small {
  font-size: 0.75rem;
  opacity: 0.9;
  margin-top: 0.2rem;
}

.crisis-note {
  background: #e3f2fd;
  border-left: 4px solid #1976d2;
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 3rem;
  color: #1565c0;
}

.crisis-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.crisis-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crisis-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.crisis-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.crisis-card h3 {
  color: #1a3a52;
  margin-bottom: 0.5rem;
}

.crisis-card .card-subtitle {
  color: #4a9b8e;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.crisis-card p {
  color: #555;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.resource-highlights {
  list-style: none;
  margin-bottom: 1.5rem;
}

.resource-highlights li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
}

.resource-highlights li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4a9b8e;
  font-weight: bold;
}

.resource-link {
  display: inline-block;
  color: #d32f2f;
  text-decoration: none;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  background: #f0f0f0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.resource-link:hover {
  background: #e0e0e0;
  color: #b71c1c;
}

.resources-section {
  margin-bottom: 3rem;
}

.resources-section h2 {
  margin-bottom: 2rem;
  color: #1a3a52;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.resource-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #4a9b8e;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.resource-item h3 {
  font-size: 1.1rem;
  color: #1a3a52;
  margin-bottom: 0.8rem;
}

.resource-item p {
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.btn-link {
  display: inline-block;
  color: #4a9b8e;
  text-decoration: none;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  background: #f0f0f0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  background: #e0e0e0;
  color: #2d6f64;
}

.warning-section {
  margin-bottom: 3rem;
}

.warning-section h2 {
  margin-bottom: 2rem;
  color: #1a3a52;
}

.warning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.warning-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.warning-card:first-child {
  border-top: 4px solid #d32f2f;
}

.warning-card:last-child {
  border-top: 4px solid #4a9b8e;
}

.warning-card h3 {
  margin-bottom: 1.5rem;
  color: #1a3a52;
}

.warning-card ul {
  list-style: none;
  padding-left: 0;
}

.warning-card li {
  padding: 0.7rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
}

.warning-card:first-child li:before {
  content: "⚠️ ";
  position: absolute;
  left: 0;
}

.warning-card:last-child li:before {
  content: "→ ";
  position: absolute;
  left: 0;
  color: #4a9b8e;
  font-weight: bold;
}

.help-others-section {
  margin-bottom: 3rem;
}

.help-others-section h2 {
  margin-bottom: 2rem;
  color: #1a3a52;
}

.help-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.step {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-top: 3.5rem;
}

.step-number {
  position: absolute;
  top: -12px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: #4a9b8e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.step h3 {
  color: #1a3a52;
  margin-bottom: 0.8rem;
}

.step p {
  color: #555;
  line-height: 1.6;
}

.glossary-section {
  margin-bottom: 3rem;
}

.glossary-section h2 {
  margin-bottom: 2rem;
  color: #1a3a52;
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.glossary-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.glossary-item h4 {
  color: #1a3a52;
  margin-bottom: 0.8rem;
}

.glossary-item p {
  color: #555;
  line-height: 1.6;
}

.action-section {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.action-section h2 {
  margin-bottom: 2rem;
  color: #1a3a52;
}

.action-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.action-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 6px;
  border-left: 3px solid #4a9b8e;
}

.action-item h3 {
  color: #1a3a52;
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.action-item p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.crisis-disclaimer {
  background: #fff3e0;
  border-left: 4px solid #ff9800;
  padding: 1.5rem;
  border-radius: 4px;
  color: #e65100;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Crisis Footer Widget */
.crisis-footer-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.widget-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(211, 47, 47, 0.6);
}

.widget-toggle .widget-icon {
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.widget-content {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  min-width: 200px;
  max-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.widget-content.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.widget-content p {
  margin: 0 0 0.8rem 0;
  font-weight: 600;
  color: #1a3a52;
  font-size: 0.9rem;
}

.widget-link {
  display: block;
  padding: 0.6rem 0.8rem;
  margin-bottom: 0.5rem;
  background: #f0f0f0;
  color: #d32f2f;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  transition: all 0.2s ease;
}

.widget-link:hover {
  background: #e0e0e0;
  color: #b71c1c;
}

.widget-link:last-child {
  margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .crisis-buttons-grid {
    grid-template-columns: 1fr;
  }

  .emergency-header h2 {
    font-size: 1.3rem;
  }

  .crisis-resources {
    grid-template-columns: 1fr;
  }

  .warning-grid {
    grid-template-columns: 1fr;
  }

  .widget-toggle {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .widget-content {
    min-width: 180px;
    max-width: 220px;
  }
}
