.nml-csh {
    padding: 103px 0 41px;
    background: linear-gradient(161.64deg, #040F2D 27.52%, #162F6F 108.95%);
}

.nml-csh__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
}

.nml-csh__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nml-csh__heading {
    margin: 0;
    color: #FFFFFF;
}

.nml-csh__heading span {
    color: var(--color-accent);
}

.nml-csh__subhead {
    margin: 0;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.80);
}

.nml-csh__btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.nml-csh__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.nml-csh__btn--primary {
    background: #FFFFFF;
    border: 1px solid #D5DAFA;
}

.nml-csh__btn--primary:hover {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #D5DAFA;
    backdrop-filter: blur(4px);
}

.nml-csh__btn--primary:active {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #D5DAFA;
    backdrop-filter: blur(4px);
}

.nml-csh__btn--outline {
    background: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
}

.nml-csh__btn--outline:hover {
    border: 1px solid #D5DAFA;
    color: #D5DAFA;
}

.nml-csh__btn--outline:active {
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
}

.nml-csh__media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
    margin: 0;
}

@media (max-width: 991px) {
    .nml-csh {
        padding: 96px 0 48px;
    }
    .nml-csh__media {
        display: none;
    }
    .nml-csh__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .nml-csh__content {
        max-width: 100%;
        gap: 12px;
    }
    .nml-csh__media {
        max-width: 100%;
        width: 100%;
    }
    .nml-csh__subhead {
        font-size: 16px;
        line-height: 24px;
    }
    .nml-csh__btns {
        flex-direction: column;
    }
    .nml-csh__btn {
        max-width: 100%;
        width: 100%;
        font-size: 14px;
        line-height: 20px;
    }
}
