.openit-carousel-v2 {
    position: relative;
    margin: 24px 0;
    padding: 0 72px;
}

.openit-carousel-v2__slide {
    display: none;
}

.openit-carousel-v2__slide.is-active {
    display: block;
}

.openit-carousel-v2__inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 48px 64px;
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 0px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.openit-carousel-v2__title {
    margin: 0 0 28px;
    text-align: center;
    font-size: 2rem;
    line-height: 1.2;
}

.openit-carousel-v2__image {
    margin-bottom: 28px;
}

.openit-carousel-v2__image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0px;
}

.openit-carousel-v2__content {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2f2f2f;
}

.openit-carousel-v2__content p {
    margin: 0 0 16px;
}

.openit-carousel-v2__content p:last-child {
    margin-bottom: 0;
}

.openit-carousel-v2__footer {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    min-height: 48px;
}

.openit-carousel-v2__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 0px;
    padding: 14px 28px;
    background: #CD172D;
    color: #fff;
    font: inherit;
    font-size: 1.05rem;
    cursor: pointer;
}

.openit-carousel-v2__button:hover {
    background: #b81426;
}

.openit-carousel-v2__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 64px;
    height: 64px;
    border: 0;
    border-radius: 50%;
    background: #CD172D;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}

.openit-carousel-v2__nav:hover {
    background: #b81426;
}

.openit-carousel-v2__nav span {
    font-size: 2rem;
    line-height: 1;
}

.openit-carousel-v2__nav[hidden] {
    display: none;
}

.openit-carousel-v2__nav--prev {
    left: 0;
}

.openit-carousel-v2__nav--next {
    right: 0;
}

.openit-carousel-v2__dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.openit-carousel-v2__dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: #cfcfcf;
    cursor: pointer;
    padding: 0;
}

.openit-carousel-v2__dot.is-active {
    background: #CD172D;
}

@media (max-width: 768px) {
    .openit-carousel-v2 {
        padding: 0 56px;
    }

    .openit-carousel-v2__inner {
        padding: 28px 20px;
    }

    .openit-carousel-v2__title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .openit-carousel-v2__content {
        font-size: 1rem;
    }

    .openit-carousel-v2__nav {
        width: 48px;
        height: 48px;
    }

    .openit-carousel-v2__nav span {
        font-size: 1.5rem;
    }
}