.policies-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.policy-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: #0083D4;
    color: white;
}

.policy-row.even {
    background: #00B2E3;
}

.policy-image {
    flex: 0 0 auto;
    width: 320px;
    height: 320px;
}

.policy-image .bg-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.policy-image-placeholder {
    background: rgba(0,0,0,0.1);
}

.policy-text {
    flex: 1;
    padding: 2rem;
}

.policy-row.reverse {
    flex-direction: row-reverse;
}

@media screen and (max-width: 765px) {
    .policy-row,
    .policy-row.even {
        flex-direction: column;
        align-items: center;
    }

    .policy-image {
        width: 100%;
        max-width: 320px;
        height: 320px;
        margin-top: 1rem;
    }
}