/* ==========================================
   SINGLE POST (EDITORIAL) STYLING
   ========================================== */
.baolecat-single-main {
    padding: 60px 0;
}

.baolecat-single-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.baolecat-single-category a {
    color: #C35214;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-decoration: none;
}

.baolecat-single-title {
    font-size: 3rem;
    line-height: 1.2;
    margin: 15px 0;
    font-weight: 700;
}

.baolecat-single-subhead {
    font-size: 1.2rem;
    color: #888888;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.baolecat-single-byline {
    font-size: 0.9rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.baolecat-single-featured-media {
    margin: 0 0 50px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.baolecat-single-featured-media img {
    width: 100%;
    height: auto;
    display: block;
}

.baolecat-media-caption {
    text-align: center;
    font-size: 0.85rem;
    color: #888888;
    padding: 10px;
    background: #ffffff;
}

/* Layout Grid */
.baolecat-single-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 60px;
}

/* Main Content Typography */
.baolecat-single-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    font-size: 1.1rem;
    line-height: 1.8;
}

.baolecat-single-content p {
    margin-bottom: 25px;
}

.baolecat-single-content h2 {
    font-size: 2rem;
    margin: 50px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.baolecat-single-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.baolecat-single-content img {
    border-radius: 4px;
    margin: 20px 0;
}

/* Table of Contents */
.baolecat-toc-container {
    background-color: #F4F4F4;
    border-left: 4px solid #C35214;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 0 8px 8px 0;
}

.baolecat-toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.baolecat-toc-title {
    margin: 0;
    font-size: 1.2rem;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 700;
}

.baolecat-toc-btn {
    background: none;
    border: none;
    font-size: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.baolecat-toc-list {
    margin: 20px 0 0 0;
    padding-left: 20px;
    list-style: decimal;
}

.baolecat-toc-list a {
    color: #121212;
    text-decoration: none;
    transition: color 0.2s ease;
}

.baolecat-toc-list a:hover {
    color: #C35214;
}

.baolecat-toc-container.is-collapsed .baolecat-toc-list {
    display: none;
}
.baolecat-toc-container.is-collapsed .baolecat-toc-btn {
    transform: rotate(-90deg);
}

/* Author Box */
.baolecat-post-author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

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

.post-author-name {
    margin: 0 0 5px 0;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.author-label {
    display: block;
    font-size: 0.8rem;
    color: #888888;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.post-author-name a {
    color: #121212;
    text-decoration: none;
    font-size: 1.2rem;
}

.post-author-bio {
    font-size: 0.95rem;
    color: #888888;
    margin: 0;
}

/* Sidebar Related Posts */
.baolecat-single-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.baolecat-section-header h3 {
    font-size: 1.2rem;
    font-family: 'Be Vietnam Pro', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #C35214;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.baolecat-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.baolecat-related-article {
    margin-bottom: 20px;
}

.related-title {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.related-title a {
    color: #121212;
    text-decoration: none;
    transition: color 0.2s ease;
}

.related-title a:hover {
    color: #C35214;
}

.related-meta {
    font-size: 0.85rem;
    color: #888888;
}

/* Responsive Breakpoints */
@media screen and (max-width: 992px) {
    .baolecat-single-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .baolecat-single-sidebar {
        position: static;
    }
}

@media screen and (max-width: 768px) {
    .baolecat-single-title {
        font-size: 2.2rem;
    }
    
    .baolecat-single-content {
        padding: 20px;
    }
}