/* css/pages/about.css */

.page-main-content {
    padding: 2rem 0 3rem 0;
}

.page-article {
    background-color: var(--white-color, #fff);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-light);
}

@media (min-width: 768px) {
    .page-article {
        padding: 2rem 2.5rem;
    }
}

.page-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color, #eee);
}

.page-header h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.page-header h1 .fas {
    margin-right: 0.75rem;
    font-size: 0.8em;
}

.page-header .page-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: var(--text-muted);
    font-style: italic;
}

.content-section {
    padding: 2.5rem 0;
}

.content-section:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.content-section h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: left;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.alt-bg-page {
    background-color: var(--section-alt-bg, #f0f2f5);
    padding: 2.5rem 1.5rem;
    margin: 2rem -1.5rem;
    border-radius: var(--border-radius);
}

@media (min-width: 768px) {
    .alt-bg-page {
        padding: 3rem 2.5rem;
        margin: 2.5rem -2.5rem;
    }
}

/* === NEW STYLES FOR MEET THE CREATOR SECTION === */
.meet-creator-section h2 {
    text-align: center;
    /* Center the section title */
    display: block;
    /* Allow it to be centered */
    border-bottom: none;
    /* Remove the short underline for this specific heading */
}

.meet-creator-section h2::after {
    /* Add a centered underline instead */
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 1rem auto 0 auto;
    border-radius: 2px;
}


.creator-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
    text-align: center;
    /* Center text on mobile */
}

@media (min-width: 768px) {
    .creator-grid {
        grid-template-columns: 1fr 3fr;
        /* Photo takes up less space */
        text-align: left;
        /* Align text to the left on desktop */
    }
}

.creator-photo-container {
    max-width: 200px;
    margin: 0 auto;
    /* Center the image container on mobile */
}

.creator-photo {
    width: 100%;
    height: auto;
    border-radius: 50%;
    /* Make the photo circular */
    border: 5px solid var(--white-color);
    box-shadow: var(--box-shadow);
}

.creator-bio h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.creator-title {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.creator-bio p {
    font-size: 1rem;
    line-height: 1.8;
}

/* === END NEW STYLES === */

.features-list-about {
    list-style: none;
    padding-left: 0;
}

.features-list-about li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.features-list-about li .fas {
    position: absolute;
    left: 0;
    top: 0.25em;
    color: var(--primary-color);
    font-size: 0.9em;
}

.features-list-about li strong {
    font-weight: 500;
}

/* ... styles for reasons-grid-about if you use it ... */