/* --- css/founders-message.css --- */

/* Page Banner - Matching the rest of the site */
.page-banner {
    background: var(--primary-blue);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.page-banner h1 { font-size: 2.8rem; margin-bottom: 10px; }
.page-banner p { font-size: 1.2rem; opacity: 0.9; font-weight: 300; }

/* Founder's Section Layout */
.founder-header {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.founder-img {
    width: 280px;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 8px solid var(--white);
}

.pull-quote {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 1.6rem;
    color: var(--secondary-blue);
    line-height: 1.6;
    border-left: 6px solid var(--accent-color);
    padding-left: 30px;
    flex: 1;
}

/* Message Content */
.message-body p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 25px;
    text-align: justify;
}

.signature-block {
    margin-top: 50px;
    padding-top: 20px;
}

.signature-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.signature-title {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .founder-header { flex-direction: column; text-align: center; }
    .pull-quote { border-left: none; border-top: 4px solid var(--accent-color); padding: 25px 0 0 0; }
    .founder-img { width: 100%; max-width: 300px; }
}