/* instagram widget styling */
.slider-wrapper {
    position: relative;
}

.custom-prev,
.custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    padding: 5px 8px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.custom-prev {
    left: -40px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.custom-next {
    right: -40px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.custom-prev:hover,
.custom-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.insta-image {
    width: 100%;
    height: 300px; /* Adjust based on your needs */
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.ig-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    justify-content: center;
    align-items: center;
}

@media (max-width: 650px) {
    .custom-next {
        display: none;
    }
    .custom-prev {
        display: none;
    }
}

.question {
    color: red;
    font-size: 30px;
    text-decoration: bold;
}
