/* ================= BLOG LISTING ================= */

.blog-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;

    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.02)
    );

    border: 1px solid rgba(212,175,55,0.25);
    backdrop-filter: blur(12px);

    transition: 0.4s ease;
}
.blog-card {
    display: flex;
    flex-direction: column;
    height: 420px; /* fixed rectangle height */
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
}

.blog-image {
    height: 230px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

.blog-content p {
    color: #e6e6e6;
    font-size: 14px;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}



/* ================= SINGLE BLOG ================= */

.blog-hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.blog-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.blog-hero-overlay h1 {
    color: #fff;
    font-size: 40px;
    max-width: 800px;
}

.blog-card-long {
    max-width: 900px;
    margin: auto;
    padding: 40px;

    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.02)
    );

    border-radius: 20px;
    border: 1px solid rgba(212,175,55,0.25);
    color: #e6e6e6;
    line-height: 1.8;
}

.blog-bottom-image {
    max-width: 800px;
    margin: 40px auto;
}

.blog-bottom-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;

    border: 1px solid rgba(212,175,55,0.3);
}
.blog-bottom-image img {
    transition: 0.4s ease;
}

.blog-bottom-image img:hover {
    transform: scale(1.03);
}

