section-teaser {
    display: flex;
    padding: 24px 16px;
    box-sizing: border-box;
    align-items: flex-start;
    gap: 16px;
    border-radius: 20px;
    background: rgba(218, 130, 125, 0.05);
    margin-bottom: 40px;
}

section-teaser:nth-child(2n-1) {
    flex-direction: row-reverse;
}

section-teaser img {
    display: block;
    width: 300px;
}

section-teaser .meta {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

section-teaser h2 {
    color: #702A2A;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 115%;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
}

section-teaser p {
    color: #702A2A;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 115%;
    margin: 0;
}

section-teaser .meta>a {
    display: flex;
    height: 40px;
    width: fit-content;
    padding: 0 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #702A2A;
    text-align: center;
    font-size: 20px;
    line-height: 32px;
    border: 1px solid #702A2A;
    text-decoration: none;
}

@media screen and (max-width: 800px) {
    section-teaser {
        flex-direction: column !important;
        align-items: center;
    }

    section-teaser .meta>a {
        width: 100%;
    }
}