@charset "UTF-8";

/**
> ONE RESPONSIVE LINE
.columns ==  a | b | c | d (x4 max / vertical centered) [default]
.columns.vertical-centered == vertical centered
.columns.centered
.columns.has-gutter
.columns > .has-gutter
**/

/*****************************/
/*****************************/
/********** COLUMNS **********/
/*****************************/
/*****************************/

/*****************************/
/********** DEFAULT **********/
/*****************************/

.columns {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	   -moz-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	width: 100%;
	max-width: none; /* for back WP */
	gap: var(--gutter-gap);
}
.columns > * {
	margin: 0;
	list-style-type: none;
}

/****************************/
/********** CUSTOM **********/
/****************************/

.columns.fit {
	gap: 0;
}
.columns.large {
	gap: var(--gutter-gap-large);
}
.columns.reversed {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
	   -moz-box-orient: horizontal;
	   -moz-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
}

/***************************/
/********** SIZES **********/
/***************************/

.columns > .min {
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	   -moz-box-flex: 0;
	    -ms-flex-positive: 0;
	        flex-grow: 0;
}
.columns > .short {
	-webkit-box-flex: 0.5;
	-webkit-flex-grow: 0.5;
	   -moz-box-flex: 0.5;
	    -ms-flex-positive: 0.5;
	        flex-grow: 0.5;
}
.columns > .large {
	-webkit-box-flex: 2;
	-webkit-flex-grow: 2;
	   -moz-box-flex: 2;
	    -ms-flex-positive: 2;
	        flex-grow: 2;
}

/*****************************/
/*****************************/
/********** LIMITED **********/
/*****************************/
/*****************************/

/*

*/

@media (min-width: 760px) {
	.columns.is-limited > * {
		max-width: 20rem;
	}
	.columns > .is-limited > * {
		max-width: 20rem;
		margin-right: auto;
	}
	.columns.is-limited > .large,
	.columns > .is-limited.large > * {
		max-width: var(--short-content-maxwidth);
	}
	.columns > * + .is-limited > * {
		margin-left:auto;
		margin-right: 0;
	}
}
/** desktop **/
@media (min-width: 1600px) {
	.columns.is-limited > * {
		max-width:30rem;
	}
	.wp-block-columns > .is-limited > *,
	.columns > .is-limited > * {
		max-width:30rem;
		margin-right:auto;
	}
	.wp-block-columns > * + .is-limited > *,
	.columns > * + .is-limited > * {
		margin-left:auto;
		margin-right: 0;
	}
}

/******************************/
/********** CENTERED **********/
/******************************/

.columns.centered {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.columns.centered > * {
	text-align: center;
}
.columns.centered ul,
.columns.centered ol {
	text-align: left;
}

.columns.vertical-centered {
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.columns.vertical-centered > * {
	margin-top: auto;
	margin-bottom: auto;
}

/**************************/
/********** FULL **********/
/**************************/
/* for ? */

.columns.full > * {
	width: 100%;
	height: 100%;
}

/****************************/
/********** @MEDIA **********/
/****************************/

/** mobile **/
@media (max-width: 760px) {
	.columns > * {
		-webkit-box-flex: 1;
		-webkit-flex-grow: 1;
		   -moz-box-flex: 1;
		    -ms-flex-positive: 1;
		        flex-grow: 1;
		width: 100%;
	}
	/* gutter */
	.columns.has-gutter > *:not(:last-child) {
		border-bottom: solid var(--stroke-height);
		padding-bottom: var(--gutter-gap);
		margin-bottom: 0;
	}
}
/** desktop **/
@media (min-width: 760px) {
	.columns > * {
		-webkit-box-flex: 1;
		-webkit-flex-grow: 1;
		   -moz-box-flex: 1;
		    -ms-flex-positive: 1;
		        flex-grow: 1;
		-webkit-flex-basis: 0 !important;
		    -ms-flex-preferred-size: 0 !important;
		        flex-basis: 0 !important;
		min-width: 15rem;
	}
	/* gutter */
	.columns.has-gutter > *:not(:last-child) {
		border-bottom: 0;
		border-right: solid var(--stroke-height);
		padding-bottom: 0;
		padding-right: var(--gutter-gap);
		margin-right: 0;
		margin-bottom: var(--gutter-gap);
	}
	.columns > *.has-gutter {
		border-left: solid var(--stroke-height);
		padding-left: var(--gutter-gap);
	}
}

/***************************/
/********** LIMIT **********/
/***************************/

@media (min-width: 760px) {
	.columns[data-columns='2'] > * {
		-webkit-flex-basis: 50%;
		    -ms-flex-preferred-size: 50%;
		        flex-basis: 50%;
		max-width: -webkit-calc(50% - var(--gutter-gap));
		max-width: -moz-calc(50% - var(--gutter-gap));
		max-width: calc(50% - var(--gutter-gap));
	}
}