/*
 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
*/

#ez-toc-container{
    width: 100%;
}

/*.site-footer{
    background:var(--footer-bg);
    color:var(--footer-text);
    padding:30px 0;
}
.site-footer a{
    color:var(--footer-link);
}
ol, ul {
    margin: 0 0 1em 1.1em;
}
.main-navigation .main-nav ul li a{
    padding-left:10px;
    padding-right:10px;
}*/
/*==================================================
>>>       HEADER     
==================================================*/
.site-header .inside-header{
    padding: 10px 0;
}

.header-widget a.wp-block-button__link{
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
    border: 2px solid #F57C3B;
    background: #F57C3B;
    color: #000;
    animation: nwm_box_shadow 2s infinite;
    transition: all;
    padding: 5px 10px;
    border-radius: 4px;
}
@keyframes nwm_box_shadow {
    0%{
        box-shadow: 0 0 1px #F57C3B;
        transform: scale(1);
    }
    50%{
        box-shadow: 0 0 15px #F57C3B;
        transform: scale(1.1);
    }
    100%{
        box-shadow: 0 0 1px #F57C3B;
        transform: scale(1);
    }
}


/*==================================================
>>>  SIDEBAR          
==================================================*/
.widget-area .widget{
    padding: 10px;
}


/*==================================================
>>>  ARCHIVE          
==================================================*/
article.type-post .inside-article{
    display: grid;
    /*grid-row: 2;*/
    grid-template-columns: 100px 1fr;
    column-gap: 20px;
    row-gap: 20px;
    padding: 0;
}

article.type-post .inside-article .entry-header{
    grid-column: 1/3;
    
}
article.type-post .inside-article .entry-summary{
   margin-top: 0;
}
article.type-post .inside-article .post-image{
  margin-top: 0;
}
article.type-post .inside-article .entry-meta{
   grid-column: 1 / 3;
   display: flex;
   gap: 10px;
}
