/* AGENT PROFILE MODULE CSS */
.agent-profile {
    border: 1px solid var(--clr-border); 
    padding: 0; 
    border-radius: 8px; 
    text-align: center; 
    overflow: hidden; 
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 400px;
}

.agent-banner-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.agent-banner-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85); /* Lớp phủ sáng để đọc chữ tốt hơn */
}

.agent-banner { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.agent-photo { 
    width: 180px; 
    height: 180px; 
    border-radius: 50%; 
    object-fit: cover; 
    border: 6px solid #fff; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.15); 
    margin: 10px auto 20px;
    position: relative;
    z-index: 1;
}

.agent-content { 
    padding: 0 30px 30px; 
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .agent-profile { min-height: auto; }
}
