﻿/* ---------- Content Section Scoped Styles ---------- */
.content-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    border-left: 4px solid #007bff;
    padding-left: 10px;
}

.content-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

.content-section h4,
.content-section h5 {
    font-weight: 500;
    color: #444;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

/* ---------- Code Blocks ---------- */
.content-section .ql-code-block-container,
.content-section pre code,
.content-section pre.code-block {
    display: block;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #ddd;
    overflow-x: auto;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: Consolas, "Courier New", monospace;
    color: #e83e8c;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

    .content-section .ql-code-block-container > .ql-code-block {
        margin: 0;
    }

/* ---------- Links ---------- */
.content-section a {
    color: #007bff;
    text-decoration: none;
    word-break: break-word;
}

    .content-section a:hover {
        color: #0056b3;
        text-decoration: underline;
    }

/* ---------- Images ---------- */
.content-section img {
    max-width: 90%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 1rem auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* ---------- Video ---------- */
.content-section video {
    width: 100%;
    max-width: 720px;
    border-radius: 10px;
    margin: 1rem auto;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ---------- Audio ---------- */
.content-section audio {
    width: 100%;
    max-width: 500px;
    margin: 1rem auto;
    display: block;
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 768px) {
    .content-section {
        padding: 1rem;
    }

        .content-section .section-title h1 {
            font-size: 1.6rem;
        }

        .content-section h2 {
            font-size: 1.3rem;
        }

        .content-section .ql-code-block-container {
            font-size: 0.9rem;
            padding: 0.8rem;
        }
}
