
.blog-wrap { max-width: 100%;    
    background-color: #E5E5E5;
}
.blog-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #b08a5a;
    margin: 12px auto 0;
}

/* GRID */

.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/* CARD */

.post-card {
    background: #ffffff;
    display: flex;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    align-items: flex-start;
}

.post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* IMAGE */

.post-image {
    flex: 0 0 220px;
    overflow: hidden;
    border-radius: 8px;
}

.post-image img {
    width: 220px;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.08);
}

/* CONTENT */

.post-content {
    padding-left: 25px;
    flex: 1;
}

.post-content h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 600;
    color: #222;
}

.meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

.separator {
    margin: 0 8px;
}

.post-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 18px;
}

/* BUTTON */

.btn {
    display: inline-block;
    padding: 9px 18px;
    background-color: #b08a5a;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #96724b;
}

/* PAGINATION */

.pagination {
    text-align: center;
    margin-top: 40px;
}

.pagination a {
    display: inline-block;
    margin: 0 6px;
    padding: 8px 14px;
    text-decoration: none;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.pagination a:hover {
    background-color: #f2f2f2;
}

.pagination a.active {
    background-color: #b08a5a;
    color: #fff;
    border-color: #b08a5a;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }

    .post-card {
        flex-direction: column;
    }

    .post-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .post-image img {
        width: 100%;
        height: 400px;
    }

    .post-content {
        padding-left: 0;
    }
}
