.audire-team-section {
    padding: 90px 20px;
    background-color: #f8fafc;
    font-family: 'Inter', sans-serif;
    color: #0f172a;
}

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

.audire-team-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.audire-team-badge {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.audire-team-title {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.audire-team-intro {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.audire-founder-card {
    background: #0f172a;
    color: #fff;
    padding: 48px;
    border-radius: 28px;
    margin-bottom: 60px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #1e293b;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 48px;
}

.audire-founder-left {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.audire-founder-image-wrap {
    flex-shrink: 0;
    width: 300px;
    border-radius: 16px;
    overflow: hidden;
}

.audire-founder-image-wrap .img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.audire-founder-tag {
    display: inline-block;
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.audire-founder-name {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 6px;
}

.audire-founder-role {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #38bdf8;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 24px;
}

.audire-founder-bio {
    flex: 1;
}

.audire-founder-bio p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e1;
}

.audire-team-grid-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 12px;
}

.audire-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.audire-team-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Inter', sans-serif;
}

.audire-card-cover-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.audire-card-cover-wrap .img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.audire-card-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.audire-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -3px rgba(0, 0, 0, 0.08);
}

.audire-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.audire-card-role {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    font-family: 'Inter', sans-serif;
}

.audire-card-location {
    background: #f0f9ff;
    color: #0369a1;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.audire-card-name {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.audire-card-bio p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.audire-card-footer {
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: flex-end;
}

.audire-card-cta {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #0284c7;
    text-decoration: none;
}

.audire-card-cta:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .audire-founder-card {
        flex-direction: column;
        padding: 28px 20px;
        gap: 24px;
    }

    .audire-founder-image-wrap {
        width: 100%;
        height: 260px;
        border-radius: 12px;
        order: -1;
    }

    .audire-founder-left {
        order: 1;
    }
}