/* Block: Full Image */

.block-full-image {
    width: 100%;
}

.block-full-image__frame {
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.block-full-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.block-full-image__frame:hover img {
    transform: scale(1.02);
}

@container page-content (max-width: 1024px) {
    .block-full-image__frame { border-radius: var(--border-radius-md); }
}

@container page-content (max-width: 768px) {
    .block-full-image img { aspect-ratio: 1 / 1; }
}