    .newspaper {
      padding: 8rem 0;
    }
    .newspaper-content {
      width: 100%;
      max-width: var(--bwj-content-width);
      margin: 0 auto;
      padding: 0;
    }
.article-container {
    width: 100%;
    padding: 0 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.newspaper.theme-background {
    background-color: var(--bwj-theme-primary);
}
.newspaper.accent-background {
    background-color: var(--bwj-accent-primary);
}
    .newspaper.theme-background > .newspaper-content,
    .newspaper.accent-background > .newspaper-content {
        color: var(--bwj-white);
    }
    
    .newspaper-content h2 {
      font-size: 3rem;
      font-weight: 700;
      line-height: 1.2;
      margin: 0;
      padding: 0;
      margin-bottom: 2.5rem;
      text-align: center;
      padding: 0 2.5rem;
    }

.newspaper-content > .button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 2rem;
}

@media screen and (max-width: 500px) {
    .newspaper-article > .button-container {
        flex-direction: column;
        justify-content: center;
    }
}

.newspaper-article {
    padding: 0 1.5rem;
    width: 50%;
}
    .newspaper-article > div {
        font-size: 5rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    .newspaper-article > h3 {
        font-size: 2rem;
        font-weight: 600;
        line-height: 1.2;
        margin: 0;
        padding: 0;
        margin-bottom: 2rem;
        text-align: center;
    }
    .newspaper-article > p {
        font-size: 1.2rem;
        font-weight: 500;
        text-align: start;
        line-height: 1.8;
        padding: 0;
        margin: 2rem 0;
    }
@media screen and (max-width: 820px) {
    .newspaper-article {
        width: 100%;
    }
}
