/* Global Author Box - Styling */

.gab-container {
    background: #fdfdfd;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 20px 0 30px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.gab-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
}

.gab-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gab-icon {
    font-size: 18px;
    background: #f0f0f0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.gab-text {
    display: flex;
    flex-direction: column;
}

.gab-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.5px;
    font-weight: 600;
    line-height: 1.2;
}

.gab-value {
    font-size: 14px;
    color: #222;
    font-weight: 700;
}

.gab-trust-badge {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed #eee;
    font-size: 12px;
    color: #008a4e;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .gab-meta-row {
        gap: 15px;
    }
    .gab-item {
        width: 100%;
        border-bottom: 1px solid #f9f9f9;
        padding-bottom: 10px;
    }
    .gab-item:last-child {
        border-bottom: none;
    }
}
