/**
 * Pingo Bingo - News Page Styles
 */

.news-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.news-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.news-card .card-title {
    font-weight: 700;
    color: var(--color-navy);
    font-size: 1.1rem;
    line-height: 1.4;
}

.news-card .card-text {
    font-size: 0.9rem;
    line-height: 1.6;
}

.news-card .badge {
    font-size: 0.7rem;
    padding: 0.35em 0.65em;
}

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, var(--color-purple), var(--color-blue));
    color: white;
}

/* Ensure buttons look good */
.news-card .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* Purple badge */
.bg-purple {
    background-color: #6f42c1 !important;
}

.bg-purple:hover {
    background-color: #5a32a3 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .news-card .card-title {
        font-size: 1rem;
    }

    .news-card .card-text {
        font-size: 0.85rem;
    }
}
