        /* SECTION */
        .latest-posts {
            max-width: 1200px;
            margin: auto;
        }

        /* TITLE */
        .section-title {
            text-align: center;
            font-size: 36px;
            color: #3b220f;
            margin-bottom: 30px;
        }

        /* GRID */
        .posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        /* CARD */
        .post-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            text-decoration: none;
            color: #222;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
            transition: 0.3s;
        }

        .post-card:hover {
            transform: translateY(-8px);
        }

        /* IMAGE */
        .post-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        /* CONTENT */
        .post-content {
            padding: 22px;
        }

        /* DATE */
        .post-date {
            font-size: 14px;
            color: #999;
            margin-bottom: 12px;
        }

        /* TITLE */
        .post-title {
            font-size: 22px;
            font-weight: bold;
            line-height: 1.5;
            margin-bottom: 12px;
            color: #3b220f;
        }

        /* DESC */
        .post-desc {
            font-size: 15px;
            line-height: 1.7;
            color: #666;
            margin-bottom: 20px;
        }

        /* BUTTON */
        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #3b220f;
            color: white;
            padding: 12px 18px;
            border-radius: 50px;
            font-size: 14px;
        }

        .read-more:hover {
            background: #5f381d;
        }

        /* =========================
        PAGINATION
    ========================= */

        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 40px;
        }

        .page-btn {
            border: none;
            padding: 12px 18px;
            cursor: pointer;
            font-size: 15px;
            font-weight: bold;
            border-radius: 12px;
            background: white;
            color: #3b220f;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: 0.3s;
        }

        .page-btn:hover {
            transform: translateY(-3px);
        }

        .page-btn.active {
            background: #3b220f;
            color: white;
        }