/* Image Block */
.image-block {
    padding: 2rem 0;
}

.image-wrapper {
    text-align: center;
}

.image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: inline-block;
}

.image-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

/* Size variants */
.image-size-full .image-wrapper img {
    width: 100%;
}

.image-size-large .image-wrapper img {
    max-width: 1000px;
}

.image-size-contained .image-wrapper img {
    max-width: 800px;
}

.image-size-medium .image-wrapper img {
    max-width: 600px;
}

.image-size-small .image-wrapper img {
    max-width: 400px;
}

/* Alignment */
.image-align-left .image-wrapper {
    text-align: left;
}

.image-align-center .image-wrapper {
    text-align: center;
}

.image-align-right .image-wrapper {
    text-align: right;
}