#privacy_hero {
    background-color: var(--dark-red);
}
#privacy_hero h1 {
    font-size: 2.2rem;
    text-shadow: none;
    margin-block: 0;
}
#privacy_hero h1::after {
    display: none;
}
.privacy-wrapper h2 {
    margin-top: 65px;
    line-height: 1.25em;
}
/*.privacy-wrapper .g_list {
    margin-block: 30px;
}*/

.date-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 0 20px;
}

.effective-date,
.last-updated-date {
    display: block;
    width: fit-content;
    background: var(--accent-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 10px;
    font-size: .8rem;
    line-height: 1.15em;
    font-weight: 600;
    margin: 0;
    letter-spacing: .05em;
}
.effective-date {
    background: var(--accent-color);
}
.last-updated-date {
    background-color: #e8eaed;
    color: #62646a;
    font-style: italic;
}
.date-wrapper + p {
    font-size: .9rem;
}

@media (max-width: 600px) {
    .date-wrapper {
        flex-direction: column;
    }
    .effective-date,
    .last-updated-date {
        width: 100%;
        text-align: center;
    }
}