.lt-psychologists-hero {
    background: var(--lt-gradient-hero);
    min-height: auto;
    padding: 160px 20px 60px;
    text-align: center;
}

.lt-search-section {
    background: var(--lt-bg-cream);
    padding: 60px 0;
}

.lt-search-card {
    background: var(--lt-card-bg);
    border: 1px solid var(--lt-card-border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--lt-card-shadow);
    max-width: 800px;
    margin: 0 auto;
}

.lt-search-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 575.98px) {
    .lt-search-row {
        grid-template-columns: 1fr;
    }
}

.lt-psychologists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 991.98px) {
    .lt-psychologists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .lt-psychologists-grid {
        grid-template-columns: 1fr;
    }
}

.lt-psychologist-card {
    background: var(--lt-card-bg);
    border: 1px solid var(--lt-card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--lt-transition);
    box-shadow: var(--lt-card-shadow);
}

.lt-psychologist-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--lt-card-shadow-hover);
}

.lt-psychologist-card.hidden {
    opacity: 0.3;
    pointer-events: none;
}

.lt-psychologist-cover {
    height: 120px;
    background: var(--lt-gradient-soft);
    overflow: hidden;
}

.lt-psychologist-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lt-psychologist-body {
    padding: 24px;
    text-align: center;
    position: relative;
}

.lt-psychologist-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: var(--lt-card-shadow);
    margin: -60px auto 16px;
    overflow: hidden;
    background: var(--lt-gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lt-psychologist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lt-psychologist-avatar-initials {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.lt-psychologist-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lt-text-dark);
    margin-bottom: 4px;
}

.lt-psychologist-name a {
    color: inherit;
    text-decoration: none;
}

.lt-psychologist-name a:hover {
    color: var(--lt-primary);
}

.lt-psychologist-crp {
    font-size: 0.85rem;
    color: var(--lt-text-muted);
    margin-bottom: 12px;
}

.lt-psychologist-presentation {
    font-size: 0.9rem;
    color: var(--lt-text-body);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lt-specialties {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}

.lt-specialty-badge {
    background: var(--lt-primary-pale);
    color: var(--lt-primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.lt-no-results {
    background: var(--lt-card-bg);
    border: 1px solid var(--lt-card-border);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--lt-card-shadow);
}

.lt-no-results i {
    font-size: 4rem;
    color: var(--lt-text-muted);
    margin-bottom: 20px;
}

.lt-no-results h4 {
    color: var(--lt-text-dark);
    margin-bottom: 10px;
}

.lt-no-results p {
    color: var(--lt-text-muted);
}