/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
/* Make sure THIS class is on the element that directly wraps all .gb-loop-item */

/* Force each loop item to fill its grid cell 
.post-grid--hero > .gb-loop-item{
  height: 100%;
  min-height: 0;
  align-self: stretch;
}


.post-grid--hero > .gb-loop-item:first-child{
 grid-column: 1 / 2;
    grid-row: 1 / 3;
}


.post-grid--hero > .gb-loop-item:nth-child(2){
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}
.post-grid--hero > .gb-loop-item:nth-child(3){
  grid-column: 3 / 4;
    grid-row: 1 / 2;

}


.post-grid--hero > .gb-loop-item:nth-child(4){
grid-column: 2 / 4;
    grid-row: 2 / 3;

}

.cardsd {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
    box-shadow: var(--shadow);
   
    isolation: isolate;
}
*/