.xgf-static-page .hsp-static-content {
    max-width: 1080px;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 48px);
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 24px;
    line-height: 2;
}

.xgf-static-page .hsp-static-content h2,
.xgf-static-page .hsp-static-content h3 {
    margin-top: 1.6em;
    margin-bottom: .6em;
    line-height: 1.5;
}

.xgf-static-page .hsp-static-content details {
    margin: 12px 0;
    padding: 16px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
}

.xgf-static-page .hsp-static-content summary {
    cursor: pointer;
    font-weight: 700;
}

.xgf-blog-main {
    background: #f6f7f9;
    min-height: 70vh;
}

.xgf-blog-hero {
    padding: clamp(48px, 7vw, 90px) 20px;
    text-align: center;
    background: #fff;
}

.xgf-blog-hero span {
    color: #ff6900;
    font-weight: 800;
    letter-spacing: .12em;
}

.xgf-blog-hero h1 {
    margin: 12px 0;
    font-size: clamp(32px, 5vw, 58px);
}

.xgf-blog-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: #5f6570;
}

.xgf-blog-section {
    padding: 48px 20px 72px;
}

.xgf-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.xgf-post-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e6e8ec;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .06);
}

.xgf-post-image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.xgf-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xgf-post-body {
    padding: 22px;
}

.xgf-post-body time {
    color: #7b8190;
    font-size: 13px;
}

.xgf-post-body h2 {
    margin: 10px 0 12px;
    font-size: 20px;
    line-height: 1.7;
}

.xgf-post-body h2 a {
    color: #111827;
    text-decoration: none;
}

.xgf-post-excerpt {
    color: #5f6570;
    line-height: 1.9;
}

.xgf-read-more {
    display: inline-block;
    margin-top: 14px;
    color: #ff6900;
    font-weight: 700;
}

.xgf-pagination {
    margin-top: 36px;
    text-align: center;
}

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

@media (max-width: 640px) {
    .xgf-blog-section {
        padding-inline: 12px;
    }

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

    .xgf-static-page .hsp-static-content {
        padding: 20px 16px;
        border-radius: 18px;
    }
}

