/**
 * Meet the Team Block Styles
 */

.block-meet-the-team {
    position: relative;
}

/* Gradient Circle is now handled inline in template.php */

/* Team Member Social Links */
.block-meet-the-team .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.block-meet-the-team .social-link:hover {
    transform: scale(1.1);
}

/* Layout 2 specific styles */
.block-meet-the-team .team-member-card {
    transition: all 0.3s ease;
}

.block-meet-the-team .team-member-card:hover {
    transform: translateY(-8px);
}

/* Content columns styling */
.block-meet-the-team .content-column {
    font-size: 1rem;
    line-height: 1.6;
}

.block-meet-the-team .content-column p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .block-meet-the-team .gradient-circle {
        width: 400px;
        height: 400px;
        top: -100px;
        right: -100px;
    }
    
    .block-meet-the-team .team-member-layout-1 {
        text-align: center;
    }
}

