body {
    background: #ffffff;
    background-image:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.2) 25%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.2) 75%,
            rgba(255, 255, 255, 0.15) 100%),
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        url('../images/bg-img.png');
    background-attachment: fixed, fixed, fixed, fixed, fixed;
    background-size: 100% 100%, 100% 100%, 100% 100%, cover, cover;
    background-position: 0 0, 0 0, 0 0, center center, center center;
    background-repeat: repeat, no-repeat, no-repeat, no-repeat, no-repeat;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(233, 213, 255, 0.4) 0%,
            rgba(221, 214, 254, 0.3) 25%,
            rgba(196, 181, 253, 0.25) 50%,
            rgba(221, 214, 254, 0.3) 75%,
            rgba(233, 213, 255, 0.35) 100%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(221, 214, 254, 0.1) 30%,
            rgba(196, 181, 253, 0.05) 50%,
            transparent 70%);
    pointer-events: none;
    z-index: 0;
}

#page.site {
    position: relative;
    z-index: 1;
}

.site-content {
    position: relative;
    z-index: 1;
}

.home .site-content .container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Homepage Grid Layout */
.home #primary {
    padding: 0;
}

.home #main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0;
}

.home #main>article {
    width: 100%;
    margin-bottom: 0;
    /* Let grid handle gap */
}

/* Pagination spans full width */
.home #main .navigation.pagination {
    grid-column: 1 / -1;
    margin-top: 20px;
    width: 100%;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .home #main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .home #main {
        grid-template-columns: 1fr;
    }

    .home .site-content .container {
        padding: 20px;
        margin-top: 20px;
        /* Reduce padding on mobile */
    }
}

.bp-post {
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
}

.post-card,
article {
    /* background: rgba(255, 255, 255, 0.6) !important; */
    border-radius: 12px;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
    /* backdrop-filter: blur(8px); */
    transition: all 0.3s ease;
}

.post-card:hover,
article:hover {
    /* background: rgba(255, 255, 255, 0.75) !important; */
}