@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap')

* {
  box-sizing: border-box;
}

#spacer {
  /*! margin-top: -15px; */
  margin-bottom: -15px;
}

 .container{
    display: flex;
    flex-direction: column;
  }

main { 
  display: grid; 
  grid-template-columns: 1fr 1fr 1fr; 
  grid-template-rows: auto;
  
/* Define Auto Row size */
  /*  grid-auto-rows: 100px;  */
  
/*Define our columns */
  /*! grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); */
  
  max-width: 1200px;
  margin: 20px auto;
  width: auto;
  gap: 1rem;
}

section {
    border-radius: 15px;
  /*   background-color: #eeeeee; */
    background-color: #e8e8e8;
    padding: 10px;
}

.PressItem > img {
  margin: 5px auto;
  display: block;
  width: 95%;
}

.PressItem > h2 {
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1rem;
    margin-left: 0.6rem;
    font-variant: petite-caps;
    color: #d01e1e;
}

.PressItem > h3 {
    font-weight: 400;
    /* font-family: 'Cormorant Garamond', serif; */
    font-style: italic;
    width: 95%;
    text-align: center;
    margin: .5rem auto;
    font-size: 1.2rem;
    /* word-spacing: -0.1rem; */
    line-height: 1.75rem;
}

.PressItem > p {
    font-weight: 300;
    /* font-family: 'Cormorant Garamond', serif; */
    width: 90%;
    /* text-align: justify; */
    font-size: 1.1rem;
    /* word-spacing: .1rem; */
    margin: .75rem auto;
    -webkit-hyphens: auto;
    color: #1a2e55;
    hyphens: auto;
}

@media screen and (max-width:1260px) and (orientation:portrait){
 .container {flex-direction: row;}
/*  #spacer { margin-top: 0px; margin-bottom: -35px; } */
 main { grid-template-columns: 1fr ; width: 90vw;}
}


@media screen and (max-width:650px) and (orientation:portrait){

.PressItem > p { font-size: 1.25rem; }
.PressItem > h3 { font-size: 1.4rem; }
.PressItem > h2 { font-size: 1.5rem; }
}