/* --- BLOG PAGE SPECIFICS --- */
.blog-page {
    background: #050505;
    color: #fff;
}

/* Cinematic Hero */
.blog-hero {
    height: 70vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80&w=1600') fixed center/cover;
    margin-bottom: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.4), #050505);
}

.blog-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.blog-hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    margin-top: 20px;
}

/* Featured Post Styling */
.featured-post {
    display: flex;
    gap: 50px;
    align-items: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 40px;
    margin-bottom: 50px;
}

.post-img {
    flex: 1.2;
    border-radius: 20px;
    overflow: hidden;
}

.post-img img { width: 100%; transition: 0.5s; }
.featured-post:hover .post-img img { transform: scale(1.05); }

.post-info { flex: 1; }

.category {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
}

.read-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}

.read-btn:hover { background: var(--accent); color: #000; }

/* Grid Styling */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.grid-item {
    background: rgba(255,255,255,0.02);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.item-img { height: 200px; overflow: hidden; }
.item-img img { width: 100%; height: 100%; object-fit: cover; }

.item-content { padding: 25px; display: flex; justify-content: space-between; align-items: flex-end; }

.arrow-link {
    font-size: 1.5rem;
    color: var(--accent);
    text-decoration: none;
}

/* --- MOBILE RESPONSIVE BLOG --- */
@media (max-width: 992px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-post { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .blog-hero { height: 50vh; }
    .blog-grid { grid-template-columns: 1fr; gap: 20px; }
    .featured-post { padding: 20px; margin-bottom: 30px; }
    .post-info h2 { font-size: 1.8rem; }
}
.blog-footer{
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}
.item-content a:hover{
    color: #00f2ff!important;
    text-decoration: none;
}