.blog-carousel-container {
    width: 100%;
    position: relative;
}

.blog-carousel-item {
    width: 100%;
    display: none;
    display: flex;
    flex-wrap: wrap;
}

.carousel-col {
    box-sizing: border-box;
    padding: 20px;
}

.image-col {
    width: 50%;
}

.image-col img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.content-col {
    width: 50%;
    position: relative;
}

.blog-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 18px;
    background: #0073e6;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.carousel-nav {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.next-arrow {
    font-size: 32px;
    cursor: pointer;
    user-select: none;
}

/* MOBILE */
@media (max-width: 768px) {
    .image-col,
    .content-col {
        width: 100%;
    }
}