.news-gallery-item {
    transition: transform 0.2s ease;
}

.news-gallery-item:hover {
    transform: translateY(-2px);
}

.news-gallery-item:hover .hover-bg-opacity-25 {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.news-gallery-item:hover .bi-zoom-in {
    opacity: 1 !important;
}

.news-gallery-swiper .swiper-slide {
    height: auto;
}

.news-gallery-swiper .width-300 {
    width: 150px !important;
}

@media (max-width: 576px) {
    .news-gallery-swiper .width-300 {
        width: 120px !important;
    }
}

/* Modern Mobile App Buttons */
.mobile-app-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.mobile-app-btn:active {
    transform: scale(0.98);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.mobile-app-btn-pdf {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
}

.mobile-app-btn-link {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.mobile-app-btn i {
    font-size: 1.35rem;
    margin-right: 10px;
}

.action-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

@media (min-width: 576px) {
    .action-buttons-container {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .mobile-app-btn {
        flex: 1;
        min-width: 200px;
    }
}

