.white-papers-newsletter-split .wns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.white-papers-newsletter-split .wns-left-col {
    height: 100%;
}

.white-papers-newsletter-split .wns-card {
    position: relative;
    height: 100%;
    min-height: 480px;
    border-radius: 32px;
    overflow: hidden;
    text-align: center;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* background-color: #260F46; */
    border: solid 2px #E5E7EB;
    transition: all 0.3s ease;
}

.white-papers-newsletter-split .wns-card:hover {
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
    border-color: #d1d5db;
    transform: translateY(-2px);
}

.white-papers-newsletter-split .wns-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 0;
    padding-top: 5px;
    padding-bottom: 5px;
}

.white-papers-newsletter-split .wns-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.white-papers-newsletter-split .wns-card-title-wrap {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
}

.white-papers-newsletter-split .wns-card-title {
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0;
    color: #ffffff;
    margin: 0;
}

.white-papers-newsletter-split .wns-card-button-wrap {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.white-papers-newsletter-split .wns-card:hover .wns-card-button-wrap {
    opacity: 1;
    transform: translateY(0);
}

.white-papers-newsletter-split .wns-card:hover .wns-card-overlay,
.white-papers-newsletter-split .wns-card:focus-within .wns-card-overlay {
    opacity: 1;
}

.white-papers-newsletter-split .wns-card:focus-within .wns-card-button-wrap {
    opacity: 1;
    transform: translateY(0);
}

.white-papers-newsletter-split .wns-download-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    color: #1f2937;
    background: #f3f4f6;
    border-radius: 9999px;
    text-decoration: none;
}

.white-papers-newsletter-split .wns-right-section {
    height: 100%;
    width: 100%;
}

.white-papers-newsletter-split .wns-newsletter-wrapper {
    height: 100%;
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: block;
}

.white-papers-newsletter-split .wns-right {
    width: 100%;
    max-width: 100%;
    flex: none;
    margin: 0;
    padding: 40px;
}

.white-papers-newsletter-split .wns-newsletter-title {
    font-family: "Canela Trial", serif !important;
    font-weight: 500;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0;
    color: #ffffff;
    margin: 0;
}

.white-papers-newsletter-split .wns-newsletter-subtitle {
    margin-top: 5px;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
}

.white-papers-newsletter-split .wns-newsletter-image-wrap {
    margin-top: 15px;
}

.white-papers-newsletter-split .wns-newsletter-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 488 / 200;
    object-fit: cover;
    border-radius: 16px;
}

@media (max-width: 959px) {
    .white-papers-newsletter-split .wns-grid {
        grid-template-columns: 1fr;
    }
}

.white-papers-newsletter-split .newsletter-wrapper .right{
    gap: 1.5rem;
}

.white-papers-newsletter-split {
    .newsletter-wrapper {
        flex-direction: column-reverse;
        height: 100%;
        justify-content: center;
        background: linear-gradient(252.65deg, #E5052C 8.18%, #250E45 91.82%);
        padding: 30px;
        border-radius: 24px;

        .left {
            min-height: 20rem;
            width: 100%;
            margin-top: 20px;
            border-radius: 16px;
        }

        .right {
            max-width: 100%;
            margin: 0;
            background: none;
            padding: 0;
        }
    }
}