@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@300;400;500&display=swap');

.author-wrapper {
  display: flex;
  max-width: 740px;
  margin: 0 auto;
  background-color: #212121;
  border-radius: 48px;
  overflow: hidden;
  color: white;
}

.author-signature {
  display: flex;
  flex-direction: row;
}

.author-image {
  width: 240px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}

.author-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}

.author-role-label {
  font-size: 14px;
  opacity: 0.8;
  margin: 0 0 4px;
  font-family: 'Libre Franklin', sans-serif;
}

.author-name {
  font-size: 28px;
  font-family: "Bookman Old Style", serif;
  margin: 0 0 4px;
  color: #ffffff;
}

.author-title {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 17px;
  font-weight: 500;
  margin: 4px 0 16px;
  color: #ffffff;
}

.author-description {
  font-size: 14px;
  font-family: "Libre Franklin", sans-serif;
  line-height: 1.5;
  color: #ffffff;
}

@media (max-width: 600px) {
  .author-wrapper {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    margin: 32px 16px;
    padding: 24px;
    border-radius: 32px;
    background-color: #212121;
  }

  .author-image {
    width: 90px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
  }

  .author-signature {
    flex-direction: row;
    gap: 16px;
    padding: 0;
  }

  .author-text {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .author-role-label {
    font-size: 13px;
    margin-bottom: 4px;
    opacity: 0.8;
    font-family: 'Libre Franklin', sans-serif;
  }

  .author-name {
    font-size: 20px;
    margin-bottom: 2px;
    font-family: "Bookman Old Style", serif;
    color: #ffffff;
 