@charset "UTF-8";
/* ============================================
   Om oss – sidlayout & sektioner
   Specifik för /om-oss/
============================================ */
.page-section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .page-section {
    padding: 5rem 0;
  }
}

/* --------- Översikt / intro --------- */
.about-layout {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 960px) {
  .about-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    align-items: flex-start;
  }
}

.about-text h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.about-text p {
  margin: 0 0 1rem;
  color: #4b5563;
}

/* Högerkolumn med highlight + stats */
.about-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-highlight {
  background: #f9fafb;
  border-radius: 14px;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.about-highlight h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}
.about-highlight ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-highlight ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  color: #374151;
}
.about-highlight ul li:before {
  content: "•";
  color: #1e4bb8;
  margin-top: 0.1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 640px) {
  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.stat {
  background: #ffffff;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.stat-number {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1e4bb8;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: #4b5563;
}

/* --------- Våra värderingar --------- */
.about-values .section-header p {
  max-width: 620px;
}

.values-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.value-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.6rem 1.7rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
  border: 1px solid rgba(15, 23, 42, 0.04);
}
.value-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.value-card p {
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
}

/* --------- Så arbetar vi --------- */
.about-approach .approach-layout {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 960px) {
  .about-approach .approach-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  }
}

.approach-text p {
  color: #4b5563;
  margin-bottom: 1rem;
}

.approach-steps {
  display: grid;
  gap: 1.2rem;
}

.approach-steps .step {
  background: #f9fafb;
  border-radius: 14px;
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.approach-steps .step h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}
.approach-steps .step p {
  margin: 0;
  color: #4b5563;
  font-size: 0.94rem;
}

/* --------- Grundare / citat --------- */
.founder-layout {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .founder-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
    align-items: center;
  }
}

.founder-text p {
  color: #4b5563;
  margin-bottom: 1rem;
}

.founder-quote {
  background: #111827;
  color: #ffffff;
  border-radius: 16px;
  padding: 2rem 2.2rem;
  position: relative;
  overflow: hidden;
}

.founder-quote::before {
  content: "“";
  position: absolute;
  font-size: 6rem;
  line-height: 1;
  opacity: 0.08;
  top: -1.5rem;
  left: 1.2rem;
}

.founder-quote .quote-text {
  margin: 0 0 1.2rem;
  font-size: 1.05rem;
}

.founder-quote .quote-name {
  margin: 0;
  font-weight: 600;
}

.founder-quote .quote-role {
  margin: 0.1rem 0 0;
  font-size: 0.9rem;
  opacity: 0.85;
}

/*# sourceMappingURL=om-oss.css.map */
