/* Profile layout */

.profile {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  align-items: start;

  padding: 1.75rem;
  border-radius: 7px;
  border: 1px solid var(--muted-border-color);
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}


.profile img {
  width: 200px;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}


.profile .text {
  display: flex;
  flex-direction: column;
}


.profile hgroup {
  margin-bottom: 0.5rem;
}

.profile hgroup p {
  color: var(--muted-color);
}

.profile p {
  line-height: 1.6;
  font-size: 0.85rem;
}


@media (max-width: 700px) {

  .profile {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .profile img {
    margin: 0 auto;
  }

}
