/* ============================================
   NEWS PAGE SPECIFIC STYLES
   ============================================ */

/* NEW Badge for recent articles */
.new-badge {
    display: inline-block;
    background: #c92a2a;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Blog card link styling */
.blog-card a.btn-read-more {
    text-decoration: none;
    display: inline-block;
}

/* Blog card image styling */
.blog-media img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-media img {
    transform: scale(1.05);
}

/* Blog grid - ensure 3 columns on desktop */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog header styling */
.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header .subtitle {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    display: inline-block;
    padding: 8px 28px;
    background: #c92a2a;
    border-radius: 50px;
    font-weight: 600;
}

.blog-header h1 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    margin-top: 0.5rem;
}

.blog-header p {
    font-size: 1.3rem;
    color: #ddd;
    max-width: 600px;
    margin: 1rem auto;
    line-height: 1.6;
}

/* Blog card base styling (already in style.css, but ensure consistency) */
.blog-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.blog-card.card-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.blog-card:nth-child(1).card-visible { transition-delay: 0.1s; }
.blog-card:nth-child(2).card-visible { transition-delay: 0.3s; }
.blog-card:nth-child(3).card-visible { transition-delay: 0.5s; }

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.blog-media {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #0a0a0a;
}

.blog-media img,
.blog-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-preview {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-date {
    display: block;
    color: #888;
    font-size: 0.8rem;
    margin-top: 1rem;
}

.btn-read-more {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: #c92a2a;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.btn-read-more:hover {
    background: #a01e1e;
}

/* Blog card link styling - make entire card clickable */
.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.blog-card-link:hover {
    transform: translateY(-5px);
}

.blog-card-link:hover .btn-read-more {
    background: #a01e1e;
}

/* Ensure btn-read-more looks like a button */
.btn-read-more {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: #c92a2a;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

/* Remove button default styles since we're using span */
button.btn-read-more {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}