/* Text Content Styling for text-heavy pages */
/*For walls of text*/
/* Container width control for responsive design */
.text-content {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-content p,
.text-content ul,
.text-content li {
    text-align: left;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 16px;
    font-family: "Source Code Pro", monospace;
}

.text-content h2 {
    font-size: 16px;
    margin-top: 16px;
    margin-bottom: 8px;
    font-family: "Source Code Pro", monospace;
    font-weight: 600;
}

.text-content h3 {
    font-size: 13px;
    margin-top: 12px;
    margin-bottom: 6px;
    font-family: "Source Code Pro", monospace;
    font-weight: 600;
}

.text-content ul {
    margin-top: 0;
    padding-left: 0px;
}

.text-content-section {
    margin-bottom: 20px;
}

.text-content-header {
    font-size: 20px;
    margin-bottom: 16px;
    font-family: "Source Code Pro", monospace;
    font-weight: 700;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-content {
        padding: 0 10px;
    }

    .text-content p,
    .text-content li {
        font-size: 11px;
        line-height: 15px;
    }
}

@media (max-width: 480px) {
    .text-content {
        padding: 0 8px;
    }
}
