

.eve{
    height: 90vh;
    display: flex;
    flex-direction: column;
}

.frontpage_parent{
    flex: 1;
    display: flex;
    flex-direction: row;
}

.articles_parent{
    min-width: 750px;
    
    flex: 1;
    display: flex; 
    flex-direction: column;
    
    margin-left: auto;
    margin-right: auto;
}

.explore_parent{
    flex: 1;
    max-width: 30vw;
    
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    
    border-left: 3px solid #707070;
    
    padding: 20px;
}

.explore_section{
    display: flex;
    flex-direction: column;
}

.explore_title{
    color: #707070;
    font-family: 'Libre Baskerville', serif;
    font-size: 29px;
    
    padding-bottom: 10px;
}

.explore_chunk_parent{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.explore_chunk{
    color: #505050;
    margin: 5px;
    margin-right:15px;
    margin-left: 0px;
    padding: 5px;
    font-family: 'Open Sans';
    font-size: 20px;
    
    background: #ffffff;
}

.explore_chunk:hover{
    color: #f0f0f0;
    background:#404040;
}

.issue{
    width: 750px;
    margin-top: 8px;
    
    margin-left: auto;
    margin-right: auto;
}

.issue_title{
    color: #f0f0f0;
    background: #a0a0a0;
    font-family: 'Open Sans';
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    
    margin: 8px;
}

.article_parent{
    display: flex;
    flex-direction: row;
    
    background: #ffffff;
    
    margin-bottom: 30px;
    
    padding: 5px;
}

.article_image{
    
    height: 160px;
    width: 160px;
}

.article_text_parent{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    margin: 7px;
    margin-top: 2px;
    width: 600px;
}



grey {
    font-weight: normal;
}

.article_title{
    flex:1;
    flex-grow: 1;
    
    color: #404040;
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 28px;
}

.article_title:hover{
    color: #505050;
    text-decoration: underline;
}

.article_by_parent{
    flex:0;
    
    display: flex;
    flex-direction: row;
    align-items: baseline;
}

.article_by{
    color: #707070;
    
    font-family: 'Open Sans';
    font-size: 20px;
    vertical-align: bottom;
}

.tags_parent{
    display: flex;
    flex-direction: row;
    
    flex: 1;
    justify-content: right;
}

.tags{
    color: #606060;
    font-family: 'Open Sans';
    font-size: 20px;
    
    padding-left: 2px;
    padding-right: 2px;
    margin-left: 5px;
    
    background: #e0e0e0;
}

.tag_title{
    color: #a0a0a0;
    font-family: 'Libre Baskerville', serif;
    font-size: 30px;
    
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}

.info{
    color: #303030;
    font-family: 'Open Sans', sans-serif;
    font-size: 23px;
    
    margin-top: 30px;
    width: 750px;
    
    margin-left: auto;
    margin-right: auto;
}

.article_by:hover{
    opacity: 0.9;
    border-bottom: 3px dotted #909090;
    margin-bottom: -3px
}

.tags:hover{
    background: #505050;
    color: #e0e0e0;
}


.contact{
    font-family: 'Open Sans';
    color: #a0a0a0;
    font-size: 20px;
    text-align: center;
    line-height: 0.8;
    
    border-top: 3px solid #808080;
    margin-left: 10px;
    margin-right: 10px;
}

.clicky:hover{
    background: #e0e0e0;
    opacity: 0.8;
}

.article_parent:hover{
    background: #fbfbfb;
}

.shop_parent{
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}

.shop_name{
    color: #404040;
    font-family: 'Libre Baskerville', serif;
    font-size: 30px;
    
    text-align: center;
}

.shop_location{
    font-family: 'Open Sans';
    color: #606060;
    font-size: 20px;
    
    text-align: center;
}

@keyframes article-load{
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade_in{
    0% {
        opacity: 0;
        transform: translateX(-4px);
    }
    
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in{animation: fade_in 300ms ease-in;}

.container {
      display: flex;
      aspect-ratio: 2 / 1.41; /* Two A5s side by side */
      width: 80%;
      max-width: 1000px;
      border: 1px solid #ccc;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      margin: 0 auto;
      font-family: 'Open Sans', sans-serif;
      
      margin-bottom: 64px;
    }

    .cover {
      flex: 1;
      aspect-ratio: 1 / 1.41;
      overflow: hidden;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .right-panel {
      flex: 1;
      aspect-ratio: 1 / 1.41;
      display: flex;
      flex-direction: column;
    }

    .description {
      flex: 4;
      padding: 1rem;
      box-sizing: border-box;
      overflow-y: auto;
      background-color: #fff;
    }

    .description b {
        font-family:"Pupilla", sans-serif;
        font-size: 1.5rem;
      display: block;
      text-align: center;
      margin-top: 1.5rem;
      margin-bottom: 1rem;
      font-weight: bold;
    }

    .description p {
      margin: 1.5rem 0;
      line-height: 1.6;
    }

    .description i {
      font-style: italic;
      font-weight: bold;
    }

    .stockists {
        font-family:"Pupilla", sans-serif;
        font-size: 1.5rem;    
        
      flex: 1;
      padding: 0.5rem;
      font-size: 1.4rem;
      display: flex;
    }

    .stockists a {
      margin: 0 0.5rem;
      color: #333;=
    }
    
    .issue-number{
        text-align:center;
        font-family:"Pupilla", sans-serif;
        font-size: 4rem;
        margin-bottom: 16px;
    }