.whats_new_banner {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    margin-bottom: 20px;
}
.whats_new_new-label {
    background-color: #6f42c1;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.whats_new_text {
    font-size: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.whats_new_text a {
    color: #6c757d;
    text-decoration: none;
    position: relative;
}
.whats_new_text a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: #ccc;
}
.whats_new_text a:hover::after {
    height: 2px;
}

@media (min-width: 768px) {
    .whats_new_banner {
        flex-direction: row;
        justify-content: space-between;
    }
    .whats_new_new-label {
        position: static;
        transform: none;
        margin-right: 10px;
    }
    .whats_new_text {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        flex: 1;
    }
    .whats_new_text .whats_new_main-text {
        margin-right: auto;
        color: #495057;
    }
}

@media (max-width: 767.98px) {
    .whats_new_banner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .whats_new_text {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: auto;
    }
    .whats_new_text .whats_new_main-text, .whats_new_text .whats_new_learn-more {
        margin-top: 5px;
        color: #495057;
    }
}
