/*
File: public/assets/css/sections/about.css
Description: Styling for simple centered text blocks.
*/

.about-text-section {
    background-color: white; /* Clean white background */
}

.section-title-md {
    color: #333;
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

.about-text-lead {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 900px;
}

.about-text-body {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 900px;
}

/* Horizontal Rule (Separator) */
hr.text-success {
    opacity: 0.5;
    border-top: 2px solid var(--bs-success); /* Green border */
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title-md {
        font-size: 1.5rem;
    }
}
