/* Skeleton Loader Styles */
.abogado-skeleton {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.skeleton-content {
    padding: 20px;
}

.skeleton-line {
    height: 12px;
    background: #f0f0f0;
    margin-bottom: 10px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.skeleton-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.6) 50%, 
        rgba(255,255,255,0) 100%);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Card Styles */
.abogado-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.abogado-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.abogado-thumb {
    height: 180px;
    overflow: hidden;
}

.abogado-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.abogado-card:hover .abogado-thumb img {
    transform: scale(1.05);
}

.abogado-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.abogado-fecha {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 8px;
}

.abogado-titulo {
    font-size: 1.2rem;
    margin: 0 0 12px 0;
    color: #333;
    line-height: 1.4;
}

.abogado-desc {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
    flex: 1;
}

.abogado-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #444;
}

.abogado-icon {
    margin-right: 8px;
    flex-shrink: 0;
    margin-top: 2px;
}

.abogado-text {
    flex: 1;
    word-break: break-word;
}

.abogado-contacto-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 12px 0;
}

.abogado-gabinete {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.abogado-error {
    color: #e53e3e;
    background-color: #fed7d7;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-top: 10px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .abogado-thumb {
        height: 160px;
    }
    
    .abogado-content {
        padding: 15px;
    }
    
    .abogado-titulo {
        font-size: 1.1rem;
    }
    
    .abogado-desc {
        font-size: 0.9rem;
    }
}
