.our-story-page-main .container {
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.our-story-header {
    /* Uses .page-header styles from typography-modern.css */
    /* text-align: center; /* Optional: if you want main title centered */
    margin-bottom: 4rem;
}

.founder-note-section {
    background-color: #fff; /* Optional: if page bg is different */
    padding: 3rem 0; /* Add some padding around the grid */
}

.founder-note-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: flex-start; /* Align items to the top */
    max-width: 1000px; /* Constrain the width of this section */
    margin: 0 auto;
}

.founder-photo-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.photo-placeholder {
    width: 280px; /* Default width, will be overridden by aspect-ratio on desktop */
    height: 350px; /* Default height, will be overridden by aspect-ratio on desktop */
    background-color: #f5f5f5; /* Slightly lighter placeholder */
    border: 1px solid #e9ecef; /* Softer border */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #888; /* Lighter text */
    font-size: 0.9rem;
    border-radius: 4px; /* Subtle rounding if it fits brand */
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Optional: subtle shadow */
}

.founder-text-content h2 {
    font-size: 2rem; /* Standardized with 992px breakpoint */
    margin-bottom: 2rem; /* More space after heading */
    color: #000;
    font-weight: 500; /* Ensuring consistency */
}

.founder-text-content p {
    font-size: 1.05rem; /* Slightly larger base text for readability */
    line-height: 1.8; /* Increased line height */
    color: #333;
    margin-bottom: 1.75rem; /* Increased paragraph spacing */
}

.founder-text-content blockquote {
    margin: 2.5rem 0; /* More vertical space */
    padding: 1.5rem 2rem; /* Added horizontal padding */
    border-left: 4px solid #000; 
    font-style: italic;
    color: #222; /* Slightly darker for better contrast */
    background-color: #f9f9f9; /* Very subtle background for blockquote */
    border-radius: 0 4px 4px 0; /* Optional rounding */
}

.founder-text-content blockquote p {
    margin-bottom: 0.75rem; 
    font-size: 1.1rem; /* Slightly larger for blockquote */
    line-height: 1.7;
}

.founder-text-content blockquote p:last-child {
    margin-bottom: 0;
}

.founder-signature {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee; /* Subtle separator */
    font-size: 1.05rem; /* Match main text */
    line-height: 1.6;
    color: #000;
}

.founder-signature strong {
    font-weight: 600;
    display: block; /* Name on its own line */
    margin-bottom: 0.25rem;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .founder-note-grid {
        grid-template-columns: 1fr; 
        gap: 3.5rem; /* Increased gap */
    }

    .founder-photo-container {
        justify-content: flex-start; 
    }

    .photo-placeholder {
        width: 100%; 
        max-width: 280px; 
        height: auto; 
        aspect-ratio: 4/5; 
    }
    .founder-text-content h2 {
        font-size: 2.25rem; /* Slightly larger on desktop */
    }
}

@media (min-width: 992px) {
    .founder-note-grid {
        gap: 4.5rem; /* Further increased gap */
    }
    .founder-text-content h2 {
        font-size: 2.5rem; /* Restore original larger size for wider screens */
    }
} 