        /* Base Styles */
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #34495e;
            --text-color: #333;
            --light-bg: #f8f9fa;
            --border-color: #e9ecef;
            --link-color: #3498db;
        }

        .sw-article {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

.sw-post-body {
  background-color: #fff;
  border-radius: 8px;
  margin-top: 10px;
  line-height: 1.8;
  padding-right: 7px;
}

.sw-post-body p,
.sw-post-body br {
  font-size: 20px;
  text-indent: 15px;
}

.sw-post-body h2 {
  font-size: 26px;

}

.sw-post-body h3 {
  font-size: 22px;

}

.sw-post-body h4 {
  font-size: 20px;

}
        /* Breadcrumb Styles */
        .sw-breadcrumb {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 2rem;
            font-size: 0.9rem;
            color: var(--secondary-color);
        }

        .sw-breadcrumb a {
            color: var(--link-color);
            text-decoration: none;
        }

        .sw-breadcrumb a:hover {
            text-decoration: underline;
        }

        /* Article Grid Layout */
        .sw-article-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
        }

        /* Main Content Styles */
        .sw-post-wrapper {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .sw-post-title {
            font-size: 2rem;
            line-height: 1.4;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .sw-post-meta {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2rem;
            padding-bottom: 1.1rem;
            border-bottom: 1px solid var(--border-color);
        }

        /* Image Styles */
        .sw-post-image-container {
            position: relative;
            margin: 2rem 0;
            border-radius: 8px;
            overflow: hidden;
        }

        .sw-post-image {
            display: block;
            width: 100%;
            height: auto;
        }

        .sw-image-caption {
			font-size: 12px;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: .3rem;
            font-size: 0.9rem;
            text-align: center;
        }

        /* Author Section */
        .sw-authors-section {
            display: flex;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .sw-author-card {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .sw-author-image {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
        }

        .sw-author-name {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
        }

        /* Content Area */
        .sw-post-content {
            line-height: 1.8;
            color: var(--text-color);
            padding: 2rem;
            font-size: 1.1rem;
        }

        /* Tags Section */
        .sw-post-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin: 2rem 0;
        }
		
        .sw-tag-link {
            padding: 0.25rem 0.75rem;
            background: var(--light-bg);
            border-radius: 20px;
            color: var(--secondary-color);
            text-decoration: none;
            font-size: 0.9rem;
            transition: background 0.3s ease;
        }

        .sw-tag-link:hover {
            background: var(--border-color);
        }

        /* Social Share */
        .sw-social-share {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
        }

        .sw-share-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .sw-share-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--light-bg);
            color: var(--secondary-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .sw-share-button:hover {
            background: var(--secondary-color);
            color: #fff;
        }

        /* Back to Top Button */
        .sw-back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .sw-back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .sw-article-grid {
                grid-template-columns: 1fr;
            }

            .sw-post-title {
                font-size: 1.5rem;
            }

            .sw-post-meta {
                flex-direction: column;
                gap: 1rem;
            }

            .sw-authors-section {
                flex-direction: column;
            }

            .sw-post-content {
                padding: 1rem;
            }
        }
		
		.post-image-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}


.sw-post-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5px;
}


.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    padding: 10px;
    box-sizing: border-box;
    font-size: 14px;
    text-align: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}


@media (max-width: 600px) {
    .image-caption {
        font-size: 12px;
        padding: 8px;
    }
}