/* ===== ABOUT ===== */
.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-text {
  max-width: 75ch;
}

.about-title {
  margin-bottom: var(--space-md);
}

.about-paragraph {
  margin-bottom: var(--space-md);
  font-size: 1.0625rem;
  line-height: 1.7;
  text-align: left;
}

.about-paragraph:last-of-type {
  margin-bottom: var(--space-lg);
}

.about-cv {
  display: inline-block;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
}

.about-cv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--text);
  transition: width 0.3s ease;
}

.about-cv:hover::after {
  width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .about-container {
    align-items: flex-start;
    text-align: left;
  }
}
