.alternating-posts-widget {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.post-item {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0px;
    position: relative;
}

.post-item.left-image {
    flex-direction: row-reverse;
}

.post-item.right-image {
    flex-direction: row;
}

.post-image img {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

.post-content {
    flex: 1;
}

.post-content h3 {
    margin: 0 0 10px 0;
}

.post-content h3 a {
    text-decoration: none;
    color: #333;
}

.post-content h3 a:hover {
    color: #007cba;
}

.post-content p {
    margin: 0;
    color: #666;
}

.benefits-line{
    background-color: #D9D9D9;
    align-self: center;
    width: 5px;
    height: 85%;
    position: absolute;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
}
.line-inner{
    will-change: transform;
    background-color: #1B114C;
    width: 100%;
    height: 100%;
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}
.benefit-dot{
    border: 15px solid #1B114C;
    animation: none;
    border-radius: 50px;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    margin-left: -5px;
    position: absolute;
    top: 45%;
    left: 49.3%;
}
.benefit-dot-ray{
    height: 14px;
    margin-top: -7px;
    margin-left: -7px;
    transition: opacity .5s ease-in;
    position: absolute;
    top: 45%;
    left: 50%;
    animation: none;
    background: #fff;
    width: 14px;
    border-radius: 50px;
}
/* Responsive */
@media (max-width: 768px) {
    .post-item {
        flex-direction: column !important;
        text-align: center;
    }

    .post-image img {
        max-width: 100%;
    }
}

a.post-button-link {
    border-radius: 6px;
}
