.exhibitors-slider-container {
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
}

.exhibitors-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Desktop view - grid layout */
@media (min-width: 1025px) {
    .exhibitors-slider {
        display: flex;
        gap: 10px;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .exhibitor-slide {
        text-align: center;
        padding: 0px;
    }
}

/* Tablet and Mobile - slider layout */
@media (max-width: 1024px) {
    .exhibitors-slider {
        display: block;
        margin: 0 -10px;
    }

    .exhibitor-slide {
        text-align: center;
        padding: 10px 15px;
        margin: 0 5px;
    }
}

.exhibitor-logo {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    padding: 8px;
    border-radius: 6px;
    transition: transform 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.exhibitor-slide:hover .exhibitor-logo {
    transform: scale(1.05);
}

/* Slick slider adjustments */
.exhibitors-slider .slick-list {
    padding: 10px 0;
}

.exhibitors-slider .slick-track {
    display: flex;
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .exhibitor-logo {
        max-height: 200px;
        padding: 6px;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .exhibitor-logo {
        max-height: 150px;
        padding: 5px;
    }
}

@media (max-width: 480px) {
    .exhibitor-logo {
        max-height: 150px;
        padding: 4px;
    }
}

/* Infobox styles */
.exhibitor-infobox {
    margin-bottom: 20px;
}

.infobox-wrapper {
    text-align: center;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
}

.infobox-wrapper:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.infobox-icon {
    margin-bottom: 15px;
}

.infobox-icon img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.no-logo-placeholder {
    height: 60px;
    width: 60px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 4px;
}

.no-logo-placeholder span {
    color: #666;
    font-size: 12px;
}

.infobox-title {
    margin: 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.infobox-button {
    display: inline-block;
    padding: 8px 16px;
    background: #007cba;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
    font-size: 14px;
}

.infobox-button:hover {
    background: #005a87;
    color: white;
}

.infobox-button.disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Grid Layout */
.exhibitors-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    padding: 20px 0;
}

/* Tablet - 4 columns */
@media (max-width: 1024px) {
    .exhibitors-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile - 3 columns */
@media (max-width: 768px) {
    .exhibitors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.exhibitor-grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exhibitor-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.exhibitor-grid-item .exhibitor-logo {
    max-width: 100%;
    max-height: 100px;
    height: auto;
    object-fit: contain;
    padding: 0;
    box-shadow: none;
    margin: 0;
}