.ce-press-bar {
    font-size: 16px;
    background: #f5f5f3;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.6em 2em;

    .container {
        display: flex;
        flex-flow: column wrap;
        align-items: center;
        justify-content: center;
        gap: 1em;

        @media screen and (min-width: 768px) {
            flex-flow: row wrap;
            gap: 2em;
        }
    }

    .ce-press__label {
        font-size: 0.6em;
        font-weight: 400;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: #999999;
        white-space: nowrap;
    }

    .ce-press__logos {
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        justify-content: center;
        gap: 1.5em;

        @media screen and (min-width: 768px) {
            gap: 2.5em;
        }

        .ce-press__logo {
            font-size: 0.95em;
            font-weight: 600;
            color: #333333;
            text-decoration: none;
            letter-spacing: 0.02em;
            opacity: 0.5;
            transition: opacity 0.3s;
            white-space: nowrap;

            &:hover, &:focus-visible {
                opacity: 1;
            }
        }
    }

    .ce-press__divider {
        width: 40px;
        height: 1px;
        background: rgba(0, 0, 0, 0.1);
        flex-shrink: 0;

        @media screen and (min-width: 768px) {
            width: 1px;
            height: 28px;
        }
    }

    .ce-press__certs {
        display: flex;
        align-items: center;
        gap: 1.2em;

        @media screen and (min-width: 768px) {
            gap: 1.5em;
        }

        .ce-press__cert {
            display: flex;
            align-items: center;
            gap: 1em;
            font-size: 0.68em;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: #555555;

            svg {
                width: 18px;
                height: 18px;
                color: #41A428;
            }
        }
    }
}
