:root {
    --color-bg-pc: #fafafa; /* Fond très légèrement grisé de la maquette */
    --color-text-title: #1a1a1a;
    --color-text-body: #666666;
    --font-main: 'Arial', sans-serif;
}

.block-prestation-content {
    width: 100%;
    padding: 80px 531px 80px 80px;
	background: #FAFAF8;
}

.pc__container {
    max-width: 669px; /* Limite la largeur du texte pour la lisibilité sur Desktop */
    margin: 0 auto;
	display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;

gap: 30px;
}


/* --- Styles du contenu WYSIWYG --- */

.pc__wysiwyg {
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 19px;
color: #5A5A5A;
}
.pc__wysiwyg h2 {
width: 669px;
font-family: 'Ubuntu';
font-style: normal;
font-weight: 700;
font-size: 32px;
line-height: 37px;
color: #111111;
margin: 30px 0;
}

.pc__wysiwyg h3 {
    font-size: 28px;
	font-family: 'Ubuntu';
    font-weight: 700;
    color: #111111;
    margin: 25px 0;
    line-height: 33px;
}

/* Enlève la marge haute du tout premier titre */
.pc__wysiwyg > h2:first-child,
.pc__wysiwyg > h3:first-child {
    margin-top: 0;
}

.pc__wysiwyg p {
    margin: 0 0 30px 0;
}

.pc__wysiwyg p:last-child {
    margin-bottom: 0;
}

/* --- Bloc Auteur / Signature --- */
.pc__author {
display: flex;
flex-direction: row;
justify-content: center;
align-items: flex-start;
padding: 0px;
gap: 16px;
}

.pc__author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.pc__author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc__author-info {
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 0px;
}

.pc__author-name {

font-family: 'Roboto';
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 150%;
color: #000000;
}

.pc__author-sub {
  
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 150%;
/* identical to box height, or 21px */
text-align: center;
color: #000000;
}
@media (max-width: 50em) {
	.block-prestation-content {
padding: 60px 24px;

}
.pc__wysiwyg h2{
	width: 100%;
font-size: 24px;
line-height: 28px;
}

}