.info-row {
  display: flex;
  gap: 1.5em;
  margin-bottom: 4em;
  align-items: flex-start;
  justify-content: flex-end;
}

.info-row h2 {
  width: 20%;
  text-align: right;
  margin: 0;
}

.about-section .info-row h1 {
  margin-top: 0;
}

.about-section .info-content p {
  font-size: 0.95em;
  line-height: 1.5;
}

.info-row img {
  width: 250px;
  height: 350px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.info-content {
  border-left: 1px solid var(--border);
  padding-left: 1em;
  width: 72%;
}

.profile-btn {
  display: inline-grid;
  gap: 1em;
}

@media (max-width: 768px) {
  .info-row {
    flex-direction: column;
    gap: 0;
  }

  .info-row h2 {
    width: 100%;
    text-align: left;
    margin-bottom: 0;
  }

  .info-content {
    border-left: none;
    width: 100%;
    padding-left: 0;
  }
}
