/* ===== CONTAINERS ===== */

.ge-cptp-container {
    max-width: none;
    /* allow header to reach 1200px */
    margin: 0 auto;
    padding: 0;
    background: #fff;
}

/* The article itself stays centered */
.ge-cptp-article {
    margin: 0 auto;
    background: #fff;
}

/* Header (image, title, meta) */
.ge-cptp-header {
    max-width: 1200px;
    margin: 0 auto 24px;
    padding: 32px 20px 0;
    text-align: center;
}

/* Featured image wrapper */
.ge-cptp-thumb {
    max-width: 1200px;
    margin: 0 auto 24px;
}

.ge-cptp-thumb img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Narrow content area (everything except header) */
.ge-cptp-narrow {
    max-width: 840px;
    margin: 0 auto;
    padding: 0 20px 32px;
}

/* ===== TYPOGRAPHY ===== */

.ge-cptp-title {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    margin: 16px 0 8px;
}

.ge-cptp-meta {
    font-size: 14px;
    color: #666;
}

.ge-cptp-sep {
    margin: 0 8px;
    opacity: 0.6;
}

/* ===== CONTENT ===== */

.ge-cptp-content {
    font-size: 18px;
    line-height: 1.75;
}

.ge-cptp-content p {
    margin: 0 0 1.25em;
}

.ge-cptp-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ===== FOOTER ===== */

.ge-cptp-footer {
    margin-top: 24px;
    border-top: 1px solid #eee;
    padding-top: 16px;
}

.ge-cptp-tags a {
    display: inline-block;
    margin: 6px 6px 0 0;
    padding: 6px 10px;
    background: #f5f5f7;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
}

/* ===== POST NAVIGATION ===== */

.ge-cptp-post-nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px dashed #e5e5e5;
}

.ge-cptp-prev a,
.ge-cptp-next a {
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .ge-cptp-header {
        max-width: 100%;
        padding: 24px 16px 0;
    }

    .ge-cptp-narrow {
        max-width: 100%;
        padding: 0 16px 24px;
    }
}