/* Container */
.chair-message {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--border-radius-small);
  background: var(--color-white);
  margin-top: -5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Layout */
.chair-message-left {
  width: 128px;
  flex-shrink: 0;
}
.chair-message-right {
  flex: 1;
}

/* Photo */
.chair-message-photo {
  width: 135px;
  height: auto;
}

/* Message */
.chair-message-intro {
  color: var(--color-black);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.chair-message-name {
  /* margin: 0.5rem 0; */
  font-size: 1.625rem;
  font-weight: 600;
}
.chair-message-text {

}
.chair-message-text p {
  margin: 0.75rem 0;
  font-size: 1rem;
  color: var(--color-dark-gray);
}
.chair-message-text a {
  padding-bottom: 2px;
  color: var(--color-black);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--color-light-green);

}

/* Signature */
.chair-message-signature {
  margin-top: 5px;
  width: 180px;
  height: auto;
}

/* Mobile: Reset negative margin since chair message appears first */
@media (max-width: 1080px) {
  .chair-message {
    margin-top: 0;
  }
  
  .chair-message-left {
    width: 100px;
  }
  
  .chair-message-photo {
    width: 100px;
  }
}