/* Agent Horizontal Layout */
.agent-horizontal {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.agent-horizontal:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.agent-horizontal .agent-image {
    flex-shrink: 0;
    margin-right: 25px;
}

.agent-horizontal .agent-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.agent-horizontal .agent-info {
    flex: 1;
}

.agent-horizontal .agent-info h5 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #333;
}

.agent-horizontal .agent-info .designation {
    font-size: 14px;
    color: #007bff;
    font-weight: 500;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.agent-horizontal .agent-info p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .agent-horizontal {
        flex-direction: column;
        text-align: center;
    }
    
    .agent-horizontal .agent-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
}