.about-header {
  display: flex;
  flex-direction: column; /* mobile first */
  align-items: center;
  text-align: center;
  gap: 15px;
  padding: 25px 15px;
  background-color: white;
}

.right-column {
  background-color: white;
}

/* IMAGE */
.profile-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #1a73e8;
}

/* TEXT */
.about-right h1 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 5px;
}

.title {
  font-size: 16px;
  color: #1a73e8;
  font-weight: 600;
  margin-bottom: 5px;
}

.tagline {
  font-size: 14px;
  color: #666;
  max-width: 300px;
}

/* SECTION */
.section {
  margin-bottom: 20px;
}

.section h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1a73e8;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

.section ul {
  padding-left: 18px;
}

.section ul li {
  margin-bottom: 6px;
}

/* CONTACT */
.contact p {
  margin-bottom: 5px;
}

/* CARD */
.card {
  padding: 15px;
  border-radius: 6px;
  background: #fafafa;
}

@media (min-width: 768px) {
.grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
  }

.about-header {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 25px;
    padding: 30px;
    justify-content: center;
  }

.profile-img {
    width: 160px;
    height: 160px;
  }

.about-right h1 {
    font-size: 32px;
  }

.title {
    font-size: 18px;
  }

.tagline {
    font-size: 15px;
  }
}
