/* Wrapper container identical to .downloads-card */
.page-card {
    background-color: rgba(14, 15, 16, 0.75);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    color: #ffbe55;
    width: 100%;
    text-align: left;
    margin-top: 30px;
    box-sizing: border-box;
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
}

/* Matching headers (e.g., h2/h3 inside card) */
.page-card h1,
.page-card h2,
.page-card h3 {
    font-size: 26px;
    font-family: "Palanquin Dark", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    margin: 30px 0 10px 0;
    color: #ffbe55;
}

/* Body text */
.page-card p,
.page-card li {
    color: #dddddd;
    line-height: 1.6;
    margin-bottom: 1em;
}

/* Read More links */
.explore-read-more {
    color: #ffcc66;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.explore-read-more:hover {
    text-decoration: underline;
    background-color: rgba(173, 216, 230, 0.25);
}

/* Responsive spacing and padding fix */
@media only screen and (max-width: 768px) {
    .page-card {
        padding: 0 20px 30px;
        margin-top: 10px;
    }

    .page-card h1,
    .page-card h2 {
        font-size: 22px;
        margin-top: 30px;
        padding: 0 10px;
    }

    .page-card > h2 {
        padding: 0 10px !important;
    }
}

@media only screen and (max-width: 480px) {
    .page-card {
        padding: 0 15px 25px;
        margin-bottom: 40px;
    }
}
/* Post page styling */

.page-card h1 {
    font-size: 28px;
    color: #ffbe55;
    font-family: "Palanquin Dark", sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-card .post-content {
    font-size: 1.05em;
    line-height: 1.8;
    color: #dddddd;
    margin-top: 20px;
}

.page-card .post-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

.page-card .post-content h2,
.page-card .post-content h3 {
    font-family: "Palanquin Dark", sans-serif;
    color: #ffbe55;
    margin: 30px 0 10px;
}

.page-card .post-content p {
    margin-bottom: 1.2em;
}
/* ==== EXPLORE POST CARD ==== */
.explore-post-card {
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
    text-align: left;
}

/* ==== THUMBNAIL IMAGE ==== */
.og-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

/* ==== POST META INFO ==== */
.post-meta {
    font-size: 0.95em;
    color: #bbbbbb;
    margin: 10px 0;
    line-height: 1.4;
}

.post-meta span {
    display: block;
}

/* ==== CONTENT SNIPPET ==== */
.post-snippet {
    font-size: 1.05em;
    color: #dddddd;
    line-height: 1.6;
    margin: 10px 0 20px;
}
@media only screen and (max-width: 768px) {
    .explore-post-card {
        padding-bottom: 15px;
        margin-bottom: 30px;
    }

    .og-image {
        margin: 10px 0;
    }

    .post-snippet {
        font-size: 1em;
    }
}
/* Explore post preview from all categories */
.explore-post-card {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
    text-align: left;
}

.explore-post-card h3 a {
    color: #ffbe55;
    font-size: 1.3em;
    text-decoration: none;
}

.explore-post-card h3 a:hover {
    text-decoration: underline;
}

.post-meta {
    font-size: 0.95em;
    color: #bbbbbb;
    margin: 10px 0;
    line-height: 1.4;
}

.explore-read-more {
    color: #ffcc66;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}
.pagination {
    margin-top: 30px;
    text-align: center;
}

.pagination a {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    background-color: #1a1a1a;
    color: #ffcc66;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.pagination a.current-page {
    background-color: #ffbe55;
    color: #0e0f10;
}
