.fanza-sample-widget {
    margin: 2.5rem 0;
}

.fanza-sample-widget__title {
    margin: 0 0 1rem;
    font-size: 1.35rem;
    line-height: 1.4;
}

.fanza-sample-widget__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.fanza-gallery-item {
    display: block;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: opacity 0.2s ease;
}

.fanza-gallery-item:hover {
    opacity: 0.85;
}

.fanza-gallery-item img {
    display: block;
    width: 100%;
    height: 90px;
    object-fit: cover;
}

.fanza-gallery-item:focus-visible {
    outline: 3px solid #2271b1;
    outline-offset: 3px;
}

@media (max-width: 640px) {
    .fanza-sample-widget__grid {
        gap: 10px;
    }
}
