
.fw-100 { font-weight: 100; }
.fw-200 { font-weight: 200; }
.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }

lead {
    font-weight: 600;
    color: #444444;
}

.text-third {
    color: #444444;
}

.hover {
    transition: transform 0.2s, box-shadow 0.2s;
}

.hover:hover {
    transform: scale(1.02);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.3);
}

.text-justify {
    text-align: justify !important;
}


.article-gallery-tile {
    position: relative;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    border-radius: 6px;
}

.article-gallery-tile img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.article-gallery-more {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .55);
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .9);
    padding: 24px;
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox figure {
    margin: 0;
    max-width: min(1100px, 88vw);
    max-height: 88vh;
}

.gallery-lightbox img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
}

.gallery-lightbox figcaption {
    color: #ffffff;
    text-align: center;
    margin-top: 10px;
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    border: 0;
    background: rgba(255, 255, 255, .15);
    color: #ffffff;
    cursor: pointer;
}

.gallery-lightbox-close {
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    font-size: 34px;
    line-height: 1;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    top: 50%;
    width: 52px;
    height: 72px;
    transform: translateY(-50%);
    font-size: 56px;
    line-height: 1;
}

.gallery-lightbox-prev {
    left: 18px;
}

.gallery-lightbox-next {
    right: 18px;
}

.gallery-lightbox-open {
    overflow: hidden;
}

.article-gallery-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 24px 0;
}

@media (max-width: 1199.98px) {
    .article-gallery-preview {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767.98px) {
    .article-gallery-preview {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .article-gallery-preview {
        grid-template-columns: 1fr;
    }
}



.article-audio {
    width: 100%;
    display: block;
    margin: 5px 0;
}


