/* * * * * * * * * * * * * * * * * *\
/*           ABOUT PAGE            *|
\* * * * * * * * * * * * * * * * * */

/* Story section */
.fm-about-story {
    padding: 4rem 0;
    border-top: 1px solid rgba(106, 138, 146, 0.15);
}

.fm-about-story-image {
    border-radius: 8px;
    overflow: hidden;
}

.fm-about-story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.fm-about-story-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
}

.fm-about-story-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Team section */
.fm-team-section {
    padding: 4rem 0;
    border-top: 1px solid rgba(106, 138, 146, 0.15);
}

.fm-team-card {
    text-align: center;
}

.fm-team-card-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.25rem;
    border: 4px solid rgba(247, 200, 181, 0.5);
}

.fm-team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fm-team-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.fm-team-card-role {
    font-family: "Montserrat", serif;
    font-size: 0.78rem;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    color: var(--fm-primary-color);
    margin-bottom: 0.75rem;
}

.fm-team-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Values section */
.fm-values-section {
    padding: 4rem 0;
    border-top: 1px solid rgba(106, 138, 146, 0.15);
}

.fm-values-card {
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(106, 138, 146, 0.2);
    text-align: center;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.fm-values-card:hover {
    box-shadow: 0 6px 24px rgba(106, 138, 146, 0.15);
}

.fm-values-icon {
    font-size: 1.8rem;
    color: var(--fm-secondary-color);
    margin-bottom: 1rem;
    display: block;
}

.fm-values-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.fm-values-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .fm-about-story-image img {
        height: 280px;
    }
}
