/* Styling for the content details page */
.tnb-info-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 24px;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

.tnb-info-breadcrumb {
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #6b4733;
}

.tnb-info-breadcrumb a {
    color: #6b4733;
    text-decoration: none;
    transition: color 0.2s;
}

.tnb-info-breadcrumb a:hover {
    color: #3d3530;
}

.tnb-info-card {
    background: #fffdf8;
    border: 1px solid rgba(107, 71, 51, 0.12);
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 16px 40px rgba(90, 60, 43, 0.04);
}

.tnb-info-header {
    border-bottom: 2px solid #fcf1db;
    padding-bottom: 24px;
    margin-bottom: 32px;
}

.tnb-info-title {
    font-size: 36px;
    font-weight: 800;
    color: #3d3530;
    margin: 0 0 12px 0;
    line-height: 1.25;
}

.tnb-info-meta {
    font-size: 15px;
    color: #8c7263;
    font-weight: 500;
    line-height: 1.5;
}

/* Table of Contents Styling */
.tnb-info-toc {
    background: #fcf8f2;
    border: 1px solid rgba(107, 71, 51, 0.1);
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 40px;
}

.tnb-info-toc-title {
    font-size: 18px;
    font-weight: 700;
    color: #3d3530;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tnb-info-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tnb-info-toc-list li a {
    display: inline-flex;
    align-items: flex-start;
    color: #6b4733;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.2s ease;
}

.tnb-info-toc-list li a .toc-number {
    margin-right: 8px;
    color: #b08d79;
}

.tnb-info-toc-list li a:hover {
    color: #bf8d50;
    transform: translateX(4px);
}

/* Sections Styling */
.tnb-info-content {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.tnb-info-section {
    scroll-margin-top: 40px;
}

.tnb-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #3d3530;
    margin: 0 0 16px 0;
    display: inline-flex;
    align-items: flex-start;
    line-height: 1.3;
}

.tnb-section-title .section-number {
    margin-right: 8px;
    color: #bf8d50;
}

.tnb-section-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tnb-section-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #6b4733;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .tnb-info-wrapper {
        margin: 20px auto;
        padding: 0 16px;
    }
    .tnb-info-card {
        padding: 28px 20px;
        border-radius: 20px;
    }
    .tnb-info-title {
        font-size: 28px;
    }
    .tnb-info-meta {
        font-size: 14px;
    }
    .tnb-info-toc {
        padding: 20px;
        margin-bottom: 28px;
    }
    .tnb-info-toc-list li a {
        font-size: 15px;
    }
    .tnb-section-title {
        font-size: 19px;
    }
    .tnb-section-body p {
        font-size: 15px;
    }
}
