/** Shopify CDN: Minification failed

Line 93:3 Expected "}" to go with "{"

**/
.tutor-gallery {
  .tutor-host-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  }

  .tutor-row {
    padding: 0;
  }
  .tutor-gallery-header {
    text-align: center;
    display: flex;
    justify-content: center;
  }
}

/* responsive sizing for cards  */

.tutor-gallery {
@media only screen and (max-width: 767px) {
    .tutor-host-card {
      width: 80%; } } }

.tutor-gallery .tutor-host-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 30px;
  text-align: left;
  justify-content: flex-start;
  height: fit-content;
  background: #fff;
  position: relative;
  gap: 0.75rem;
  width: 25rem;
  overflow: hidden;
  
  
  .tutor-image-container {
    display: flex;
    justify-content: space-between;
    
    .tutor-image {
      height: 100px;
      width: 100px;
      border-radius: 50%;
      object-fit: cover;
      object-position: 50% 40%;
    }
  
    .harvard-crest-image {
      height: 50px;
      width: 50px;
    } }

  .tutor-name {
    margin-bottom: 0;
    color: #000;
  }
  .tutor-biography {
    height: 200px;
    overflow-y: auto;
    color: #000;
  }
  .tutor-tags-container {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
    .tutor-tag {
      text-align: center;
      border: none;
      width: fit-content;
      padding: 5px 10px;
      border-radius: 8px;
      font-size: 0.75rem;
      font-weight: 700;
      background-color: #ffe6e6;
      color: #AC1A2F;
    }

    .tutor-button {
      display: flex !important;
      width: 100%;
    }
  }