/* Column Grid Layout */
.newslist.column-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.newslist.column-grid li {
    display: block;
    /* Stack content */
    margin-bottom: 0;
}

.newslist.column-grid li>figure a {
    padding-top: 60%;
    /* Adjust aspect ratio for cards */
}

.newslist.column-grid li>div {
    margin-top: 16px;
}

.newslist.column-grid li h3 {
    font-size: 2rem;
    border-bottom: none;
    margin-bottom: 0.5em;
}

/* Sophisticated Date Font */
.newslist li time,
.meta time {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 1.6rem;
    font-weight: 500;
    color: #888;
}

@media only screen and (max-width: 768px) {
    .newslist.column-grid {
        grid-template-columns: 1fr;
    }
}

/* Single Post Refinements */
#single .post-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 500;
    margin-bottom: 16px;
    border-bottom: none;
    /* Remove default border if any */
    padding-bottom: 0;
}

#single .meta {
    margin-bottom: 32px;
    padding: 0;
    /* Reset padding */
}

#single .mainimg {
    margin-bottom: 40px;
}

/* Heading Styles for Content */
.content h2 {
    font-size: 2.8rem;
    border-bottom: 1px solid #222 !important;
    padding-bottom: 0.5em;
    margin-top: 3em;
    margin-bottom: 1.5em;
}

.content h3 {
    font-size: 2.2rem;
    border-bottom: none !important;
    /* Remove border for H3 to differentiate */
    border-left: 4px solid #222 !important;
    padding-left: 16px;
    padding-bottom: 0;
    margin-top: 2.5em;
    margin-bottom: 1em;
}