/* Role Grid Component Styles */

.role-grid-section {
    padding: 60px 0;
}

.role-grid-inner {
    background: linear-gradient(135deg, var(--accent-primary), #1e3a8a);
    border-radius: 32px;
    padding: 80px 40px;
    color: white;
    text-align: center;
}

.role-grid-section .section-header {
    max-width: 800px;
    margin-bottom: 40px;
}

.role-grid-section .section-header h2 {
    color: white;
    margin-bottom: 16px;
}

.role-grid-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.roles-display-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.role-box {
    flex: 0 1 340px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s ease;
}

.role-box:hover {
    background: rgba(255, 255, 255, 0.12);
}

.role-grid-footer {
    margin-top: 48px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .role-grid-inner {
        padding: 60px 24px;
        border-radius: 24px;
    }



    .role-box {
        flex: 0 1 100%;
    }
}