/**
 * My Logos page styling
 */
.logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    font-family: var(--theme-font-family);
}

.logo-item {
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 16px;
    background: #fff;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
}

.logo-item:hover {
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.logo-image {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
    background: #f9f9f9;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
}

.logo-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-name {
    display: block;
    font-weight: 600;
    font-size: 16px;
}

.logo-date {
    display: block;
    color: #777;
    font-size: 14px;
}

.logo-actions {
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.logo-actions a {
    color: #cc0000 !important;
    text-decoration: none !important;
    font-size: 14px;
    display: contents;
}

.logo-actions a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 767px) {
    .logos-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}