.zolar-single-post-main {
    background-color: #f6faf9;
    font-family: 'DM Sans', sans-serif;
    padding-bottom: 100px;
    position: relative;
}

/* Wavy background pattern */
.zolar-blog-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: repeating-radial-gradient( circle at 0 0, transparent 0, #000 20px, transparent 21px );
    background-size: 150px 150px;
    pointer-events: none;
    z-index: 1;
}

/* Post Hero */
.zolar-post-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 180px 0 100px;
    text-align: center;
    z-index: 2;
}

.zolar-post-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(22, 22, 22, 0.75);
    z-index: -1;
}

.zolar-post-hero-inner {
    position: relative;
    z-index: 2;
}

.zolar-post-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
}

.zolar-breadcrumbs {
    font-size: 14px;
    font-weight: 600;
    color: #cccccc;
}

.zolar-breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zolar-breadcrumbs a:hover {
    color: var(--zolar-accent, #c8e86b);
}

.zolar-breadcrumbs span {
    color: var(--zolar-accent, #c8e86b);
}

/* Layout Grid */
.zolar-post-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding-top: 60px;
    position: relative;
    z-index: 2;
}

/* Main Content Area */
.zolar-post-main-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.zolar-post-featured-image-wrap {
    margin: -40px -40px 30px;
}

.zolar-post-featured-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.zolar-post-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.zolar-post-author {
    display: flex;
    align-items: center;
}

.zolar-post-body {
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
}

.zolar-post-body h2,
.zolar-post-body h3,
.zolar-post-body h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: #161616;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.zolar-post-body p { margin-bottom: 20px; }

.zolar-post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.zolar-post-body blockquote {
    background-color: var(--zolar-accent, #c8e86b);
    padding: 40px;
    margin: 40px 0;
    font-size: 20px;
    font-style: italic;
    color: #161616;
    border-radius: 8px;
    position: relative;
}

.zolar-post-body blockquote::before {
    content: '"';
    font-family: serif;
    font-size: 120px;
    color: rgba(22,22,22,0.1);
    position: absolute;
    top: 0px;
    left: 20px;
    line-height: 1;
}

/* Sidebar */
.zolar-post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.zolar-sidebar-widget {
    background-color: #f0f7f5;
    padding: 30px;
    border-radius: 12px;
}

.zolar-widget-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #161616;
}

/* Search Form */
.zolar-search-form {
    display: flex;
    position: relative;
}

.zolar-search-field {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    background-color: #ffffff;
    font-family: 'DM Sans', sans-serif;
}

.zolar-search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    color: #161616;
    padding: 10px;
}

/* Recent Posts */
.zolar-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.zolar-recent-post-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.zolar-recent-post-thumb img, .zolar-placeholder-thumb {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}

.zolar-placeholder-thumb { background-color: #ddd; }

.zolar-recent-post-info h4 {
    margin: 5px 0 0;
    font-size: 15px;
    line-height: 1.4;
    font-family: 'Space Grotesk', sans-serif;
}

.zolar-recent-post-info h4 a {
    color: #161616;
    text-decoration: none;
}

.zolar-recent-post-info h4 a:hover { color: var(--zolar-accent, #c8e86b); }

.zolar-recent-post-date {
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

/* Categories */
.zolar-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zolar-category-list li {
    margin-bottom: 10px;
}

.zolar-category-list li a {
    display: flex;
    justify-content: space-between;
    color: #161616;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.zolar-category-list li a:hover {
    color: var(--zolar-accent, #7da510);
}

/* Tags */
.zolar-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.zolar-tag-cloud a {
    background-color: var(--zolar-accent, #c8e86b);
    color: #161616;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.zolar-tag-cloud a:hover { opacity: 0.8; }

@media (max-width: 991px) {
    .zolar-post-layout {
        grid-template-columns: 1fr;
    }
}
