/* ============================================================
   Ölçü Birimi Görselleri – Frontend Styles
   ============================================================ */

.obg-frontend-wrap {
    margin: 16px 0;
}

.obg-frontend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.obg-frontend-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px;
    background: #fff;
}

.obg-frontend-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.obg-frontend-label {
    display: none;
}

/* Responsive */
@media (max-width: 480px) {
    .obg-frontend-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .obg-frontend-item img { max-height: 60px; }
    .obg-frontend-label { font-size: 12px; }
}
