.personalia-block .person-image {
    transition: transform 0.3s ease;
}

.personalia-block .rf-hover-lift:hover .person-image img {
    transform: scale(1.05);
}

.personalia-block .person-name {
    font-size: 1.1rem;
    line-height: 1.3;
}

.personalia-block .person-title {
    font-size: 0.9rem;
    color: var(--rf-red, #DC3545) !important;
    font-weight: 500;
}

.personalia-block .person-bio {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* 🔧 ENHANCED: Distinct styling for bordered cards */
.personalia-block .person-bordered-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-width: 2px !important;
    border-style: dashed !important;
    border-color: #6c757d !important;
    transition: all 0.3s ease;
}

.personalia-block .person-bordered-card:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-color: var(--rf-red, #DC3545) !important;
    transform: translateY(-2px);
}

.personalia-block .person-bordered-card .person-title {
    color: var(--rf-green, #61CE70) !important;
    font-weight: 600;
}

/* Card style keeps original title color */
.personalia-block .card .person-title {
    color: var(--rf-red, #DC3545) !important;
}

/* Simple style gets a different approach */
.personalia-block .person-simple .person-title {
    color: var(--rf-primary, #0d6efd) !important;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .personalia-block .person-image img {
        width: 100px !important;
        height: 100px !important;
    }
    
    .personalia-block .person-name {
        font-size: 1rem;
    }
}
