/* ===== about.css ===== */

.about-section { background: var(--paper); }
.about-section--alt { background: var(--bg); }

.about-profile {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-top: 8px;
}

.about-photo {
  width: 120px;
  height: 150px;
  background: var(--line);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--sub);
}
.about-photo::after {
  content: "PHOTO";
  font-size: 9px;
  letter-spacing: .15em;
  color: var(--sub);
}

@media (max-width: 480px) {
  .about-profile {
    flex-direction: column;
  }
  .about-photo {
    width: 100%;
    height: 180px;
  }
}
