/**** Basic Reset / Box Sizing ****/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/**** Layout Adjustments ****/
/* Ensures the profile photo is constrained properly */
#profile-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

/**** Custom Section Title Styling ****/
.section-title {
  font-size: 1.4rem;
  font-weight: 600;
}

/**** Left Column Customizations ****/
.left-col {
  padding-right: 1rem;
}

/**** Right Column Customizations ****/
.right-col {
  padding-left: 1rem;
}

/**** Card Body Lists (for bullet spacing) ****/
.card-body ul {
  list-style: disc inside;
  margin: 0.5rem 0 0.5rem 1rem;
}
