.directory-page {
    padding: 30px 0 60px;
}

.directory-header {
    margin-bottom: 24px;
}

    .directory-header h2 {
        color: #1a3560;
        font-weight: 700;
        margin: 0;
    }

.directory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 900px) {
    .directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .directory-grid {
        grid-template-columns: 1fr;
    }
}

.directory-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid #e5e9f2;
    border-top: 4px solid #1ab394;
    border-radius: 8px;
    padding: 28px 20px;
    box-shadow: 0 2px 8px rgba(26,53,96,0.05);
    transition: box-shadow .15s ease, transform .15s ease;
}

    .directory-card:hover {
        box-shadow: 0 4px 16px rgba(26,53,96,0.1);
        transform: translateY(-2px);
    }

.directory-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f5f7fb;
    box-shadow: 0 0 0 3px #e5e9f2;
    margin-bottom: 16px;
}

.directory-name {
    margin: 0 0 6px;
    font-size: 1.1em;
    font-weight: 700;
    color: #1a3560;
}

.directory-role {
    margin: 0;
    font-size: 0.85em;
    font-weight: 600;
    color: #1253ca;
    background: #f5f7fb;
    border-radius: 20px;
    padding: 4px 14px;
}
