/* <<< --- Newsletter --- >>> */


#newsletter .pattern {
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    width: 1160px;
    max-width: var(--max-width);
    height: auto;
}

.newsletter-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    width: 100%;
    height: auto;
    padding-bottom: 100px;
}

.newsletter-content span {
    font-size: 14px;
    font-weight: 400;
    color: var(--grey);
    line-height: 20px;
    text-align: center;
    text-wrap: wrap;
    width: 100%;
    max-width: 500px;
}

.newsletter-content span a {
    text-decoration: underline;
}

@media screen and (max-width: 500px) {
    .newsletter-content span {
        font-size: 12px;
    }
}