body {
    margin: 0;
    padding: 0;
    font-family: 'Cormorant Garamond', serif;
    background-color: #f8f7f3;
    color: #2e2e2e;
    line-height: 1.2;
  }
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 22px;
  }
  
  .h2_subheader {
      margin-bottom: 2em;
      font-style: italic;
  }

  .container {
    padding: 0 20px;
  }
  header {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .header__logo {
    margin: 10px auto;
  }
  
  /* Breadcrumbs ---*/
  .breadcrumb {
      margin: 2em 0;
  }
  .breadcrumb-item {
      font-size: 0.8rem;
  }
  .breadcrumb-item a,
  .breadcrumb-item a:visited {
    color: #7a4038;
    text-transform: uppercase;
    text-decoration: none;
  }
  .breadcrumb-item a:hover {
    color: #266aa6;
    text-decoration: underline;
  }
  
  .article_index {
      text-align: center;
      margin: 2em auto;
  }
  .article_index p {
      font-size: 1em;
      font-style: italic;
  }
  .article_index p a {
      color: #7a4038;
      text-decoration: none;
  }
  .article_index p a:hover {
      color: #266aa6;
      text-decoration: underline;
  }
  
  
  main {
    min-height: calc(100vh - 76px);
    max-width: 840px;
    margin: 10px auto;
    font-size: 1.3rem;
  }
  .main__header {
    text-align: center;
    margin-bottom: 3em;
    padding: 2em;
    background-color: #eeeae5;
    box-shadow: 0px 2px 3px 1px rgba(128, 128, 128, 0.2);
  }
  .flex__div {
    display: flex;
  }
  .flex__p-left {
    flex-grow: 1;
    margin-top: 0;
    gap: 2rem;
  }
  .index__ul {
      margin-top: 10px;
      margin-left: 0;
  }
  .index__ul2{
      margin-top: 10px;
      margin-left: 20px;
  }
  .index__li {
    /* list-style-type: "\1F449"; */
    list-style-type: none;
    padding-left: 0;
    margin-top: 5px;
  }
  .index__li a {
    display: block;
    color: #7a4038;
    /* font-size: 16px; */
    font-weight: normal;
    text-transform: uppercase;
    text-decoration: none;
  }
  .index__li a:hover {
    color: #266aa6;
    background-color: #f4f2f0;
    text-decoration: underline;
  }
  .index__li a::before {
    content: "☞ ";
  }
  .index__li--comment {
      font-size: 0.9em;
      font-style: italic;
      padding-left: 2em;
      margin-bottom: 10px;
  }
  
  .index__p--small {
    margin-top: 0px;
    font-size: 16px;
  }
  .index__p--subheader {
    margin-top: 0;
  }
  .index__p--text {
    margin-top: 0;
    margin-bottom: 3px;
  }
  .big_number {
    font-size: 2.7em; 
    font-weight: bold; 
    color: #7a4038;
    border-top: 1px solid #7a4038;
  }
  .cite {
    border-left: 7px double #7a4038;
    padding-left: 2em;
    padding-right: 1em;
    padding-top: 1em;
    padding-bottom: 1em;
    margin-bottom: 1em;
    background-color: #fefcf8;
  }
  .citesub {
    width: 100%;
    text-align: end;
    font-size: smaller;
    font-style: italic;
  }
  .cite_span {
    font-weight: bolder;
    font-style: italic;
    color: #6B5332;
  }
  .card__body {
    display: flex;
    padding: 32px;
    box-shadow: 1px 10px 14px 0px rgba(133, 132, 132, 0.5);
  }
  .card__text {
    flex-grow: 1;
  }
  .card__text a {
    color: #7a4038;
    font-weight: normal;
    text-transform: uppercase;
    text-decoration: none;
  }
  .card__text a:hover {
    color: #266aa6;
    text-decoration: underline;
  }
  .card__text strong {
    color: #000;
  }
  .inline_link {
      text-transform: none !important;
  }
  .strongest {
      font-family: "Times", serif;
      font-weight: 800;
      font-variant-caps: small-caps;
      color: navy;
  }
  figcaption {
    font-size: 0.9rem;
    font-variant: small-caps;
    text-align: center;
    margin-top: 5px;
  }
  .figcap {
    font-size: 0.9rem;
    font-variant: small-caps;
    text-align: center;
    margin-top: -20px;
  }
  .secondary-text {
    color: #7a4038;
    font-style: italic;
    padding: 10px 20px;
    margin: 40px 0px 10px 40px;
    border: 1px dotted #7a4038;
  }
  .popup_link {
    border-bottom: 1px dotted #266aa6;
    color: #266aa6;
  }
  .popup_link:hover,
  .popup_link:focus {
    text-decoration: none;
    cursor: pointer;
  }
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: transparent;
  }
  .modal-content {
    text-align: center;
    background-color: transparent;
    margin: 15% auto;
    padding: 20px;
    width: 80%;
  }
  .close {
    color: #aaa;
    float: right;
    font-size: 48px;
    font-weight: bold;
  }
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  footer {
    min-height: 38px;
    margin-top: 64px;
    width: 100%;
    background-color: #f3f0eb;
    border-top: 1px solid #7a4038;
  }
  @media screen and (min-width: 768px) {
    .container {
      width: 100%;
      padding: 0;
      margin: 0 auto;
    }
  }
  @media screen and (max-width: 667px) {
    .flex__div {
      display: flex;
    }
    .flex__p-left {
      margin-left: 0;
      flex-wrap: wrap;
    }
    .flex__div-img {
        width: 100%;
        text-align: center;
    }
    .card__body {
      display: block;
    }
  }
