.contact-list {
  margin: 0;
  padding: 0;
}
.contact-list li:before {
  content: none;
}

.portrait-container {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    column-gap: 32px;
}

.portrait {
  width: calc(50% - 16px);
  margin-bottom: 20px;
  font-size: 70%;
}

.portrait h3 {
  font-size: 17px;
}

.portrait img {
  width: 100%;
}
.portrait .contact-info {
  margin-top: 6px;
}
.portrait .contact-info h3 {
  margin-bottom: 2px;
  color: var(--mise-dark-blue);
}
.portrait .contact-info ul {
  margin: 0;
  padding: 0;
}
.portrait .contact-info ul li:before {
  content: none;
}

.portrait .contact-info a {
  word-wrap: break-word;
  color: var(--mise-light-blue);
}

.portrait .contact-info a:hover {
    color: #00a0d6;
}

.twocoltext-container iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}

address {
  display: block;
  font-style: normal;
  line-height: 2;
  text-align: center;
}

address h3 {
  margin-top: 0;
}


.blueheader {
    color: #4A2748;
}

.email a {
    color: #0575C5;
}
.email a:hover {
    color: var(--mise-dark-blue);
}

div#meetingDiv {
    display: block;
    margin-top: 0.5em;
    text-align: center;
}

.twocoltext-container .column-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.center {
    margin: auto;
}

.twocoltext-container {
    flex-direction: column-reverse;
    gap: 2em;
}

.content hr {
    width: 90%;
    border: none;
    height: 1px;
    background-color: #e0e0e0;
    margin: 1.4em auto;
    display: block;
}

#meetingDiv button {
    width: 100%;
}


@media only screen and (min-width: 640px) {
    .twocoltext-container {
        flex-direction: row;
        gap: 40px;
    }

    .portrait {
        width: calc(25% - 24px);
    }
    
    address, div#meetingDiv {
        text-align: left;
    }
    
    .content hr {
        background-color: #fff;
    }
}