         /* Header Navigation */
        .top-nav {
            background: white;
            border-bottom: 1px solid var(--gws-gray-200);
            padding: 1rem 0;
            margin-bottom: 0;
        }
        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gws-primary);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: var(--gws-radius-sm);
            transition: var(--gws-transition-normal);
        }
        .back-link:hover {
            background: var(--gws-gray-50);
            color: var(--gws-secondary);
        }
        /* Post Header - Modern Design */
        .post-header-section {
            background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
            margin-top: 70px;
            padding: 3rem 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid #e3e6e8;
        }
        .post-header-inner {
            max-width: 800px;
        }
        .post-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #6a737c;
            margin-bottom: 16px;
        }
        .post-breadcrumb a {
            color: #0B6E8B;
            text-decoration: none;
        }
        .post-breadcrumb a:hover {
            text-decoration: underline;
        }
        .post-breadcrumb i {
            font-size: 10px;
            color: #9ca3af;
        }
        .post-category-badge {
            display: inline-block;
            padding: 6px 14px;
            background: #0B6E8B;
            color: white;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }
        .post-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 20px;
            line-height: 1.25;
            letter-spacing: -0.5px;
        }
        .post-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }
        .post-author-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .post-author-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
        }
        .post-author-details {
            display: flex;
            flex-direction: column;
        }
        .post-author-name {
            font-weight: 600;
            color: #232629;
            text-decoration: none;
            font-size: 0.95rem;
        }
        .post-author-name:hover {
            color: #0B6E8B;
        }
        .post-date {
            font-size: 0.85rem;
            color: #6a737c;
        }
        .post-stats {
            display: flex;
            gap: 16px;
            margin-left: auto;
        }
        .post-stat {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
            color: #6a737c;
            background: white;
            padding: 8px 14px;
            border-radius: 20px;
            border: 1px solid #e3e6e8;
        }
        .post-stat i {
            color: #0B6E8B;
        }
        @media (max-width: 768px) {
            .post-title {
                font-size: 1.75rem;
            }
            .post-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
            .post-stats {
                margin-left: 0;
            }
        }
        /* Post Content */
        .post-content-section {
            background: white;
            padding: 3rem;
            border-radius: var(--gws-radius-lg);
            box-shadow: var(--gws-shadow-md);
            margin-bottom: 2rem;
        }
        .post-content {
            font-size: 1.125rem;
            line-height: 1.8;
            color: var(--gws-gray-700);
        }
        .post-content p {
            margin-bottom: 1.5rem;
        }
        .post-content h2 {
            font-size: 1.75rem;
            font-weight: 600;
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: var(--gws-gray-800);
        }
        .post-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
            color: var(--gws-gray-800);
        }
        .post-content ul, .post-content ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        .post-content li {
            margin-bottom: 0.5rem;
        }
        .post-content img {
            max-width: 100%;
            height: auto;
            border-radius: var(--gws-radius-md);
            margin: 1.5rem 0;
        }
        .post-content a {
            color: var(--gws-primary);
            text-decoration: underline;
        }
        .post-content a:hover {
            color: var(--gws-secondary);
        }
        /* Author Box - Simple Clean Design */
        .author-box {
            background: white;
            padding: 24px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
            border: 1px solid #e3e6e8;
        }
        .author-box-inner {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .author-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }
        .author-details {
            flex: 1;
            min-width: 0;
        }
        .author-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #232629;
            margin: 0 0 2px;
        }
        .author-name a {
            color: inherit;
            text-decoration: none;
        }
        .author-name a:hover {
            color: #0B6E8B;
        }
        .author-bio {
            font-size: 0.9rem;
            color: #6a737c;
            margin: 0;
            line-height: 1.4;
        }
        .author-social-links {
            display: flex;
            gap: 8px;
            margin-top: 10px;
        }
        .author-social-link {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #f0f7f9;
            color: #0B6E8B;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.2s;
        }
        .author-social-link:hover {
            background: #0B6E8B;
            color: white;
        }
        .author-actions {
            display: flex;
            gap: 8px;
            flex-shrink: 0;
        }
        .author-actions .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.85rem;
        }
        .author-actions .btn-primary {
            background: #0B6E8B;
            border-color: #0B6E8B;
        }
        .author-actions .btn-primary:hover {
            background: #095a72;
        }
        .author-actions .btn-outline-secondary {
            border-color: #d1d5db;
            color: #6a737c;
        }
        .author-actions .btn-outline-secondary:hover {
            background: #f8f9fa;
            color: #0B6E8B;
            border-color: #0B6E8B;
        }
        @media (max-width: 576px) {
            .author-box-inner {
                flex-direction: column;
                text-align: center;
            }
            .author-social-links {
                justify-content: center;
            }
            .author-actions {
                width: 100%;
                justify-content: center;
            }
        }
        /* Social Share Section - Compact */
        .social-share-section {
            background: white;
            padding: 16px 20px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            margin-bottom: 2rem;
            border: 1px solid #e3e6e8;
        }
        .social-share-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .social-share-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: #6a737c;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .social-share-buttons {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .social-share-btn {
            width: 36px;
            height: 36px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
        }
        .social-share-btn:hover {
            transform: scale(1.1);
        }
        .btn-facebook { background: #1877f2; color: white; }
        .btn-facebook:hover { background: #145dbf; color: white; }
        .btn-twitter { background: #000000; color: white; }
        .btn-twitter:hover { background: #333333; color: white; }
        .btn-linkedin { background: #0077b5; color: white; }
        .btn-linkedin:hover { background: #005885; color: white; }
        .btn-whatsapp { background: #25D366; color: white; }
        .btn-whatsapp:hover { background: #1da851; color: white; }
        .btn-telegram { background: #0088cc; color: white; }
        .btn-telegram:hover { background: #006699; color: white; }
        .btn-reddit { background: #FF4500; color: white; }
        .btn-reddit:hover { background: #cc3700; color: white; }
        .btn-email { background: #6a737c; color: white; }
        .btn-email:hover { background: #545b62; color: white; }
        .btn-copy-link {
            background: #f0f7f9;
            color: #0B6E8B;
            border: 1px solid #d1e7ed;
        }
        .btn-copy-link:hover {
            background: #0B6E8B;
            color: white;
        }
        .copy-success {
            display: none;
            color: #10b981;
            font-size: 0.85rem;
            font-weight: 500;
        }
        .copy-success.show {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        /* Comment Section */
        .comment-section {
            background: white;
            padding: 24px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            margin-bottom: 2rem;
            border: 1px solid #e3e6e8;
        }
        .comment-section-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #232629;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-section-title i {
            color: #0B6E8B;
        }
        .comment-form {
            margin-bottom: 24px;
        }
        .comment-input-wrapper {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }
        .comment-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }
        .comment-input-box {
            flex: 1;
        }
        .comment-textarea {
            width: 100%;
            padding: 12px 14px;
            border: 2px solid #e3e6e8;
            border-radius: 8px;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 80px;
            transition: border-color 0.2s;
            font-family: inherit;
        }
        .comment-textarea:focus {
            outline: none;
            border-color: #0B6E8B;
        }
        .comment-textarea::placeholder {
            color: #9ca3af;
        }
        .comment-actions {
            display: flex;
            justify-content: flex-end;
            margin-top: 10px;
        }
        .comment-submit-btn {
            padding: 10px 20px;
            background: #0B6E8B;
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s;
        }
        .comment-submit-btn:hover {
            background: #095a72;
        }
        .comment-submit-btn:disabled {
            background: #9ca3af;
            cursor: not-allowed;
        }
        .login-to-comment {
            text-align: center;
            padding: 24px;
            background: #f8fafc;
            border-radius: 8px;
            border: 1px dashed #d1d5db;
        }
        .login-to-comment p {
            margin: 0 0 12px;
            color: #6a737c;
        }
        .login-to-comment .btn {
            padding: 10px 24px;
            background: #0B6E8B;
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
        }
        .login-to-comment .btn:hover {
            background: #095a72;
        }
        .no-comments {
            text-align: center;
            padding: 20px;
            color: #9ca3af;
        }
        .comment-list {
            border-top: 1px solid #e3e6e8;
            padding-top: 20px;
        }
        .comment-item {
            display: flex;
            gap: 12px;
            padding: 16px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-content {
            flex: 1;
        }
        .comment-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 6px;
        }
        .comment-author {
            font-weight: 600;
            color: #232629;
            font-size: 0.9rem;
            text-decoration: none;
        }
        .comment-author:hover {
            color: #0B6E8B;
        }
        .comment-date {
            font-size: 0.8rem;
            color: #9ca3af;
        }
        .comment-text {
            font-size: 0.95rem;
            color: #4a5568;
            line-height: 1.5;
            margin: 0;
        }
        .comment-count-badge {
            background: #0B6E8B;
            color: white;
            font-size: 0.75rem;
            padding: 2px 8px;
            border-radius: 10px;
            margin-left: 6px;
        }
        .comments-loading {
            text-align: center;
            padding: 30px;
            color: #9ca3af;
        }
        .comment-error {
            color: #dc3545;
            font-size: 0.85rem;
            margin-right: auto;
        }
        .comment-actions-menu {
            display: flex;
            gap: 4px;
            margin-left: auto;
        }
        .comment-action-btn {
            background: none;
            border: none;
            color: #9ca3af;
            font-size: 0.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 4px;
        }
        .comment-action-btn:hover {
            background: #f0f7f9;
            color: #0B6E8B;
        }
        .comment-action-btn.delete-btn:hover {
            background: #fee2e2;
            color: #dc3545;
        }
        .comment-edit-form {
            display: none;
            margin-top: 8px;
        }
        .comment-edit-form.active {
            display: block;
        }
        .comment-edit-textarea {
            width: 100%;
            padding: 10px 12px;
            border: 2px solid #e3e6e8;
            border-radius: 6px;
            font-size: 0.9rem;
            resize: vertical;
            min-height: 60px;
            font-family: inherit;
        }
        .comment-edit-textarea:focus {
            outline: none;
            border-color: #0B6E8B;
        }
        .comment-edit-actions {
            display: flex;
            gap: 8px;
            justify-content: flex-end;
            margin-top: 8px;
        }
        .comment-edit-btn {
            padding: 6px 14px;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            border: none;
        }
        .comment-edit-btn.save-btn {
            background: #0B6E8B;
            color: white;
        }
        .comment-edit-btn.save-btn:hover {
            background: #095a72;
        }
        .comment-edit-btn.cancel-btn {
            background: #f0f0f0;
            color: #4a5568;
        }
        .comment-edit-btn.cancel-btn:hover {
            background: #e0e0e0;
        }
        .comment-text.hidden {
            display: none;
        }
        .comment-edited-badge {
            font-size: 0.75rem;
            color: #9ca3af;
            font-style: italic;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .post-title { font-size: 1.75rem; }
            .post-content-section { padding: 2rem 1.5rem; }
            .post-content { font-size: 1rem; }
            .post-meta { gap: 1rem; }
            .social-share-inner {
                justify-content: center;
            }
            .social-share-label {
                width: 100%;
                justify-content: center;
            }
            .comment-input-wrapper {
                flex-direction: column;
            }
            .comment-avatar {
                display: none;
            }
        }
