/* Clients Page Styles */

.featured-clients {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    padding: 40px;
    background: #fff;
}

.featured-client {
    text-align: center;
}

.featured-client img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.featured-client img:hover {
    transform: scale(1.05);
}

.featured-client-name {
    font-size: 0.85em;
    font-weight: 600;
    color: #333;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    background: #fff;
    padding: 50px 40px;
}

.client-item {
    margin-bottom: 20px;
}

.client-name {
    font-weight: 700;
    color: #000;
    font-size: 0.95em;
    margin-bottom: 5px;
}

.client-album {
    font-style: italic;
    color: #555;
    font-size: 0.9em;
    line-height: 1.6;
    margin-left: 20px;
}

@media (max-width: 1024px) {
    .featured-clients {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-clients {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
}
