/* ===================================================
   LIXON TOP Page — Additional Styles
   Extends style.css for top page specific layouts
   =================================================== */

/* ===== Hero Adjustments for TOP ===== */
.hero {
    margin-top: 0;
}

/* ===== Brand Card Image (Teaser) ===== */
.brand-card-image {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    background: #e8e8e8;
}
.brand-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.brand-card:hover .brand-card-image img {
    transform: scale(1.05);
}

/* ===== EC Solution Section — 2 column grid ===== */
.services-section[style*="background"] .services-grid {
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
    .services-section[style*="background"] .services-grid {
        grid-template-columns: 1fr;
    }
}
