/* Brands grid with beautiful design */
.brands-grid-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 950px;
    margin: 0 auto 40px;
    padding: 0 20px;
}
@media (max-width: 900px) {
    .brands-grid-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 600px) {
    .brands-grid-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.brand-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    min-height: 85px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.brand-logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,229,204,0.1), transparent);
    transition: left 0.5s ease;
}

.brand-logo-item:hover::before {
    left: 100%;
}

.brand-logo-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,191,165,0.2);
    border-color: #00e5cc;
    background: linear-gradient(145deg, #ffffff 0%, #f0fffe 100%);
}

.brand-logo-text {
    font-size: 19px;
    text-align: center;
    transition: transform 0.3s ease;
}

.brand-logo-item:hover .brand-logo-text {
    transform: scale(1.05);
}

/* Homepage title */
.home .entry-content h2 {
    font-size: 32px;
    color: #2d4654;
    margin-bottom: 35px;
}
