/* Ono Hawaiian Recipes — As Seen On Press Bar */

/* Dotted rule replacing the default separator */
.ono-press-bar .ono-press-bar__rule {
    border: none;
    border-top: 1.5px dotted #cccccc !important;
    background: none !important;
    height: 0 !important;
    margin: 0 !important;
}

/* Eyebrow label */
.ono-press-bar .ono-press-bar__eyebrow {
    font-size: 11px !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: #999999 !important;
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
}

/* Logo row — centered flex */
.ono-press-bar .ono-press-bar__logos {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2rem !important;
}

/* Each logo item */
.ono-press-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* If using image blocks as logos */
.ono-press-logo-item img {
    max-height: 36px !important;
    max-width: 130px !important;
    width: auto !important;
    object-fit: contain !important;
    opacity: 0.65;
    filter: grayscale(100%);
    transition: opacity 0.2s ease, filter 0.2s ease;
}

.ono-press-logo-item img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* If using text links as placeholders */
.ono-press-logo-item p {
    margin: 0 !important;
}

.ono-press-logo-item a {
    font-size: 14px;
    font-weight: 700;
    color: #555555 !important;
    text-decoration: none !important;
    letter-spacing: 0.02em;
    opacity: 0.75;
    transition: opacity 0.2s;
}

.ono-press-logo-item a:hover {
    opacity: 1;
    color: #333333 !important;
}

/* Mobile */
@media (max-width: 640px) {
    .ono-press-bar .ono-press-bar__logos {
        gap: 1.5rem !important;
    }
    .ono-press-logo-item img {
        max-height: 28px !important;
        max-width: 100px !important;
    }
}
