/* Home Format Banners CSS */

.homeformatbanners-section {
    background-color: #f5f5f5;
    padding: 40px 0;
    margin: 30px 0;
}

.homeformatbanners-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.homeformatbanners-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.homeformatbanners-item {
    flex: 0 0 auto;
    transition: transform 0.3s ease;
}

.homeformatbanners-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.homeformatbanners-image-wrapper {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.homeformatbanners-image {
    max-width: 150px;
    max-height: 100px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.homeformatbanners-title-text {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Hover effects */
.homeformatbanners-item:hover {
    transform: translateY(-5px);
}

.homeformatbanners-item:hover .homeformatbanners-image-wrapper {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    background: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .homeformatbanners-section {
        padding: 30px 0;
    }
    
    .homeformatbanners-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .homeformatbanners-container {
        gap: 15px;
    }
    
    .homeformatbanners-image-wrapper {
        padding: 10px;
        min-height: 100px;
    }
    
    .homeformatbanners-image {
        max-width: 120px;
        max-height: 80px;
    }
}

@media (max-width: 480px) {
    .homeformatbanners-section {
        padding: 20px 0;
    }
    
    .homeformatbanners-title {
        font-size: 18px;
    }
    
    .homeformatbanners-container {
        gap: 10px;
    }
    
    .homeformatbanners-image-wrapper {
        padding: 8px;
        min-height: 80px;
    }
    
    .homeformatbanners-image {
        max-width: 100px;
        max-height: 70px;
    }
    
    .homeformatbanners-title-text {
        font-size: 12px;
    }
}
