/* Céramiques & Sièges */

.flex-column-space-btw {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.is-full-width {
	width: 100%;
}

.is-full-width img {
	width: 100%;
	object-fit: cover;
}

.wp-block-details {
	width: 100%;
    border: 2px solid black;
    padding: 0.5em 1em;
    border-radius: 50px;
}

.wp-block-details summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.wp-block-details summary:hover {
	font-weight: bold;
}

.wp-block-details summary .details-arrow {
	font-size: 1.5em;
}

.wp-block-details summary .details-arrow.rotate {
	transform: rotate(180deg);
	transition-property: transform;
	transition-duration: 0.5s;
}

.wp-block-button__link:hover {
	background-color: black !important;
	color: white !important;
}

/* a propos */ 

.is-contrained-height {
	height: 529px;
}

.is-contrained-height figure, .is-contrained-height img{
	height: 100%;
	object-fit: cover;
}

.img-left-aligned {
	display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.rotated {
	transform: rotate(-90deg);
}

.items-aligned-start {
	align-items: flex-start;
}

.block-fixed-size {
	width: 80%;
}

.wp-block-image {
	position: relative;
}

.wp-element-caption {
	position: absolute;
    bottom: 0;
    left: 2rem;
}

/* MEDIA QUERIES
--------------------------------------------- */

@media only screen and (max-width: 420px) {
	
	.block-fixed-size {
    	width: 100%;
	}	
	
    .doggo-form.is-layout-grid {
        flex-direction: column-reverse;
	}
}

