.atr-newsletter {
    grid-column: span 8;
    grid-row: span 4;
    background-color: #88141B;
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}
.atr-newsletter > h2 {
    font-family: "Ubuntu-Regular",sans-serif;
    font-size: 32px;
    line-height: 38px;
    color: #FFDA63;
}
.atr-newsletter > .atr-newsletterForm {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}
.atr-newsletter > .atr-newsletterForm > p {
    font-family: "Ubuntu-Light",sans-serif;
    font-size: 20px;
    line-height: 26px;
    color: #FFDA63;
}
.atr-newsletter > .atr-newsletterForm > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}
.atr-newsletter > .atr-newsletterForm > div > .atr-newsletterFormCheckbox {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    white-space: nowrap;
}
.atr-newsletter > .atr-newsletterForm > div > .atr-newsletterFormCheckbox > input {
    width: fit-content;
    cursor: pointer;
}
.atr-newsletter > .atr-newsletterForm > div > .atr-newsletterFormCheckbox > label {
    font-family: "Ubuntu-Regular",sans-serif;
    font-size: 12px;
    line-height: 16px;
    color: #FFFFFF;
    text-transform: uppercase;
    cursor: pointer;
}

.atr-newsletter > .atr-newsletterForm > div > .atr-newsletterFormCategorys {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.atr-newsletter > .atr-newsletterForm > div > .atr-newsletterFormCategorys > span {
    display: inline-block;
    border: 1px solid #FFDA63;
    border-radius: 16px;
    padding: 8px 16px;
    font-family: "Ubuntu-Bold",sans-serif;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    cursor: pointer;
}
.atr-newsletter > .atr-newsletterForm > div > .atr-newsletterFormCategorys > span.selected {
    color: #88141B;
    background-color: #FFDA63;
}
.atr-newsletter > .atr-newsletterForm > button {
    color: #88141B;
    background-color: #FFDA63;
    border-radius: 6px;
    font-family: "Ubuntu-Bold",sans-serif;
    font-size: 14px;
    line-height: 16px;
    padding: 12px;
    cursor: pointer;
}
@media screen and (max-width: 992px) {
    .atr-newsletter {
        grid-column: span 6;
    }
}
@media screen and (max-width: 792px) {
    .atr-newsletter {
        grid-column: span 8;
        margin: 0 20px;
        gap: 6px;
        padding: 20px 23px;
    }
    .atr-newsletter>h2 {
        font-size: 22px;
        line-height: 28px;
    }
    .atr-newsletter>.atr-newsletterForm {
        gap: 24px;
    }
    .atr-newsletter > .atr-newsletterForm > p {
        font-size: 16px;
        line-height: 20px;
    }
    .atr-newsletter > .atr-newsletterForm > div > .atr-newsletterFormCategorys > span,
    .atr-newsletter > .atr-newsletterForm > button {
        font-size: 12px;
    }
}