/*
 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
*/

/* *********** VALEURS PAR DÉFAUT POUR LES STYLES DES BLOCS *********** */

/*Radius
 
radius-xs: .5rem
radius-s: 1rem
radius-m: clamp(1rem,1.798vw + 0.562rem,2rem)
radius-l: clamp(1rem, 4.494vw + -0.096rem, 3.5rem)
radius-xl: 300rem	
*/

/*Espaces pour les colonnes, grilles, marges extérieures / intérieurs...
 
gap-16: 1rem
gap-24: clamp(1rem, 0.899vw + 0.781rem, 1.5rem)
gap-32: clamp(1rem, 1.798vw + 0.562rem, 2rem) //écart medium / défaut
gap-40: clamp(1rem, 2.697vw + 0.343rem, 2.5rem)
gap-48: clamp(1rem, 3.596vw + 0.124rem, 3rem)
gap-56: clamp(1rem, 4.494vw + -0.096rem, 3.5rem)
gap-64: clamp(1rem, 5.393vw + -0.315rem, 4rem)
gap-72: clamp(1rem, 6.292vw + -0.534rem, 4.5rem)
gap-80: clamp(1rem, 7.191vw + -0.753rem, 5rem)
*/

/*Largeurs maximum (max width) pour les conteneurs, certains blocs de texte...
 
width-416: 416px
width-632: 632px
width-848: 848px
width-1064: 1064px
*/


/* ********************************** MODIFICATIONS DU THEME ********************************** */

/* Conteneur site global */
.site-wrapper {
	width:100%;
	max-width:1920px;
}

/* Ombre sous en-tête sticky */
.sticky-enabled .main-navigation.is_stuck {
	box-shadow: 2px 1px 10px rgba(0, 0, 0, .05);
}

/*Formattage liens menu dans footer*/
:where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button)) {
	padding-left:0em;
	padding-right:.5em;
	padding-bottom:0em;
	padding-top:0em;
}

/* Retrait marge ul
.inside-article ul {
	display: flex;
  	flex-direction: column;
	margin-bottom:0;
}*/


/* ********************************** TYPOGRAPHIES ********************************** */


/***Balance / Pretty***/
.balance, h1, h2, h3, h4, h5,
.h1-like, .h2-like, .h3-like, .h4-like, .h5-like {
	text-wrap:balance !important;
}

.pretty {
	text-wrap:pretty;
}

.nobalancepretty {
	text-wrap:stable !important;
}
/***FIN***/


/*Mise en gras des liens dans le texte*/
.inside-article a:not(.btn-global) {
	font-weight:700;
}

/* ********************************** UTILITAIRES ********************************** */

/* Pas de soulignement */
.no-text-deco, .no-text-deco a {
	text-decoration:none;
}