/* PHILOSOPHY CARD FONT SIZE OVERRIDE - HIGHEST PRIORITY */
/* This file specifically overrides all other CSS rules for philosophy cards */

/* Philosophy card titles - FORCE LARGE SIZE */
.philosophy-card h6,
.philosophy-card h6.mb-0,
.philosophy-card h6.mb-0.ms-2,
body .philosophy-card h6,
html body .philosophy-card h6 {
    font-size: 1.6rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    margin-bottom: 0.5rem !important;
}

/* Philosophy card text - FORCE LARGE SIZE */
.philosophy-card p,
.philosophy-card p.mb-0,
body .philosophy-card p,
html body .philosophy-card p {
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
}

/* Extra padding for better spacing */
.philosophy-card {
    padding: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

/* MOBILE OVERRIDES - FORCE SMALL SIZE ON MOBILE */
@media (max-width: 768px) {
    .philosophy-card h6,
    .philosophy-card h6.mb-0,
    .philosophy-card h6.mb-0.ms-2,
    body .philosophy-card h6,
    html body .philosophy-card h6,
    .philosophy-card h4,
    .philosophy-card .card-title,
    .philosophy-card h5 {
        font-size: 0.85rem !important;
        line-height: 1.1 !important;
        margin-bottom: 0.4rem !important;
        font-weight: 600 !important;
    }
    
    .philosophy-card p,
    .philosophy-card p.mb-0,
    body .philosophy-card p,
    html body .philosophy-card p,
    .philosophy-card .card-text {
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.3rem !important;
    }
    
    .philosophy-card {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }
}