@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Open+Sans:wght@400;600&display=swap');
 Mobile (default styles) 
body {
  font-size: 16px;
}

 Tablets 
@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
}

Laptops & Desktops 
@media (min-width: 1124px) {
  body {
    font-size: 20px;
  }
}

:root {
  --primary: #b6902e;
  --background: #faf6ed;
  --card-bg: #fffaf2;
  --text-dark: #2e2921;
  --text-muted: #7b7262;
  --border: #ece6d7;
  --highlight: #d79b3d;
}

body {
  margin: 0;
  padding: 0;
  background: var(--background);
  color: var(--text-dark);
  font-family: 'Open Sans', Arial, sans-serif;
}

.team-intro {
  width: 100vw;
  background: var(--background);
  padding: 64px 0 40px 0;
  text-align: center;
}

.team-intro h2 {
  font-family: 'Marcellus', serif;
  font-size: 2.85rem;
  font-weight: 400;
  margin: 0 0 22px 0;
  color: #080808;
}

.team-intro p {
  max-width: 1200px;
  margin: 0 auto 34px auto;
  font-size: 1.18rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.highlight {
  color: #000000;
  font-weight: 600;
}

.team-cards-section {
  background: #f8f4eb;
  padding: 60px 0 80px 0;
}

.team-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px 40px;
  max-width: 1600px;
  margin: 0 auto;
}

.team-card {
  background: var(--card-bg);
  border-radius: 9px;
  box-shadow: 0 6px 24px rgba(182,144,46,0.09);
  overflow: hidden;
  width: 330px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  transition: transform 0.17s, box-shadow 0.17s;
  border: 1.5px solid var(--border);
}

.team-card:hover {
  transform: translateY(-8px) scale(1.0);
  box-shadow: 0 16px 38px rgba(182,144,46,0.16);
}

.team-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  background: #eee;
}

.team-card-info {
  padding: 26px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  color: black;
}

.team-card-info h3 {
  font-family: 'Marcellus', serif;
  font-size: 1.32rem;
  margin: 0 0 7px 0;
  font-weight: 400;
  color: var(--text-dark);
}

.team-role {
  color: #c0a040;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  display: inline-block;
}

.team-card-info p {
  color: var(--text-muted);
  font-size: 1.0rem;
  margin-bottom: 18px;
  color: black;

}

.read-more-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.02rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.16s;
}

.read-more-link:hover {
  color: #8e7322;
  text-decoration: underline;
}

.arrow {
  font-size: 1.1em;
  margin-left: 2px;
}

@media (max-width: 1200px) {
  .team-cards-container {
    gap: 32px 16px;
  }
}
@media (max-width: 900px) {
  .team-cards-container {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
  .team-card {
    width: 97vw;
    max-width: 490px;
  }
}
@media (max-width: 700px) {
  .team-intro h2 {
    font-size: 2rem;
  }
  .team-intro p {
    font-size: 1rem;
    max-width: 98vw;
    padding: 0 10px;
  }
}

/* team member */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Open+Sans:wght@400;600&display=swap');

:root {
  --primary: #b6902e;
  --background: #faf6ed;
  --text-dark: #2e2921;
  --text-muted: #7b7262;
}

body {
  margin: 0;
  padding: 0;
  background: var(--background);
  color: var(--text-dark);
  font-family: 'Open Sans', Arial, sans-serif;
}

.member-profile {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 70px;
  padding: 80px 0 0 0;
  min-height: 100vh;
  box-sizing: border-box;
}

.member-img-col {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.member-img-col img {
  width: 340px;
  max-width: 95vw;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: 7px;
  box-shadow: 0 6px 32px rgba(182,144,46,0.13);
  background: #eee;
}

.member-info-col {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 710px;
  margin-top: 14px;
}

.member-info-col h2 {
  font-family: 'Marcellus', serif;
  font-size: 2.5rem;
  margin: 0 0 10px 0;
  font-weight: 400;
}

.member-role {
  color: var(--primary);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  display: inline-block;
}

.member-bio p {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin: 0 0 19px 0;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .member-profile {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 36px 0 0 0;
  }
  .member-info-col {
    align-items: center;
    text-align: center;
  }
  .member-img-col {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .member-img-col img {
    width: 92vw;
    height: auto;
    max-width: 340px;
    margin: 0 auto;
  }
  .member-info-col h2 {
    font-size: 2rem;
  }
  .member-bio p {
    font-size: 1.02rem;
  }
}