  /*!
 * Dark Framewrok v1.0.0
 * Dedicated to 1170px
 * Copyright 2013
 * Licensed under Astrit Bublaku
 */
    .wrapper {
       width:1170px;
       margin:0 auto;
       display:block;
   }

    .dark [class*="column"]:first-child {
        margin-left: 0;
    }

   .dark [class*="column"] {
        float: left;
        min-height: 1px;
        margin-left: 30px;
    }


  .column12 {
    width: 100%;
    *width: 99.94680851063829%;
  }
  .column11 {
    width: 91.45299145299145%;
    *width: 91.39979996362975%;
  }
  .column10 {
    width: 82.90598290598291%;
    *width: 82.8527914166212%;
  }
  .column9 {
    width: 74.35897435897436%;
    *width: 74.30578286961266%;
  }
  .column8 {
    width: 65.81196581196582%;
    *width: 65.75877432260411%;
  }
  .column7 {
    width: 57.26495726495726%;
    *width: 57.21176577559556%;
  }
  .column6 {
    width: 48.717948717948715%;
    *width: 48.664757228587014%;
  }
  .column5 {
    width: 40.17094017094017%;
    *width: 40.11774868157847%;
  }
  .column4 {
    width: 31.623931623931625%;
    *width: 31.570740134569924%;
  }
  .column3 {
    width: 23.076923076923077%;
    *width: 23.023731587561375%;
  }
  .column2 {
    width: 14.52991452991453%;
    *width: 14.476723040552828%;
  }
  .column1 {
    width: 5.982905982905983%;
    *width: 5.929714493544281%;
  }



@media screen and (max-width:1170px) {

    .wrapper {
        width:940px;
        margin:0 auto;
        display:block;
    }

    .dark [class*="column"] {
  float: left;
  min-height: 1px;
  margin-left: 24px;
  }

}
/* for 980px or less */
@media screen and (max-width:980px) {

  .wrapper {
      width:724px;
      margin:0 auto;
      display:block;
  }

    .dark [class*="column"]:first-child {
        margin-left: 0;
    }

   .dark [class*="column"] {
        float: left;
        min-height: 1px;
        margin-left: 20px;
    }


.column12 {
    width: 100%;
    *width: 99.94680851063829%;
  }
  .column11 {
    width: 91.43646408839778%;
    *width: 91.38327259903608%;
  }
  .column10 {
    width: 82.87292817679558%;
    *width: 82.81973668743387%;
  }
  .column9 {
    width: 74.30939226519337%;
    *width: 74.25620077583166%;
  }
  .column8 {
    width: 65.74585635359117%;
    *width: 65.69266486422946%;
  }
  .column7 {
    width: 57.18232044198895%;
    *width: 57.12912895262725%;
  }
  .column6 {
    width: 48.61878453038674%;
    *width: 48.56559304102504%;
  }
  .column5 {
    width: 40.05524861878453%;
    *width: 40.00205712942283%;
  }
  .column4 {
    width: 31.491712707182323%;
    *width: 31.43852121782062%;
  }
  .column3 {
    width: 22.92817679558011%;
    *width: 22.87498530621841%;
  }
  .column2 {
    width: 14.3646408839779%;
    *width: 14.311449394616199%;
  }
  .column1 {
    width: 5.801104972375691%;
    *width: 5.747913483013988%;
  }
 
}
/* for 700px or less */
@media screen and (max-width:700px) {

    .wrapper {
        width:460px;
        margin:0 auto;
        display:block;
    }

    .dark [class*="column"]:first-child {
        margin-left: 0;
    }

   .dark [class*="column"] {
        float: none;
        min-height: 1px;
        margin-left: 0px;
    }

  .column12 ,
  .column11 ,
  .column10 ,
  .column9 ,
  .column8 ,
  .column7 ,
  .column6 ,
  .column5 ,
  .column4 ,
  .column3 ,
  .column2 ,
  .column1 {  width: 100%;  }

}
/* for 480px or less */
@media screen and (max-width:480px) {

    .wrapper {
        width:300px;
        margin:0 auto;
        display:block;
    }

}
<style>
  /* === Our Team Section Styling === */
  .our-team-section {
    padding: 80px 20px;
    background-color: #f9f7f4;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #3a2e2a;
    position: relative;
    display: inline-block;
  }

  .section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #d4a574;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  }

  .team-img-wrapper {
    position: relative;
    overflow: hidden;
  }

  .team-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .team-card:hover .team-img {
    transform: scale(1.08);
  }

  .team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 20px 15px 15px;
    text-align: left;
  }

  .team-role {
    margin: 0;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .team-info {
    padding: 24px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .team-name {
    margin: 0 0 8px;
    font-size: 1.4rem;
    color: #3a2e2a;
    font-weight: 600;
  }

  .team-bio-title {
    font-size: 1.1rem;
    color: #d4a574;
    margin: 0 0 12px;
    font-style: italic;
    font-weight: 500;
  }

  .team-bio {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
  }

  /* Responsive Design */
  @media (max-width: 992px) {
    .team-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .section-title {
      font-size: 2.2rem;
    }
  }

  @media (max-width: 600px) {
    .team-grid {
      grid-template-columns: 1fr;
    }
    .our-team-section {
      padding: 60px 15px;
    }
    .team-img {
      height: 240px;
    }
  }
</style>