@media (max-width: 767px) {

    /* Stack image and text vertically */
    .section__o-media-sub {
        flex-direction: column;
    }

    /* Adjust image wrapper */
    .o-media__item figure {
        height: auto !important;
        margin: 0;
        background-color: transparent;
    }

    /* Make image responsive */
    .o-media__item img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

    /* Padding and alignment for text block */
    .o-media__body {
        padding: 1rem;
        margin-left: 0;
    }

    /* Responsive typography */
    .meta__category {
        font-size: 1rem;
        color: #fcb814;
        /* gold tone for mobile */
        margin-bottom: 0.5rem;
        word-break: break-word;
    }

    .hgroup__title,
    h2.title {
        font-size: 1.25rem;
        line-height: 1.3;
        word-break: break-word;
        margin-bottom: 1rem;
    }

    /* Adjust paragraph styling */
    .o-media__text p {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #fff;
        text-align: left;
        margin-bottom: 1rem;
    }

    /* Add spacing between sections */
    .section__wrapper {
        padding: 1rem;
        margin-bottom: 2rem;
    }
}