/* Policy Page Responsive CSS */

/* PC version - Show for screens 769px and above */
@media screen and (min-width: 769px) {
    .pc-text {
        display: block;
    }
    .policy-sub-card-mobile {
        display: none;
    }
}

/* Mobile version - Show for screens 768px and below */
@media screen and (max-width: 768px) {
    .pc-text {
        display: none;
    }
    .policy-sub-card-mobile {
        display: block;
        font-size: 13px;
        line-height: 1.5;
    }
}

/* Inherit styles from policy-sub-card's paragraph styling */
.policy-sub-card-mobile {
    color: inherit;
    font-weight: inherit;
    font-family: inherit;
}
