/* Container styling */
.sponsorship-container {
    background-color: #717CA8;
    display: flex;
    overflow-x: auto;
    padding: 16px 0;
    /* gap: 6px; */
    white-space: nowrap;
    scroll-behavior: smooth;
}

/* Hide scrollbar */
.sponsorship-container::-webkit-scrollbar {
    display: none;
}

/* Sponsorship card */
.sponsorship-card {
    display: flex;
    flex-direction: row;
    background-color: #564588;
    border-radius: 12px;
    /* min-width: 600px; */
    /* width: 200px; */
    padding: 10px;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.sponsorship-card img {
    width: 100px;
    border-radius: 8px;
}

.sponsorship-text {
    display: flex;
    gap: 16px;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.sponsorship-title {
    font-size: 16px;
    font-weight: bold;
}

.sponsorship-btn {
    padding: 10px 20px;
    font-size: 16px;
}

/* Responsive */
@media (min-width: 768px) {
    .sponsorship-container {
        padding: 40px 8px;
        /* background-color: red; */
    }

    .sponsorship-card {
        min-width: 100px;
        gap: 16px;
        /* flex-direction: column; */
        align-items: center;
        text-align: center;
    }

    .sponsorship-card img {
        width: 150px;
    }
    .sponsorship-title {
        font-size: 20px;
        font-weight: bold;
    }
}