.same-height-card {
    display: flex;
    flex-direction: column;
    height: 650px;
}

.donations-three__item__content {
    flex-grow: 1;
}

.custom-prev,
.custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
    z-index: 10;
}

.custom-prev {
    left: -20px;
}

.custom-next {
    right: -20px;
}

@media (max-width: 768px) {

    .custom-prev,
    .custom-next {
        display: none;
    }
}

.same-height-support {
    height: 350px;
    display: flex;
    flex-direction: column;
}

.donate-three__support img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.donate-three__support__content {
    flex-grow: 1;
    padding: 10px;
}


.same-height-area {
    height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ARROWS */
.area-prev,
.area-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.area-prev {
    left: -20px;
}

.area-next {
    right: -20px;
}

@media (max-width: 768px) {

    .area-prev,
    .area-next {
        display: none;
    }
}

.video-popup-btn {
    border: none;
    background: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
}

/* MODAL */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 32px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}





/* TABS */
.gallery-tabs button {
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 30px;
    background: #eee;
    cursor: pointer;
}

.gallery-tabs button.active {
    background: #ff9f1c;
    color: #fff;
}

/* MASONRY */
.gallery-masonry {
    column-count: 4;
    column-gap: 15px;
}

.gallery-item {
    position: relative;
    margin-bottom: 15px;
    break-inside: avoid;
}

.gallery-item img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

/* HOVER */
.gallery-hover {
    position: absolute;
    inset: 0;
    background: rgba(255, 159, 28, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    border-radius: 10px;
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
}

.gallery-hover button {
    background: transparent;
    border: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gallery-masonry {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .gallery-masonry {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .gallery-masonry {
        column-count: 1;
    }
}