/* People Hero Section - Matching Erosion Hero Style */
.people-hero {
    background: linear-gradient(135deg, #d94a2a 0%, #ff5722 100%);
    color: white;
    padding: 150px 0 120px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.people-hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.people-hero .subhead {
    font-size: 1.75rem;
    line-height: 1.5;
    font-weight: 400;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

.people-hero .subhead em {
    font-style: italic;
}

/* People specific styles */
.people-main > section {
    margin: 0 auto;
}

.people-main > .people-sections {
    position: relative;
    z-index: 10;
}

.people-section {
    margin: 1rem 0;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    background-color: white;
}

.people-section.kaizen-blurb {
    margin-top: -3rem;
}

.people-section h2 {
    font-size: 1.9em;
    color: var(--font-color);
    margin-bottom: 1rem;
}

.people-section p {
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--font-color);
    margin-bottom: 1rem;
}

.people-section strong {
    font-weight: 600;
}

/* People Grid Layout */
.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.person-card {
    text-align: center;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.person-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--kaizen-orange);
}

.person-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--kaizen-orange);
    background-color: #fff;
}

.person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.person-card h3 {
    font-size: 1.3em;
    color: var(--font-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.person-links {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.person-links a {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.2s ease;
}

a:visited {
    color: white;
}

.link-website {
    background-color: var(--kaizen-orange-gradient-start);
    color: white;
}

.link-website:hover {
    background-color: var(--kaizen-orange-gradient-end);
    color: white;
}

.link-linkedin {
    background-color: #0077b5;
    color: white;
}

.link-linkedin:hover {
    background-color: #005885;
    color: white;
}

/* Kaizen Blurb Section */
.kaizen-blurb {
    text-align: center;
}

.kaizen-blurb h2 {
    font-size: 2.5rem;
    text-transform: lowercase;
    color: var(--kaizen-orange);
    margin-bottom: 0.5rem;
}

.kaizen-blurb blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid var(--kaizen-orange);
    border-radius: 4px;
}

.kaizen-blurb blockquote p {
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--font-color);
}

.kaizen-blurb blockquote em {
    font-style: italic;
    font-weight: 600;
}

.kaizen-blurb figcaption {
    font-size: 1em;
    color: var(--kaizen-gray);
    text-align: right;
    font-style: normal;
}

/* Responsive Design */
@media (max-width: 768px) {
    .people-hero {
        padding: 100px 0 80px;
    }

    .people-hero h1 {
        font-size: 3rem;
    }

    .people-hero .subhead {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .people-hero {
        padding: 80px 0 60px;
    }

    .people-hero h1 {
        font-size: 2.5rem;
    }

    .people-hero .subhead {
        font-size: 1.2rem;
    }
}

@media (min-width: 768px) {
    .people-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .people-section {
        padding: 2.5rem;
    }

    .people-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .person-photo {
        width: 180px;
        height: 180px;
    }
}

