/* Practice Leaders / Superstar Section */
.superstar.practice-leaders {
    background: #fff !important;
    padding: 60px 0;
    position: relative;
}

.superstar.practice-leaders .description-superstars {
    color: var(--secondary-color);
    font-family: "Montserrat", sans-serif; 
    text-align: center;
    margin-bottom: 40px;
}

.superstar.practice-leaders .list {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}

.superstar.practice-leaders .bxslider {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.superstar.practice-leaders .item {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    text-align: center;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
    display: none;
}

.superstar.practice-leaders .item a {
    display: block;
    text-decoration: none;
    color: var(--secondary-color);
    padding: 20px;
    transition: transform 0.3s ease;
}

.superstar.practice-leaders .item:hover {
    transform: translateY(-5px);
}

.superstar.practice-leaders .item .img {
    display: block;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-size: cover;
    background-position: top center !important;   
    transition: box-shadow 0.3s ease;
    position: relative;
}
.img.archive-leaders{
    display: block;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-size: cover;
    background-position: top center !important;   
    transition: box-shadow 0.3s ease;
    position: relative;
    
}

.superstar.practice-leaders .item:hover .img {
    box-shadow: -6px -6px 0 var(--primary-color);
}

.superstar.practice-leaders .item h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.5rem;
    margin: 0 0 10px;
    color: var(--secondary-color);
}

.superstar.practice-leaders .item .position {
    font-family: Montserrat, sans-serif;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.superstar.practice-leaders .see-all-team {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.superstar.practice-leaders .see-all-team a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 30px;
    font-family: Montserrat, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.superstar.practice-leaders .see-all-team a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.superstar.practice-leaders .see-all-team a i {
    transition: transform 0.3s ease;
}

.superstar.practice-leaders .see-all-team a:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .superstar.practice-leaders .item {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 575px) {
    .superstar.practice-leaders .item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .superstar.practice-leaders .see-all-team a {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

.practice-leaders {
    padding: 60px 0;
    background: var(--secondary-color);
    color: var(--white);
}

.leader-card {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.leader-card.fade-out {
    opacity: 0;
    visibility: hidden;
}

.leader-card.hidden {
    display: none;
}

.leader-card.fade-in {
    opacity: 1;
    visibility: visible;
}

/* News Section Styles */
.news-section {
    background: var(--secondary-color);
    padding: 60px 0;
    color: #fff;
}

.news-section .description-superstars {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.news-section .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.news-section .news-card {
    background: transparent;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.news-section .news-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.news-section .news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.news-section .news-category {
    color: var(--primary-color);
    font-family: Montserrat, sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.news-section .news-date {
    color: rgba(255, 255, 255, 0.7);
    font-family: Montserrat, sans-serif;
    font-size: 0.9rem;
}

.news-section .news-title {
    margin: 0 0 15px;
}

.news-section .news-title a {
    color: #fff;
    text-decoration: none;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.5rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.news-section .news-title a:hover {
    color: var(--primary-color);
}

.news-section .news-excerpt {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.news-section .news-footer {
    text-align: center;
    margin-top: 40px;
}

.news-section .button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    border: 2px solid var(--primary-color);
    padding: 15px 30px;
    font-family: Montserrat, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-section .button:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .news-section .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .news-section .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-section .button {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
} 