.custom-two-column {
    display: flex;
    gap: var(--blog-gap, 0px); /* adjust column gap via CSS variable */
}

.custom-two-column .column-left {
    flex: 0 0 65%;
    min-width: 0;
    background-color: #FFFEF9;
}

.pre-blog-text{
    display: table;
    width: 100%;
}

.pre-blog-text h2{
    font-size: 32px;
    margin: 0px 0px 10px 0px;
    padding: 0;
    color: #1F1F1D;
}

.pre-blog-text p{
    font-size: 16px;
    margin: 0;
    padding: 0;
    color: #5C5C53;
}


.custom-two-column .column-right {
    flex: 0 0 35%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px; /* gap between the 4 mini items */
    background-color: #F3EFE4;
}

.woo-featured-post .post-title a {
    margin: 0 20px 0px 0px;
    color: #1F1F1D;
    font-size: 22px;
    font-weight: 600;
}

.woo-featured-post .post-thumbnail {
    margin: 20px 0px;
}
.woo-featured-post .post-thumbnail img{
    border-radius: 2px;
}
.woo-featured-post .post-excerpt {
    margin: 0 20px 0px 0px;
    color: #5C5C53;
    font-size: 14px;
}

.woo-featured-post .read-more {
    display: block;
    margin-top: 15px;
    color: #5C5C53;
    font-size: 14px;
    font-weight: 500;
}

.mini-post {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    gap: 10px;
    border-bottom: 1px #E0DDD9 solid;
    padding: 10px 20px;
}

.mini-post:not(.mini-heading):hover{
    background-color: #D8D8C6;
    cursor: pointer;
}

.mini-post.mini-heading{
    text-align: center;
    align-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #5C5C53;
    display: block;
    padding: 20px;
}

.mini-post .mini-thumbnail img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.mini-title a{
    color: #1F1F1D;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.mini-title a:hover{
    color: #1F1F1D;
}

.mini-btn{
    display: flex;
    width: 100%;
    text-align: center;
    align-content: center;
}

.mini-btn a {
    display: block;
    width: 80%;
    background-color: #5C5C53;
    border: 2px #5C5C53 solid;
    border-radius: 5px;
    color: #FFFEF9;
    padding: 10px 15px;
    margin: auto;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s;
}
.mini-btn a:hover {
    background-color: #9b9b8b;
    border: 2px #9b9b8b solid;
    color: #fff;
}
@media (max-width: 800px) {
    .custom-two-column {
        flex-direction: column;
    }
    .custom-two-column .column-left,
    .custom-two-column .column-right {
        flex: 0 0 auto;
    }
    .woo-featured-post .read-more{
        margin-bottom: 20px;
    }
    .mini-post {
        gap: 15px;
        padding: 15px 20px;
    }
    .mini-title a{
        font-size: 14px;
        font-weight: 600;
        line-height: 15px;
    }
    .mini-btn {
        padding: 20px 0px;
    }
}
