/* Public Pages Specific Styles */

.public-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.public-card:hover {
    transform: translateY(-8px);
    border-color: rgba(96, 165, 250, 0.5); /* blue-400 */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

.public-card .card-image {
    transition: transform 0.5s ease;
}

.public-card:hover .card-image {
    transform: scale(1.05);
}

.public-card-badge {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(4px);
}

/* Custom scrollbar for some regions if needed */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #1f2937;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}
