/*
 Theme Name:   OnePress Child
 Template:     onepress
 Author:       Your Name
 Version:      1.0.0
*/

/* Keep logo + contact on one line */
.site-branding,
.site-logo-div,
.custom-logo-link {
    display: inline-flex;
    align-items: center;
}

/* Contact block */
.opch-header-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 14px; /* left of logo, with spacing */
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
}

.opch-header-contact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #FFFFFF;
}

.opch-header-contact a:hover {
   text-decoration: none;
}

.opch-header-contact a:visited {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #FFFFFF !important;
    text-decoration: none !important;    
}

.opch-header-contact .opch-svg {
    width: 14px;
    height: 14px;
    display: block;
    fill: currentColor; /* icon uses link color */
    flex: 0 0 auto;
}

.opch-header-contact .opch-text {
    line-height: 1;
}

/* Mobile: stack or hide separator */
@media (max-width: 767px) {
    .custom-logo {
        max-height: 40px; /* adjust as needed */
        width: auto;
    }
    .opch-header-contact {
        font-size: 12px;
        margin-right: 8px;
        gap: 4px;
        flex-direction: column;
        align-items: flex-start;
    }
    .opch-header-contact .opch-sep {
        display: none;
    }
}
