.risc-ads-slideshow {
    margin-inline: var(--theme-default-editor, auto);
    margin-bottom: 0;
    width: var(--theme-default-editor, var(--theme-block-width));
    max-width: var(--theme-default-editor, var(--theme-block-max-width));
    margin-bottom: var(--theme-content-spacing);
    box-sizing: border-box;
    overflow: hidden; /* Esconder partes da imagem que excedam o contêiner */
}

.risc-ads-slide {
    display: none;
    position: relative;
    padding-top: 12.37%; /* 12 / 97 * 100 = 12.37% */
}

.risc-ads-slide:first-child {
    display: block;
}

.risc-ads-slide img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
}

.risc-ads-slideshow-2 {
    margin-inline: var(--theme-default-editor, auto);
    margin-bottom: 0;
    width: var(--theme-default-editor, var(--theme-block-width));
    max-width: var(--theme-default-editor, var(--theme-block-max-width));
    margin-bottom: var(--theme-content-spacing);
    box-sizing: border-box;
    overflow: hidden; /* Esconder partes da imagem que excedam o contêiner */
}

.risc-ads-slide-2 {
    display: none;
    position: relative;
    padding-top: 100%; /* 12 / 97 * 100 = 12.37% */
}

.risc-ads-slide-2:first-child {
    display: block;
}

.risc-ads-slide-2 img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
}

.custom-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.custom-lightbox-content {
    position: relative;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .custom-lightbox-content {
      padding: 15px;
    }
  }

.custom-lightbox-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
}