/* ========================================
   PHILOSOPHY SECTION COMPONENT
   ======================================== */

.philosophy {
    background-color: var(--cream);
    padding: 80px 6%;
}

.philosophy__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy__quote {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--slate);
    font-style: italic;
    margin: 0 0 20px 0;
    position: relative;
    font-weight: 400;
}

.philosophy__quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--terracotta);
    position: absolute;
    top: -20px;
    left: -30px;
    line-height: 1;
}

.philosophy__quote::after {
    content: '"';
    font-size: 4rem;
    color: var(--terracotta);
    position: absolute;
    bottom: -40px;
    right: -30px;
    line-height: 1;
}

.philosophy__attribution {
    margin-top: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--sage);
    text-transform: uppercase;
}

/* Responsive Design for Philosophy */
@media (max-width: 768px) {
    .philosophy {
        padding: 60px 4%;
    }

    .philosophy__quote {
        font-size: 1.4rem;
    }

    .philosophy__quote::before,
    .philosophy__quote::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .philosophy__quote {
        font-size: 1.2rem;
        padding: 0 20px;
    }
}