.blog-section {
    padding: 100px 0;
    background: transparent;
}

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

.blog-card-simple {
    background: rgba(10, 10, 18, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.blog-card-simple:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.25);
}

.blog-card-img {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(212, 175, 55, 0.08);
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    padding: 5px 12px;
    background: #D4AF37;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.blog-card-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 10px;
}

.blog-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-title a:hover {
    color: var(--mw-gold);
}

.blog-excerpt {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 20px;
    flex: 1;
}

.blog-readmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px auto 0;
    padding: 12px 28px;
    background: #D4AF37;
    color: #0A0A12;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 8px 15px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid #1A1630;
    transition: all 0.3s ease;
}

.blog-readmore:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.7), 0 12px 20px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1);
    color: #0A0A12;
}

.blog-readmore svg {
    width: 16px;
    height: 16px;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    background: rgba(10, 10, 18, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.blog-pagination .page-numbers:hover {
    border-color: #D4AF37;
    color: #fff;
    background: rgba(10, 10, 18, 0.8);
}

.blog-pagination .page-numbers.current {
    background: #D4AF37;
    border-color: transparent;
    color: #0A0A12;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.no-posts {
    text-align: center;
    padding: 80px 20px;
}

.no-posts h2 {
    margin-bottom: 15px;
}

.no-posts p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

@media (max-width: 1024px) {
    .blog-grid-simple {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-grid-simple {
        grid-template-columns: 1fr;
    }
}
