.blog-page {
    padding-top: 160px;
    min-height: 100vh;
    background-color: var(--bg);
}

/* Hero Section */
.blog-hero {
    padding: 0 var(--padding-side);
    margin-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
}

.blog-heading {
    margin-bottom: 0;
}

/* Grid Layout - Clean 3 Column */
.blog-grid-container {
    padding: 0 var(--padding-side);
    margin-bottom: 140px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}

/* Professional Card Styling */
.blog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.blog-card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin-bottom: 24px;
    background-color: #0f0f0f;
    border-radius: 2px;
}

.blog-card-img-container {
    width: 100%;
    height: 100%;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

/* Pinned Badge - Minimal & Clean */
.pinned-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--cf);
    color: #fff;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
    border-radius: 2px;
}

/* Content */
.blog-meta {
    margin-bottom: 12px;
}

.blog-date {
    font-size: 11px;
    color: var(--tx2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-card-title {
    color: var(--cf);
}

/* Read More Link */
.view-blog-link {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--tx2);
    transition: color 0.3s ease, gap 0.3s ease;
}

/* Stretched Link */
.view-blog-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.blog-card:hover .view-blog-link {
    color: var(--tx);
    gap: 12px;
}

.link-arrow svg {
    width: 16px;
    height: 16px;
}

/* Fallback Header */
.blog-card-img-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
}

.blog-card-img-fallback img {
    width: 45%;
    max-width: 160px;
    opacity: 0.5;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover .blog-card-img-fallback img {
    transform: scale(1.1);
    opacity: 0.9;
}

/* Responsiveness */
@media (max-width: 1100px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }
}

@media (max-width: 768px) {
    .blog-page {
        padding-top: 120px;
    }

    .blog-hero {
        margin-bottom: 60px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .blog-card-img-wrapper {
        aspect-ratio: 16 / 9;
    }
}