#experience .section-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

#experience .section-title h2 {
  margin: 0;
  line-height: 1.1;
}

#experience .section-title .muted {
  margin: 0;
  margin-bottom: 20px;
  white-space: normal;
  font-weight: 600;
  font-size: 15px;
  opacity: .85;
}

#experience .project {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

#experience .project .content {
    order: 1;
}

#experience .project .img {
    order: 2;
    margin-top: 12px;
}

#experience .project .img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}




/* RESPONSIVE */
@media (min-width: 768px) {
    #experience .project {
        flex-direction: row;
        align-items: flex-start;
    }

    #experience .project .img {
        order: 0;
        margin-top: 0;
        margin-left: 16px;
    }

    #experience .project .img img {
        width: auto;
        height: 180px;
    }

  #experience .section-title {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
  }

  #experience .section-title .muted {
    white-space: nowrap;
  }
}