.scroll-gallery-wrapper {
    position: relative;
}
.scroll-gallery {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
}
.scroll-gallery::-webkit-scrollbar {
    display: none;
}
.card {
    flex: 0 0 auto;
    cursor: pointer;
    transition: transform 0.3s;
    margin-top: 7px;
}
.card:hover {
    transform: translateY(-7px);
}
.carousel-btn {
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 5;
}
.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}
.scroll-left {
    left: -20px;
}
.scroll-right {
    right: -20px;
}

.post-card {
    height: 47rem !important;
    border: 1px solid var(--bs-border-color) !important;
}

.instagram-media {
    max-width: 100%;
    width: 100%;
    min-width: unset;
    transform: scale(0.9);
    transform-origin: center;
    margin-bottom: 0 !important;
    padding-bottom: 0;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s;
    cursor: pointer;
}

.card:hover .video-play-overlay {
    opacity: 1;
}

.play-btn {
    font-size: 3rem;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}
