/* ==========================================================================
   Vera E-E-A-T — Frontend trust banner
   ========================================================================== */

.vera-eeat-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin: 16px 0;
    border: 1px solid #e0e0e0;
    border-left: 3px solid #1e73be;
    border-radius: 4px;
    background: #f9fafb;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

/* Icon / photo area */
.vera-eeat-banner__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vera-eeat-banner__photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.vera-eeat-banner__info-icon {
    width: 24px;
    height: 24px;
    color: #1e73be;
}

/* Text body */
.vera-eeat-banner__body {
    flex: 1;
    min-width: 0;
}

.vera-eeat-banner__label {
    color: #666;
}

.vera-eeat-banner__name {
    font-weight: 600;
    color: #1e73be;
    text-decoration: none;
}

a.vera-eeat-banner__name:hover {
    text-decoration: underline;
}

.vera-eeat-banner__title {
    color: #666;
}

.vera-eeat-banner__separator {
    color: #ccc;
}

.vera-eeat-banner__standards {
    color: #666;
}

.vera-eeat-banner__standards a {
    color: #1e73be;
    text-decoration: none;
}

.vera-eeat-banner__standards a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Mobile: stack text below icon, wrap the separator as a line break
   ========================================================================== */

@media (max-width: 600px) {
    .vera-eeat-banner {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 12px;
        font-size: 13px;
    }

    .vera-eeat-banner__icon {
        width: 36px;
        height: 36px;
    }

    .vera-eeat-banner__photo {
        width: 36px;
        height: 36px;
    }

    .vera-eeat-banner__body {
        flex-basis: calc(100% - 48px);
    }

    /* On mobile, hide the dot separator and break the standards onto a new line. */
    .vera-eeat-banner--combined .vera-eeat-banner__separator {
        display: none;
    }

    .vera-eeat-banner--combined .vera-eeat-banner__standards {
        display: block;
        margin-top: 4px;
    }
}
