
.jase-blog-page {
    background: #fbf7f4;
    color: #2f2933;
}

.jase-blog-hero {
    background:
        linear-gradient(135deg, rgba(65, 38, 78, 0.92), rgba(92, 35, 61, 0.86)),
        #432650;
    color: #fbf7f4;
    padding: 96px 24px 84px;
    text-align: center;
}

.jase-blog-hero-inner {
    max-width: 980px;
    margin: 0 auto;
}

.jase-eyebrow {
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.82rem;
    color: #e6ccd8;
}

.jase-blog-hero h1 {
    margin: 0;
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #fbf7f4;
}

.jase-blog-subtitle {
    max-width: 760px;
    margin: 28px auto 0;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.55;
    color: #f1e7ea;
}

.jase-blog-intro {
    padding: 48px 24px 12px;
}

.jase-blog-intro-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.jase-blog-intro p {
    font-size: 1.12rem;
    line-height: 1.7;
    margin: 0;
}

.jase-post-grid-wrap {
    padding: 42px 24px 90px;
}

.jase-post-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.jase-post-card {
    background: #fffdfb;
    border: 1px solid rgba(67, 38, 80, 0.14);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(47, 41, 51, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.jase-post-image-link {
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #e9e0e5;
}

.jase-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 260ms ease;
}

.jase-post-card:hover .jase-post-image {
    transform: scale(1.04);
}

.jase-post-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.jase-post-date {
    margin: 0 0 12px;
    font-size: 0.88rem;
    color: #6b5c70;
}

.jase-post-card h2 {
    margin: 0 0 14px;
    font-size: 1.55rem;
    line-height: 1.15;
    color: #432650;
}

.jase-post-card h2 a {
    color: inherit;
    text-decoration: none;
}

.jase-post-card h2 a:hover {
    color: #7f3857;
}

.jase-post-excerpt {
    color: #443b49;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 22px;
}

.jase-post-excerpt p {
    margin: 0;
}

.jase-read-more {
    margin-top: auto;
    display: inline-flex;
    align-self: flex-start;
    background: #432650;
    color: #fff !important;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 600;
}

.jase-read-more:hover {
    background: #7f3857;
}

.jase-pagination {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 28px;
}

.jase-pagination .page-numbers {
    display: inline-block;
    margin: 0 4px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fffdfb;
    color: #432650;
    text-decoration: none;
    border: 1px solid rgba(67, 38, 80, 0.18);
}

.jase-pagination .current {
    background: #432650;
    color: #fff;
}

.jase-no-posts {
    grid-column: 1 / -1;
    text-align: center;
    background: #fffdfb;
    border-radius: 24px;
    padding: 48px;
}

@media (max-width: 900px) {
    .jase-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .jase-blog-hero {
        padding: 72px 20px 64px;
    }

    .jase-post-grid {
        grid-template-columns: 1fr;
    }

    .jase-post-grid-wrap {
        padding-left: 18px;
        padding-right: 18px;
    }
}
