/* About Page – Design wie about_us_page_tmpl.html (ohne Tailwind) */

.about-main {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    padding: 2rem 1rem 4rem;
    max-width: 1280px;
    margin: 0 auto;
}

/* Hero Section */
.about-hero {
    text-align: center;
    max-width: 896px;
    margin: 0 auto 6rem;
}

.about-hero-title {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

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

.about-hero-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #64748b;
    max-width: 768px;
    margin: 0 auto;
    font-weight: 300;
}

.about-hero-text .about-brand {
    color: #4f46e5;
    font-weight: 500;
}

.about-hero-text a {
    color: inherit;
}

@media (min-width: 768px) {
    .about-hero-text {
        font-size: 1.25rem;
    }
}

/* Highlight Section: Der Mensch vor der Marge */
.about-people-section {
    max-width: 1024px;
    margin: 0 auto 6rem;
    padding: 0 1rem;
}

.about-people-card {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 4px;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-people-card:hover {
    transform: scale(1.01);
}

.about-people-inner {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    
    /* WICHTIG FÜR LINKSBÜNDIGKEIT: */
    display: flex;
    flex-direction: column;
    text-align: left; /* !important überschreibt style.css sicher */
    align-items: flex-start;     /* Zwingt das Icon und Text nach links */
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-people-inner {
        flex-direction: row;
        align-items: flex-start; /* Auch im Querformat links/oben ausrichten */
    }
}

.about-people-blur {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 12rem;
    height: 12rem;
    background: #eef2ff;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.7;
}


@media (min-width: 768px) {
    .about-people-inner {
        flex-direction: row;
        align-items: flex-start;
    }
}

.about-people-icon {
    width: 4rem;
    height: 4rem;
    background: #eef2ff;
    border: 1px solid #e0e7ff;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f46e5;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.about-people-content {
    position: relative;
    z-index: 1;
}

.about-people-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1.25rem;
}

.about-people-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #64748b;
    margin: 0 0 1rem;
}

.about-people-text:last-of-type {
    margin-bottom: 0;
}

.about-people-highlight {
    font-weight: 500;
    color: #4338ca;
    background: #eef2ff;
    padding: 0 0.25rem;
    border-radius: 0.25rem;
}

/* Highlight Section: Ein Wort ist ein Wort (grüne Box) */
.about-word-section {
    max-width: 1024px;
    margin: 6rem auto 6rem;
    padding: 0 1rem;
}

.about-word-card {
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    padding: 4px;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-word-card:hover {
    transform: scale(1.01);
}

.about-word-inner {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-word-inner {
        flex-direction: row;
        align-items: flex-start;
    }
}

.about-word-blur {
    position: absolute;
    top: -2.5rem;
    left: -2.5rem;
    width: 12rem;
    height: 12rem;
    background: #ecfdf5;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.7;
}

.about-word-icon {
    width: 4rem;
    height: 4rem;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.about-word-content {
    position: relative;
    z-index: 1;
}

.about-word-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1.25rem;
}

.about-word-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #64748b;
    margin: 0 0 1rem;
}

.about-word-text:last-of-type {
    margin-bottom: 0;
}

.about-word-highlight {
    font-weight: 500;
    color: #047857;
    background: #ecfdf5;
    padding: 0 0.25rem;
    border-radius: 0.25rem;
}

/* Values Grid */
.about-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex; 
    flex-direction: column;
    text-align: left !important; /* Überschreibt das Center aus main */
    align-items: flex-start;     /* Schiebt das Icon ganz nach links */
}

.about-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.about-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s, color 0.3s;
}

.about-card:hover .about-card-icon {
    color: #fff !important;
}

.about-card-icon--indigo {
    background: #eef2ff;
    color: #4f46e5;
}

.about-card:hover .about-card-icon--indigo {
    background: #4f46e5;
}

.about-card-icon--blue {
    background: #eff6ff;
    color: #2563eb;
}

.about-card:hover .about-card-icon--blue {
    background: #2563eb;
}

.about-card-icon--emerald {
    background: #ecfdf5;
    color: #059669;
}

.about-card:hover .about-card-icon--emerald {
    background: #059669;
}

.about-card-icon--amber {
    background: #fffbeb;
    color: #d97706;
}

.about-card:hover .about-card-icon--amber {
    background: #d97706;
}

.about-card-icon--rose {
    background: #fff1f2;
    color: #e11d48;
}

.about-card:hover .about-card-icon--rose {
    background: #e11d48;
}

.about-card-icon--cyan {
    background: #ecfeff;
    color: #0891b2;
}

.about-card:hover .about-card-icon--cyan {
    background: #0891b2;
}

.about-card-icon i {
    font-size: 1.5rem;
}

.about-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.75rem;
}

.about-card-text {
    font-size: 1rem;
    line-height: 1.625;
    color: #64748b;
    margin: 0;
}

/* CTA Section */
.about-cta {
    text-align: center;
    max-width: 896px;
    margin: 6rem auto 0;
}

.about-cta-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1.5rem;
}

.about-cta-btn {
    display: inline-block;
    background: #4f46e5;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.2);
}

.about-cta-btn:hover {
    background: #4338ca;
    transform: scale(1.05);
}
