/* ========================= */
/* ABOUT PAGE                */
/* ========================= */


/* TOP SECTION */
.about-top {
    padding-top: 180px;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 120px;
}

.about-left h2 {
    color: #b69a74;
    font-size: 38px;
    line-height: 1.3;
    letter-spacing: 4px;
    font-weight: 500;
    text-align: center;
}

.about-right p {
    max-width: 600px;
    font-size: 15px;
    color: #d0d0d0;
    line-height: 1.9;
    text-align: left;
}



/* TEAM SECTION */

.team-title {
    color: #b69a74;
    font-size: 18px;
    letter-spacing: 4px;
    text-align: left;
    margin-top: 100px;
    margin-bottom: 20px;
}

.team-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 140px;
}

.team-card {
    width: 33%;
    text-align: center;
}

.team-card img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(85%);
    transition: 0.4s;
}

.team-card img:hover {
    filter: brightness(60%);
}

.team-card h4 {
    color: #fff;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.role {
    color: #b69a74;
    font-size: 14px;
    margin-bottom: 12px;
}

.bio {
    color: #ccc;
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
}

.team-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
    filter: brightness(85%);
    transition: 0.4s;
}