/** Shopify CDN: Minification failed

Line 123:10 Unexpected "{"
Line 123:19 Expected ":"
Line 124:14 Expected identifier but found whitespace
Line 124:16 Unexpected "{"
Line 124:25 Expected ":"
Line 124:76 Expected ":"
Line 125:17 Expected identifier but found whitespace
Line 125:19 Unexpected "{"
Line 125:28 Expected ":"
Line 125:82 Expected ":"
... and 10 more hidden warnings

**/
/* Myter & Fakta - Sektion */

.myths-facts-section {
  padding: 60px 0;
  /* Din färg här - ändra till er specifika färg */
  background-color: #f0f7ff; /* Ljusblå exempel - ändra till er färg */
  /* Eller använd: background-color: rgba(var(--color-accent), 0.1); */
}

.myths-facts__heading {
  text-align: center;
  margin-bottom: 10px;
  margin-top: 0;
  font-size: 2.4rem;
  font-weight: 600;
  width: 100%;
}

.myths-facts__subheading {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 0;
  color: rgba(var(--color-foreground), 0.7);
  font-size: 1.6rem;
  width: 100%;
}

/* Container för att centrera innehåll */
.myths-facts__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Grid layout - 2 kolumner på desktop, 1 på mobil */
.myths-facts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Varje myt/fakta-kort */
.myths-facts__item {
  background: rgba(255, 255, 255, 0.9); /* Vit bakgrund på korten */
  border-radius: 12px;
  padding: 25px;
  border: 1px solid rgba(var(--color-foreground), 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.myths-facts__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Etiketter (MYTH / FACT) */
.myths-facts__label {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.myths-facts__label--myth {
  background: #fee2e2;
  color: #dc2626;
}

.myths-facts__label--fact {
  background: #d1fae5;
  color: #059669;
}

/* Myten (frågan) */
.myths-facts__myth {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(var(--color-foreground), 0.15);
}

.myths-facts__question {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgb(var(--color-foreground));
}

/* Fakta (svaret) */
.myths-facts__fact {
  margin-top: 15px;
}

.myths-facts__answer {
  margin: 10px 0 0 0;
  font-size: 1.4rem;
  line-height: 1.6;
  color: rgba(var(--color-foreground), 0.85);
}

/* Padding inställningar */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}

@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}

/* Mobilanpassning */
@media screen and (max-width: 749px) {
  .myths-facts-section {
    padding: 40px 0;
  }
  
  .myths-facts__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .myths-facts__heading {
    font-size: 1.8rem;
  }
  
  .myths-facts__subheading {
    margin-bottom: 30px;
    font-size: 1.4rem;
  }
  
  .myths-facts__item {
    padding: 20px;
  }
  
  .myths-facts__question {
    font-size: 1.3rem;
  }
  
  .myths-facts__answer {
    font-size: 1.3rem;
  }
}