/* SSB Page Styles */
.ssb-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.ssb-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.ssb-hero p {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
}

.ssb-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03), 0 2px 4px -2px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.ssb-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
    border-color: #cbd5e1;
}

.ssb-avatar-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
}

.ssb-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ssb-card:hover .ssb-avatar-wrapper img {
    transform: scale(1.05);
    box-shadow: 0 15px 25px -5px rgba(0,0,0,0.15);
}

.ssb-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.ssb-title {
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ssb-bio {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.ssb-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.ssb-badge {
    background: #f1f5f9;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.ssb-badge:hover {
    background: #e2e8f0;
    color: #1e293b;
}

/* Responsibilities Section */
.ssb-responsibilities {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    margin-top: 5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.ssb-responsibilities-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 3.5rem;
}

.resp-item {
    padding: 2rem;
    border-radius: 1.25rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    border: 1px solid transparent;
    height: 100%;
}

.resp-item:hover {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.resp-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.resp-item h5 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.resp-item p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}
