/* ================= Single/Page Layout with Sidebar ================= */
.post-layout-right-sidebar {
    display: flex;
    justify-content: center;
    background: #fff;
    width: 100%;
}

.post-layout-right-sidebar .post-layout-container {
    display: grid;
    grid-template-columns: 960px 360px;
    gap: 32px;
    max-width: 1400px;
    margin: 24px auto;
    width: 100%;
    padding: 0 16px;
    align-items: start;
}

/* Content area */
.post-layout-right-sidebar .post-layout-content {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.post-layout-right-sidebar .entry-title {
    font-size: 30px;
    color: #1e4a72;
    margin: 0 0 12px 0;
}

.post-layout-right-sidebar .entry-content {
    color: #333;
    line-height: 1.7;
}
.post-layout-right-sidebar .entry-content img,
.post-layout-right-sidebar .entry-content video,
.post-layout-right-sidebar .entry-content iframe,
.post-layout-right-sidebar .entry-content embed {
    max-width: 100%;
    height: auto;
}
.post-layout-right-sidebar .entry-content p { margin-bottom: 1em; }

/* Breadcrumbs */
.post-layout-right-sidebar .breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 13px;
    margin-bottom: 10px;
}
.post-layout-right-sidebar .breadcrumbs a { color: #1e4a72; text-decoration: none; }
.post-layout-right-sidebar .breadcrumbs a:hover { text-decoration: underline; }
.post-layout-right-sidebar .breadcrumbs .sep { color: #9ca3af; }

/* Entry Meta */
.post-layout-right-sidebar .entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.post-layout-right-sidebar .meta-chip {
    background: #f1f5f9;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    color: #475569;
}
.post-layout-right-sidebar .meta-chip.category {
    background: #e6f0f8;
    color: #1e4a72;
    text-decoration: none;
}
.post-layout-right-sidebar .meta-chip.category:hover { background: #d9e9f6; }

/* Share Buttons (circular SVG) */
.post-layout-right-sidebar .share-row {
    display: flex;
    gap: 10px;
    margin: 16px 0;
    align-items: center;
}
.post-layout-right-sidebar .share-row .label { font-weight: 600; color: #475569; }
.post-layout-right-sidebar .share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
}
.post-layout-right-sidebar .share-btn svg { width: 20px; height: 20px; }
.post-layout-right-sidebar .share-btn.whatsapp { background: #25D366; }
.post-layout-right-sidebar .share-btn.facebook { background: #1877F2; }
.post-layout-right-sidebar .share-btn.twitter { background: #1DA1F2; }

/* Comment Form */
.comment-form-wrapper { margin-top: 24px; }
.comment-form-wrapper h3 { font-size: 18px; margin-bottom: 12px; }
#comment-form input, #comment-form textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
#comment-form button {
    background: #1e4a72;
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
#form-message { margin-top: 10px; font-size: 14px; }

/* Sidebar */
.post-layout-right-sidebar .post-layout-sidebar {
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    height: max-content;
}

/* Widget titles */
.post-layout-right-sidebar .widgettitle {
    font-size: 16px;
    background: #1e4a72;
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    margin-bottom: 12px;
}

/* ================= Responsive ================= */
@media (max-width: 992px) {
    .post-layout-right-sidebar .post-layout-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 12px;
    }
    .post-layout-right-sidebar .post-layout-sidebar {
        width: 100%;
        margin-top: 16px;
    }
    .post-layout-right-sidebar .entry-title { font-size: 24px; }
}
@media (max-width: 600px) {
    .post-layout-right-sidebar .entry-title { font-size: 22px; }
    .post-layout-right-sidebar .entry-content { font-size: 15px; line-height: 1.6; }
    #comment-form input, #comment-form textarea { font-size: 14px; }
    #comment-form button { font-size: 14px; }
}
