
.atmos-gallery {
    column-count: 2;
    column-gap: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0 10px;
    position: relative;
    }
    .atmos-gallery a {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 15px;
    break-inside: avoid-column;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .atmos-section .rotating-text-badge-container {
    position: absolute;
    top: -100px;
    right: 20px;
    z-index: 10;
    margin-top: 0;
    width: 150px;
    height: 150px;
    overflow-x: hidden;
    }
    .atmos-gallery img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 3px;
    transition: filter 0.3s ease-in-out;
    }
    .atmos-gallery a:hover img {
    filter: brightness(0.7);
    }
    #image-zoom-overlay {
    position: fixed;
    top: 0;
    left: calc(100%/3);
    width: calc(100%/3);
    height: 100%;
    background-color: rgba(243, 243, 241, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
    box-sizing: border-box;
    }
    #image-zoom-content {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 3px;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
    }
    #image-zoom-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #42ACD1;
    font-size: 40px;
    font-weight: normal;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    }
    #image-zoom-close:hover {
    color: #ccc;
    }
    @media screen and (max-width: 768px) {
    #image-zoom-overlay {
    left: 0;
    width: 100%;
    }
    }
    .atmos-gallery .description-left {
    column-span: all;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: left;
    }
    .anim-on-scroll.animate__fadeInUp {
    --animate-duration: 3s;
    }
    .atmos-gallery .description-left.animate__fadeInUp {
    --animate-delay: 0.5s;
    }
    .atmos-section > .description-left.animate__fadeInUp {
    --animate-delay: 0.2s;
    }
    .atmos-section > .button-wrapper.animate__fadeInUp {
    --animate-delay: 0.4s;
    }