/* Content Images Styling */
.content-image-right {
    float: right;
    margin: 0 0 1.5rem 2rem;
    max-width: 45%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 28, 36, 0.08);
    /* Matches --shadow-subtle */
    transition: transform 0.3s ease;
}

.content-image-left {
    float: left;
    margin: 0 2rem 1.5rem 0;
    max-width: 45%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 28, 36, 0.08);
    transition: transform 0.3s ease;
}

.content-image-full {
    width: 100%;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 28, 36, 0.08);
}

.content-image-right:hover,
.content-image-left:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {

    .content-image-right,
    .content-image-left {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 1.5rem 0;
    }
}