/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #content {
    padding: var(--sectionPadding);
    padding-top: 3rem;
    max-width: 48rem;
    margin: auto;
  }
  #content .event-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--secondary);
  }
  #content .event-header h2 {
    margin: auto;
    font-size: 1.625rem;
  }
  #content .event-header span {
    font-size: 0.875rem;
    font-style: italic;
  }
  #content .container {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #content .title {
    font-size: 48px;
    text-transform: inherit;
  }
  #content .content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #content .content .separator {
    margin-bottom: 1rem;
  }
  #content .content-container {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
  }
  #content .content-container span {
    line-height: 1.25rem;
  }
  #content .date-and-location {
    display: flex;
    gap: 3rem;
    width: 100%;
  }
  #content .sub-header {
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
  }
  #content .text {
    margin-bottom: 1rem;
  }
  #content .text:last-of-type {
    margin-top: 0;
    margin-bottom: 2rem;
  }
  #content .name {
    font-size: 1rem;
    line-height: 1.2em;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0 0 0.25rem;
    color: var(--headerColor);
    display: block;
  }
  #content .job {
    font-size: 0.875rem;
    line-height: 1.5em;
    color: #767676;
    display: block;
  }
  #content .image-group {
    /* scaling the font size with the view width */
    font-size: min(2.31vw, 0.7em);
    /* using ems so we can use font size to scale the whole section */
    width: 39.4375em;
    height: 39.75em;
    position: relative;
    order: 2;
  }
  #content .picture {
    overflow: hidden;
    display: block;
  }
  #content .picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes image act like a background image */
    object-fit: cover;
  }
  #content .picture1 {
    width: 100%;
    height: auto;
    aspect-ratio: 0.75;
    left: 0;
    top: 0;
    order: 2;
  }
  #content .picture2 {
    width: 25.875em;
    height: 25em;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 40px;
    /* 6px - 12px */
    border: clamp(0.375em, 1.5vw, 0.75em) solid #ffffff;
    right: 0;
    bottom: 0;
  }
  #content .ul {
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  #content .li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  #content .li .list-content-group {
    display: flex;
    flex-direction: column;
  }
  #content .cs-button-solid {
    margin-top: 2rem;
    min-width: 7.5rem;
    font-size: 1rem;
    line-height: clamp(2rem, 4vw, 3rem);
    text-transform: inherit;
  }
}

@media only screen and (min-width: 64rem) {
  #content .container {
    flex-direction: row;
  }
  #content .picture {
    width: calc(50% - 2rem);
  }

  #content .content {
    width: calc(50% - 2rem);
  }
}
