/* About Info Table */
.about-info {
  width: 100%;
}

.about-info__row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.about-info__row--last {
  border-bottom: none;
}

.about-info__label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 124px;
  min-height: 48px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  color: #353535;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  flex: 0 0 124px;
  height: fit-content;
  align-self: flex-start;
}

.about-info__value {
  flex: 1;
  color: #333333;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 890px) {
  .about-info__row {
    flex-direction: column;
    align-items: flex-start;
    border-bottom: none;
    gap: 16px;
    padding-top: 0;
  }
  .about-info__label {
    width: 100%;
    height: fit-content;
    min-height: auto;
    flex: 0 0 auto;
  }
  .about-info__value {
    width: 100%;
  }
}

/* About Signature (chữ ký) */
.about-signature {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 40px;
  justify-content: flex-end;
}

.about-signature__label {
  color: #353535;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

.about-signature__name {
  color: #333333;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}

/* About Philosophy (私たちの思い) */
.about-philosophy {
  width: 100%;
}

.about-philosophy__section {
}

.about-philosophy__section-header {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.about-philosophy__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.about-philosophy__section-title {
  color: #828282;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  margin: 0;
}

.about-philosophy__heading {
  color: #353535;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.25;
}

.about-philosophy__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.about-philosophy__text {
  color: #353535;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  margin: 0;
}

.about-philosophy__text--faded {
  opacity: 0.6;
  margin-bottom: 40px;
}

.about-philosophy__image {
  margin: 24px 0;
  margin-bottom: 120px;
}

.about-philosophy__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

@media screen and (max-width: 890px) {
  .about-philosophy__image img {
    height: 269px;
  }
  .about-philosophy__image {
    margin-bottom: 80px;
  }
  .about-philosophy__section-title {
    font-size: 16px;
  }
  
  .about-philosophy__heading {
    font-size: 28px;
  }
  .about-philosophy__text {
    font-size: 14px;
  }
  .about-philosophy__text--faded {
    margin-bottom: 32px;
  }
  .about-info__label, .about-info__value {
    font-size: 14px;
  }
  .about-signature {
    margin-top: 24px;
  }
}
