.article2 {
    position: relative;
    padding-bottom: 0;
    overflow: hidden;
}
.article2::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, var(--main-color), transparent);
    z-index: 5;
}

.a2-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60rem;
}

.a2-text {
    font-size: 40rem;
    font-weight: 300;
    line-height: 1.5;
    white-space: nowrap;
    text-align: center;
    z-index: 5;
}

.a2-text br {
    display: none;
}


/*==================================================*/
@media (max-width: 991px) {
    .a2-text {
        color: #333;
        font-size: 32rem;
    }
}