.sociallane-tab-widget-wrapper {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.sociallane-tab-widget {
    display: flex;
    gap: 12.5rem;
}

@media screen and (max-width: 992px) {
    .sociallane-tab-widget {
        flex-direction: column;
        gap: 2rem;
    }
    .sociallane-tab-widget .custom-tab-title span {
        font-size: 1rem !important;
        line-height: 1.5rem !important;
    }
}

.sociallane-tab-widget .left-column {
    flex-basis: 50%;
    height: auto;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.sociallane-tab-widget .right-column {
    flex-basis: 50%;
    position: relative;
    min-height: 35rem;
    height: 40rem;
}

.sociallane-tab-widget .image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem 1rem 0rem 0rem;
}

.sociallane-tab-widget .content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: #0D0D0D;
    color: white;
    border-radius: 0rem 0rem 1rem 1rem;
}

.content-overlay:before {
    content: url(/wp-content/uploads/2024/10/black-block-divider.svg);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(0px, -35px);
    width: 100%;
    overflow: hidden;
}

.sociallane-tab-widget .custom-tab-title {
    display: flex;
    flex-direction: row-reverse;
    max-width: 100%;
    align-items: center;
    gap: 10px;
    padding: 1rem 0rem;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-content: space-between;
    font-size: 1.5rem;
    line-height: 2rem;
}

.sociallane-tab-widget .custom-tab-title:hover {
    background: transparent;
}

.sociallane-tab-widget .custom-tab-title.active {
    background: transparent;
}

.sociallane-tab-widget .tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sociallane-tab-widget .tab-content.active {
    display: block;
    opacity: 1;
}

.sociallane-icon {
    width: 1rem;
    height: 1rem;
    display: inline-block;
}

.sociallane-tab-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #0073e6;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.sociallane-tab-button:hover {
    background-color: #005bb5;
}

.right-content-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.image-container {
    flex-grow: 1;
    display: block;
}

.sociallane-tab-widget .image-container img {
    width: 100%;
    height: 26.5rem;
    display: block;
    border-radius: 1rem 1rem 0rem 0rem;
    object-fit: cover;
}

.content-overlay {
    flex-grow: 0;
    background: #0D0D0D;
    color: white;
    padding: 3rem;
    border-radius: 0 0 1rem 1rem;
    display: block;
}

@media screen and (max-width: 992px) {
    .sociallane-tab-widget .content-overlay {
        padding: 1rem;
    }
}