/**
 * Blog Styles
 *
 * @package Monise
 * @since 1.0.0
 */

/* Blog Layout */
.blog-layout {
    padding: 60px 0;
    background: var(--bg-light);
}

.blog-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.blog-main {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Featured Post */
.featured-post {
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    overflow: hidden;
    color: white;
}

.featured-post-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 400px;
}

.featured-post-image {
    position: relative;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post-image:hover img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-post-text {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post-text .post-meta {
    margin-bottom: 20px;
    opacity: 0.9;
}

.featured-post-text .post-meta span {
    margin-right: 20px;
    font-size: 14px;
}

.featured-post-text .post-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-post-text .post-title a {
    color: white;
    text-decoration: none;
}

.featured-post-text .post-title a:hover {
    opacity: 0.9;
}

.featured-post-text .post-excerpt {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.featured-post-text .btn {
    align-self: flex-start;
    background: white;
    color: var(--primary-color);
    border: none;
}

.featured-post-text .btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.post-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.post-categories {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.post-category {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-category:hover {
    background: var(--secondary-color);
    color: white;
}

.post-card-content {
    padding: 25px;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-meta-item i {
    font-size: 12px;
}

.post-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: var(--primary-color);
}

.post-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.post-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.post-tag {
    background: var(--bg-light);
    color: var(--text-light);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-tag:hover {
    background: var(--primary-color);
    color: white;
}

.post-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-share {
    position: relative;
}

.share-toggle {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.share-toggle:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.share-dropdown {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 10px;
    display: none;
    gap: 8px;
    z-index: 10;
}

.share-dropdown.active {
    display: flex;
}

.share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-link.facebook {
    background: #1877f2;
    color: white;
}

.share-link.twitter {
    background: #1da1f2;
    color: white;
}

.share-link.linkedin {
    background: #0077b5;
    color: white;
}

.share-link.whatsapp {
    background: #25d366;
    color: white;
}

.share-link:hover {
    transform: scale(1.1);
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.no-posts-content i {
    font-size: 64px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.no-posts-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.no-posts-content p {
    color: var(--text-light);
    font-size: 16px;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widgets {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

/* Search Widget */
.search-form {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.search-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 14px;
}

.search-form button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-form button:hover {
    background: var(--secondary-color);
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.categories-list a:hover {
    color: var(--primary-color);
}

.categories-list .count {
    background: var(--bg-light);
    color: var(--text-light);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

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

.recent-post-item {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content {
    flex: 1;
}

.recent-post-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-title a:hover {
    color: var(--primary-color);
}

.recent-post-meta {
    font-size: 12px;
    color: var(--text-light);
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-link {
    background: var(--bg-light);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: var(--primary-color);
    color: white;
}

/* Featured Properties Widget */
.featured-properties-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.featured-property-item {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.featured-property-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.property-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-content {
    flex: 1;
}

.property-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.4;
}

.property-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.property-title a:hover {
    color: var(--primary-color);
}

.property-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.property-location {
    font-size: 12px;
    color: var(--text-light);
}

/* Single Post Page */
.single-post-page {
    background: var(--bg-light);
}

.post-header {
    position: relative;
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
    overflow: hidden;
}

.post-header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.post-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.post-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.post-title-section {
    margin-top: 30px;
}

.post-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 16px;
    opacity: 0.9;
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta-item i {
    font-size: 16px;
}

.single-post-layout {
    padding: 60px 0;
}

.single-post-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.single-post-main {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.post-featured-image {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.post-content h1 { font-size: 32px; }
.post-content h2 { font-size: 28px; }
.post-content h3 { font-size: 24px; }
.post-content h4 { font-size: 20px; }
.post-content h5 { font-size: 18px; }
.post-content h6 { font-size: 16px; }

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

.post-content ul,
.post-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
}

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

.post-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content a:hover {
    color: var(--secondary-color);
}

.page-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-weight: 500;
}

.page-links a {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    margin: 0 5px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.page-links a:hover {
    background: var(--secondary-color);
}

.post-tags {
    margin-bottom: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.post-tags h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.tags-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tags-list a {
    background: var(--bg-light);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tags-list a:hover {
    background: var(--primary-color);
    color: white;
}

.author-bio {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 40px;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.author-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.author-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.author-link:hover {
    color: var(--secondary-color);
}

.related-posts {
    margin-bottom: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.related-posts h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.related-post-item {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.related-post-item:hover {
    transform: translateY(-5px);
}

.related-post-image {
    height: 150px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-item:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 20px;
}

.related-post-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.4;
}

.related-post-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-title a:hover {
    color: var(--primary-color);
}

.related-post-meta {
    font-size: 14px;
    color: var(--text-light);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-previous {
    text-align: left;
}

.nav-next {
    text-align: right;
}

.nav-previous a,
.nav-next a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-previous a:hover,
.nav-next a:hover {
    background: var(--primary-color);
    color: white;
}

/* Single Post Sidebar */
.single-post-sidebar {
    position: sticky;
    top: 100px;
}

.toc-content {
    font-size: 14px;
    line-height: 1.6;
}

.toc-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-content li {
    margin-bottom: 8px;
}

.toc-content a {
    color: var(--text-light);
    text-decoration: none;
    padding: 5px 0;
    display: block;
    transition: color 0.3s ease;
}

.toc-content a:hover,
.toc-content a.active {
    color: var(--primary-color);
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-btn:hover {
    transform: translateX(5px);
}

/* Comments */
.comments-area {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comments-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.comment-body {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.comment-body:last-child {
    border-bottom: none;
}

.comment-author {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-author-info {
    flex: 1;
}

.comment-author-info .fn {
    font-weight: 600;
    color: var(--text-dark);
    font-style: normal;
}

.comment-meta {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

.comment-meta a {
    color: var(--text-light);
    text-decoration: none;
}

.comment-content {
    margin-left: 75px;
    line-height: 1.6;
    color: var(--text-dark);
}

.comment-awaiting-moderation {
    background: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 6px;
    font-style: italic;
    margin-bottom: 15px;
}

.reply {
    margin-left: 75px;
    margin-top: 15px;
}

.reply a {
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}

.reply a:hover {
    background: var(--secondary-color);
}

.comment-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.comment-navigation a {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.comment-navigation a:hover {
    background: var(--primary-color);
    color: white;
}

.no-comments {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
    font-style: italic;
}

.comment-form {
    margin-top: 30px;
}

.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url {
    margin-bottom: 20px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
}

.comment-form .btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.comment-form .btn:hover {
    background: var(--secondary-color);
}

.must-log-in,
.logged-in-as {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.comment-notes {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Search Form Large */
.search-form-container {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

.search-form-large .search-form {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    max-width: 600px;
    margin: 0 auto;
}

.search-form-large .search-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 16px;
}

.search-form-large .search-form button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.search-form-large .search-form button:hover {
    background: var(--secondary-color);
}

/* Current Category Highlight */
.current-category a {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-main {
        padding: 25px;
    }
    
    .featured-post-content {
        grid-template-columns: 1fr;
    }
    
    .featured-post-text {
        padding: 25px;
    }
    
    .featured-post-text .post-title {
        font-size: 24px;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .post-card-content {
        padding: 20px;
    }
    
    .post-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .widget {
        padding: 20px;
    }
    
    .post-title {
        font-size: 32px;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .single-post-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .single-post-main {
        padding: 25px;
    }
    
    .post-content {
        font-size: 16px;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-previous,
    .nav-next {
        text-align: center;
    }
    
    .single-post-sidebar {
        position: static;
    }
    
    .comments-area {
        padding: 25px;
    }
    
    .comment-author {
        flex-direction: column;
        text-align: center;
    }
    
    .comment-content,
    .reply {
        margin-left: 0;
    }
}
