/* Board of Directors Section Styles */
.board-section .card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.board-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.board-section .card-body {
    position: relative;
}

.board-section .card-title {
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.board-section h5 {
    font-weight: 600;
    color: #2c3e50;
}

.board-section .rounded-circle {
    border-width: 3px !important;
}

/* Property Manager specific styling */
.board-section .bg-light {
    background-color: #f8f9fa !important;
}

.board-section .text-success {
    color: #198754 !important;
}

.board-section .border-success {
    border-color: #198754 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .board-section .col-lg-4:nth-child(6) {
        margin-top: 1rem;
    }
    
    .board-section .card-body {
        padding: 1.5rem !important;
    }
    
    .board-section .rounded-circle {
        width: 70px !important;
        height: 70px !important;
    }
}

@media (max-width: 576px) {
    .board-section .rounded-circle {
        width: 60px !important;
        height: 60px !important;
    }
    
    .board-section h5 {
        font-size: 1.1rem;
    }
    
    .board-section .card-title {
        font-size: 0.8rem;
    }
}

/* Email link styling */
.board-section a[href^="mailto:"] {
    color: #6c757d;
    font-size: 0.9rem;
}

.board-section a[href^="mailto:"]:hover {
    color: #198754;
    text-decoration: underline !important;
}