.content-description {
  margin-bottom: 43px;
}

.noah-stuff-group .group-title h3 {
  color: var(--primary);
  padding-bottom: 17px;
  border-bottom: 1px dashed var(--primary);
  margin-bottom: 32px;
  margin-top: 41px;
}
.noah-stuff-group .group-contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 57px;
}
.noah-stuff-group .stuff-image {
  width: 100%;
  /* height: 160px; */
  aspect-ratio: 1.5;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}
.noah-stuff-group .designation {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: var(--light-gray);
  margin-bottom: 7px;
}
.noah-stuff-group .stuff-external-link .name {
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  color: var(--text);
  text-decoration: underline;
}
.noah-stuff-group .stuff-external-link img {
  width: 22px;
  height: 22px;
}
.noah-stuffs {
  padding-left: 32px;
}
.noah-stuff-group .group-contents .single-stuff .pets {
  position: relative;
  background: var(--light-yellow);
  margin: 24px 0 0;
  border-radius: 4px;
  text-align: center;
  padding: 12px;
  font-size: 12px;
}
.noah-stuff-group .group-contents .single-stuff .pets .ttl {
  font-weight: 500;
  color: var(--golden);
  position: absolute;
  top: -0.6rem;
  transform: translateX(-50%);
  left: 50%;
  white-space: nowrap;
}
.noah-stuff-group .group-contents .single-stuff .pets .ttl::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../logos/foot-3.svg) no-repeat;
  background-size: contain;
  position: relative;
  top: 3px;
  left: -4px;
}

@media screen and (max-width: 600px) {
  .noah-stuffs {
    padding-left: 0px;
  }
  .noah-stuff-group .group-contents {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 400px) and (max-width: 768px) {
  .noah-stuffs {
    padding-left: 0px;
  }
}

/* Modal Styles */
.staff-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.staff-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-content {
  background: var(--white);
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  margin: 0px 20px;
}

.staff-modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--text);
  z-index: 10;
  transition: background-color 0.2s ease;
}

/* .modal-close:hover {
  background: var(--light-gray);
} */

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

@media (max-width: 991px) {
  .modal-body {
    grid-template-columns: 1fr;
  }
}

.modal-image-section {
  /* background: var(--light-white); */
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.modal-image-wrapper {
  width: 100%;

  margin-bottom: 24px;
}

.modal-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.modal-name {
  font-size: 32px;
  font-weight: bold;
  color: var(--text);
  margin: 0 0 8px 0;
  text-align: center;
}

.modal-designation {
  font-size: 14px;
  color: var(--text);
  text-align: center;
}

.modal-info-section {
  padding: 20px;
}

@media (max-width: 767px) {
  .modal-image-section,
  .modal-info-section {
    padding: 0px;
  }
  .modal-image-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }
}

.modal-section {
  margin-bottom: 32px;
}

.modal-section:last-child {
  margin-bottom: 0;
}

/* .modal-section-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--text);
  margin: 0 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray);
} */
.modal-section-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--text);
  margin: 0 0 12px 0;
  padding-bottom: 8px;
  position: relative;
}

.modal-section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: var(--primary);
  z-index: 1;
}

.modal-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--gray);
}

.modal-section-content {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}

.modal-duties-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-duties-list li {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
}

.duty-bullet {
  color: var(--primary);
  margin-right: 8px;
  flex-shrink: 0;
}

.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: var(--light-white);
}

.modal-content::-webkit-scrollbar-thumb {
  background: var(--gray);
  border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--dark-gray);
}
