﻿article * {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    border: 0px;
   
}

   


article p {

    margin-bottom: 1em;
}
    
article small
{

    }

article ul {
    margin-left: 1.0em;
    padding-left: 0;
}

section.tileSection {  
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    column-gap: 3%;
    row-gap: 1.8vw;

}



@media (max-width: 62em) {
    section.tileSection {
        
        row-gap: 3vw;
    }
}


section.tileSection article {
    --article-width: 31.33333333333333%;

     flex-basis: var(--article-width);
   }


@media (max-width: 62em) {
    section.tileSection article {
        --article-width: 48.5%;
    }
}


@media (max-width: 26em) {
    section.tileSection article {       
        --article-width: 100%;
    }
}

section.tileSection article a {  
    text-decoration: none;
        
    display: flex;
}

section.tileSection article picture {
    border: 8px solid #ffffff;
    width: 100%;
    border-radius: 12px;
    display:grid;
}


section.tileSection figure {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    display: flex;
    justify-content: center;
    border-radius: 7px;
}

section.tileSection figure img {
    width: auto;
    object-fit: scale-down;
    /**/
   /* object-fit: cover;*/
    border-radius: unset;
}

section.tileSection figcaption {
    
    height: 3.6em;
    padding-top: 1.0em;
    padding-bottom: 1em;
    padding-left: 0.3em;
    background-color: rgba(255, 255, 255, 0.8);
    align-self: end;
    display: flex;
    flex-direction: column;
    
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 43em) {
    section.tileSection figcaption {
        height: 3.8em;
        line-height: 1.0em;
    }
}

section.tileSection figure, section.tileSection figcaption {
    grid-column: 1/2;
    grid-row: 1/2;
    font-family: 'PTS-bold';
}

.intro article p {
    margin-bottom: 2em;
}

