.tmc-team-section {
    padding: 80px 20px;
    font-family: "Roboto", sans-serif;
    color: #2E2A25;
}

.tmc-team-container {
    max-width: 1140px;
    margin: 0 auto;
}

.tmc-team-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tmc-team-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #2E2A25;
}

.tmc-team-subtitle {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2E2A25;
}

.tmc-team-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #2E2A25;
}

.tmc-team-card {
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #E8DFC8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tmc-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.tmc-founder-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.tmc-founder-card {
    max-width: 600px;
    width: 100%;
    border-left: 4px solid #D2691E; /* Terracotta accent */
}

.tmc-member-headshot {
    background-color: #E0D5C1;
    border-radius: 50%;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.tmc-founder-headshot {
    width: 80px;
    height: 80px;
}

.tmc-team-headshot {
    width: 60px;
    height: 60px;
}

.tmc-member-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #2E2A25;
}

.tmc-member-role {
    font-size: 16px;
    font-style: italic;
    color: #D2691E; /* Terracotta */
    margin-bottom: 15px;
}

.tmc-member-bio {
    font-size: 15px;
    line-height: 1.5;
    color: #2E2A25;
}

.tmc-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

/* Centering last row if not full */
.tmc-team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tmc-member-card {
    flex: 0 1 calc(33.333% - 20px);
    margin: 10px;
}

@media (max-width: 1024px) {
    .tmc-member-card {
        flex: 0 1 calc(50% - 20px);
    }
}

@media (max-width: 767px) {
    .tmc-member-card {
        flex: 0 1 100%;
    }
    .tmc-team-subtitle {
        font-size: 28px;
    }
}
