/* Better container & spacing – closer to Blocksy */



@media (min-width: 1024px) {
    .ct-grid {
        grid-template-columns: 2fr 1fr; /* ≈ 66% content + 33% sidebar */
        gap: 2.5rem;
    }
}

/* Sidebar look – more Blocksy-like */
.ct-widget-area .widget {
    padding: 10px 20px;
    border-radius: 4px;
}

.ct-widget-area h3.widget-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: .5px solid #e5e7eb;
    color: var(--blue);
}

/* Content readability */
.ct-prose {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
}

.ct-prose p {
    margin-bottom: 1.5rem;
}

.entry-meta {
	display: none !important;
}

/* Mobile – sidebar moves below content */
@media (max-width: 1023px) {
    aside {
        margin-top: 2.5rem;
        padding-top: 2rem;
        border-top: 1px solid #e5e7eb;
    }
}

#main {
    width: 65%;
}
#main  a {
    color: var(--blue) !important;
}
.atd-main aside {
    width: 30%;
}

.widget-post-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 7px;
	border-bottom: .5px solid var(--border-gray);
}
.widget-post-item:last-child {
	border-bottom: unset !important;
}
.widget-post-item__img {
    width: 64px;
    height: 64px;
}
.widget-post-item__img img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.widget-post-item__content {
    width: calc(100% - 75px);
    display: flex;
    flex-direction: column;
    align-items: end;
}

.widget-post-item__content h4 {
    font-size: 16px;
}
.widget-post-item__content .meta {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
	margin-bottom: 6px;
}
.widget-post-item__content .meta time {
    color: var(--green);
    font-size: 12px;
}

.widget-post-item__content .meta .item-meta-cat {
    background-color: var(--light-blue);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

@media (max-width: 768px) {
	#blog-container {
		margin-top: -30px !important;
	}
	.entry-header {
		margin-bottom: 20px !important;
	}
	
}