.support-section {
  display: flex;
  align-items: flex-start;
  background: #66b36e;
  padding: 60px;
  color: white;
  font-family: sans-serif;
  position: relative;
}

/* Label bên trái */
.support-label {
  writing-mode: vertical-rl;   
  transform: rotate(0deg);  
  font-size: 99px;             
  font-weight: 600;
  opacity: 0.25;
  margin-right: 60px;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
  position: absolute;
}

/* Nội dung chính */
.support-content {
  flex: 1;
  text-align: center;
}

.support-title {
  font-size: 40px;
  margin-bottom: 40px;
}

/* List member */
.support-members {
  display: flex;
  justify-content: center;
  gap: 127px;
}

.member {
  text-align: center;
}

.member-photo {
  width: 313px;     
  height: 292px;    
  border-radius: 30px;
  overflow: hidden;
  background: #f5f8f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-photo.placeholder {
  background: #f5f8f6;
}

.member-name {
  margin-top: 10px;
  font-size: 21px;
  font-weight: 500;
  color: #fff;
}

/* Tablet lớn & Laptop nhỏ (993px – 1439px) */
@media (max-width: 1439px) and (min-width: 993px) {
  .support-section {
    padding: 40px;
  }

  .support-label {
    font-size: 70px;
    margin-right: 40px;
  }

  .support-title {
    font-size: 32px;
  }

  .support-members {
    gap: 60px;
  }

  .member-photo {
    width: 260px;
    height: 330px;
    border-radius: 20px;
  }

  .member-name {
    font-size: 18px;
  }
}

/* Tablet nhỏ (769px – 992px) */
@media (max-width: 992px) and (min-width: 769px) {
  .support-section {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .support-label {
    position: static;
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 32px;
    margin-bottom: 20px;
    opacity: 0.25;
  }

  .support-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .support-members {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .member {
    flex: 0 0 40%;
    max-width: 280px;
  }

  .member-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .member-name {
    font-size: 16px;
  }
}

/* Mobile (<=768px): 2 ảnh trên + 1 ảnh dưới */
@media (max-width: 768px) {
  .support-section {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
  }

  .support-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .support-members {
    display: grid;
    grid-template-columns: 1fr 1fr;  /* 2 cột */
    gap: 20px;
  }

  .member {
    text-align: center;
  }

  .member:nth-child(3) {
    grid-column: span 1;  
  }

  .member-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
  }

  .member-name {
    font-size: 15px;
  }

  /* Label nằm ở cột phải hàng 2 */
  .support-label {
    grid-column: 2;
    grid-row: 2;
    writing-mode: vertical-rl;
    transform: rotate(0deg);
    font-size: 44px;
    font-weight: 500;
    opacity: 0.25;
    align-self: center;   /* căn giữa theo chiều dọc */
    justify-self: center; /* căn giữa theo chiều ngang */
    margin: 0;
    bottom: 97px;
    right: 54px;
  }
}

