/*
ACCORDION
ETUDES
FORMS
NEWS
PARTNERS
SINGLE
SOLUTIONS
STATS
TRIPLE
*/
/***************************************************************/
/***************************************************************/
/*********************** ACCORDION *****************************/
/***************************************************************/
/***************************************************************/
.container--faq .row {
    flex-direction: column;
}

.faq__text {
    padding: 2rem 2rem 0;
    gap: var(--gap-xs);
}

.container--faq .row--box {
    max-width: 65%;
}

.faq__item {
    margin-bottom: var(--gap-s);
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion .bold {
    width: calc(100% - 60px);
}

.accordion {
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq__item .panel {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: grid-template-rows;
    padding-top: 0;
    padding-bottom: 0;
    max-height: 0;
}

.faq__item.active .panel {
    grid-template-rows: 1fr;
    padding-top: var(--gap-s);
    padding-bottom: var(--gap-s);
    max-height: 100%;
    max-width: 85%;
}

.faq__item.active .panel {
    grid-template-rows: 1fr;
}

.faq__item .panel>* {
    overflow: hidden;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.faq__item.active .panel>* {
    opacity: 1;
}

.faq__item .panel ul {
    list-style-type: disc;
    padding-left: 18px;
}

.faq__item .panel li {
    list-style-type: disc;
}

.accordion__toggle {
    position: relative;
    transition: all 0.3s ease;
}

.faq__item .panel a {
    text-decoration: underline;
    color: var(--color-primary);
}

.accordion__toggle::before,
.accordion__toggle::after {
    content: '';
    position: absolute;
    background-color: var(--color-light);
    transition: all 0.3s ease;
}

.accordion__toggle::before {
    top: 50%;
    left: 50%;
    width: 15px;
    height: 1px;
    transform: translate(-50%, -50%);
}

.accordion__toggle::after {
    top: 50%;
    left: 50%;
    width: 1px;
    height: 15px;
    transform: translate(-50%, -50%);
}

body .btn.accordion__toggle:hover,
.faq__item.active .accordion__toggle {
    background: var(--color-light);
}

.accordion__toggle:hover::before,
.faq__item.active .accordion__toggle::before {
    background: var(--color-secondary);
    left: 50%;
}

.accordion__toggle:hover::after,
.faq__item.active .accordion__toggle::after {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}

.faq__content--custom .faq__item {
    padding: var(--radius) var(--gap-m);
}

.faq__question-text {
    display: flex;
    align-items: center;
    width: 100%;
}

.faq__question-text>span:first-of-type {
    flex-shrink: 0;
    order: 0;
}

.faq__question-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--color-secondary);
    opacity: 0.3;
    margin: 0 1rem;
    order: 1;
}

.accordion__toggle--img {
    color: var(--color-secondary);
    flex-shrink: 0;
    order: 2;
}

.accordion__toggle--img svg {
    transform: rotate(90deg);
    transition: all .3s ease;
    width: 20px;
    height: 20px;
}

.faq__item.active .accordion__toggle--img svg {
    transform: rotate(270deg);
}

.accordion__toggle--img svg path {
    fill: var(--color-secondary)
}

@media screen and (max-width: 600px) {
    .faq__question-text span {
        width: 100%;
        max-width: 100%;
    }

    body .accordion__toggle--img {
        width: initial;
    }

}

/***************************************************************/
/***************************************************************/
/************************* ETUDES ******************************/
/***************************************************************/
/***************************************************************/
.container--etudes {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--gap-xl) 0;
    color: var(--color-light);
}

.container--etudes::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--color-primary);
    opacity: 0.85;
    z-index: 0;
}

.container--etudes>* {
    position: relative;
    z-index: 1;
}

.etudes__content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-m);
    margin-left: 10%;
    width: 90%; 
    min-width: 0;
    overflow: hidden;
}

.etudes__slider {
    overflow: hidden;
    width: 100%;
}

.etudes__slider-wrapper {
    display: flex;
    flex-wrap: nowrap; 
    gap: var(--gap-m);
}

.etudes__slide {
    flex: 0 0 37%;
    min-width: 0;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    padding: calc(var(--gap-m) + var(--gap-xs));
    gap: var(--gap-s);
    min-height: 370px;
}

.etudes__slide-img {
    width: 160px;
    position: relative;
}

.etudes__slide-img::before {
    content: "";
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 46px;
    height: 84px;
    background-color: var(--color-primary);
    border-radius: 100px;
    z-index: 0;
}

.etudes__slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100px;
}

.etudes__slide-content {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-xs) * 2);
    align-items: flex-start;
}

.etudes__slide-title {
    font-family: var(--font-title);
    font-size: var(--title-m);
    font-weight: 700;
    margin: 0;
}

.etudes__slider-nav {
    display: flex;
    margin: 10px 0 0 1rem;

}

.etudes__slider-prev,
.etudes__slider-next {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.etudes__slider-prev:hover,
.etudes__slider-next:hover {
    background: var(--color-secondary);
    color: var(--color-light);
}

/* Responsive Etudes */
@media screen and (max-width: 1023px) {
    .container--etudes {
        padding: var(--gap-l) 0;
    }

    .etudes__content {
        margin-left: 5%;
    }

    .etudes__slide {
        flex: 0 0 55%;
        padding: var(--gap-s);
        min-height: 320px;
        gap: var(--gap-xs);
    }

    .etudes__slide-img {
        width: 120px;
    }

    .etudes__slide-img::before {
        width: 36px;
        height: 64px;
        bottom: -8px;
        right: -8px;
    }

    .etudes__slide-title {
        font-size: calc(var(--title-m) - 4px);
    }

    .etudes__slide-para {
        font-size: calc(var(--base) - 1px);
    }
}

@media screen and (max-width: 767px) {
    .container--etudes {
        padding: var(--gap-m) 0;
    }

    .etudes__content {
        margin-left: 0;
        padding: 0 var(--gap-s);
    }

    .etudes__slider-wrapper {
        gap: 0;
    }

    .etudes__slide {
        flex: 0 0 100%;
        min-width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: auto;
        padding: var(--gap-m);
    }

    .etudes__slide-img {
        width: 100px;
        height: 140px;
        margin-bottom: var(--gap-xs);
    }

    .etudes__slide-img::before {
        width: 28px;
        height: 50px;
        bottom: -6px;
        right: -6px;
    }

    .etudes__slide-content {
        align-items: center;
    }

    .etudes__slide-title {
        font-size: var(--title-s);
    }

    .etudes__slider-nav {
        justify-content: center;
        margin: var(--gap-s) 0 0 0;
    }

    .etudes__title,
    .etudes__subtitle {
        text-align: center;
    }
}

/***************************************************************/
/***************************************************************/
/*************************** FORMS *****************************/
/***************************************************************/
/***************************************************************/
.container--form {
    overflow: hidden;
    margin: 0 auto var(--gap-m);
    padding: var(--gap-m) 0;
}

.container--form .row {
    display: flex;
    align-items: flex-start;
    gap: var(--gap-m);
}

.form__left,
.form__right {
    width: 50%;
}

.form__images {
    display: flex;
    gap: calc(var(--gap-xs) * 2);
    margin-bottom: calc(var(--gap-xs) * 2);
}

.form__image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.form__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form__image--2 svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    stroke-width: 1;
}

.form__text {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xs);
    padding: var(--gap-m);
    border-radius: var(--radius);
}

.form__right {
    background-color: var(--color-light);
    border-radius: var(--radius);
}

.container--form .title {
    font-size: var(--title-m);
}

.gform_wrapper {
    box-shadow: 0px 4px 30px 0px #0000001A;
    border-radius: var(--radius);
    padding: calc(var(--gap-m) + var(--gap-xs));
}

body .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 20px;
    grid-column-gap: 20px;
}

body .gform_wrapper.gravity-theme .gfield--width-half {
    grid-column: span 6;
}

/* GravityForm Submit Button - Style .btn */
.gform_wrapper .gform_footer input[type="submit"],
.gform_wrapper .gform_footer button[type="submit"] {
    width: 100%;
    background-color: var(--color-secondary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z'/%3E%3Cpath d='m21.854 2.147-10.94 10.939'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(50% + 6.5em) center;
    background-size: 1.2em;
    color: var(--color-light);
    padding: var(--pad-base);
    border-radius: var(--radius-btn);
    font-family: var(--font-title);
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.gform_wrapper .gform_footer input[type="submit"]:hover,
.gform_wrapper .gform_footer button[type="submit"]:hover {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--color-light);
}

/* Coordonnées Contact */
.form__coordinates {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap-xs);
}

.form__coordinates__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75em;
}

.form__coordinates__icon {
    flex-shrink: 0;
    width: 1.2em;
    height: 1.2em;
    color: var(--color-secondary);
}

.form__coordinates__icon svg {
    width: 100%;
    height: 100%;
}

.form__coordinates__item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.form__coordinates__item a:hover {
    color: var(--color-secondary);
}

.form__coordinates hr {
    margin: var(--gap-xs) 0;
    height: 1px;
    border: none;
    background-color: rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1023px) {
    .container--form .row {
        flex-direction: column;
    }

    .form__left,
    .form__right {
        width: 100%;
    }
}

/***************************************************************/
/***************************************************************/
/************************** NEWS *******************************/
/***************************************************************/
/***************************************************************/
.container--news {
    overflow: hidden;
    margin: 0 auto;
}

.container--news .text__content {
    width: 80%;
    gap: var(--gap-s);
    display: flex;
    flex-direction: column;
}

.news__title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.news__title a {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    font-family: var(--font-title);
    font-weight: 700;
}

.news__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news__item {
    overflow: hidden;
    background-color: var(--color-light);
    border-radius: var(--radius);
}

.news__item__image {
    height: 275px;
    object-fit: cover;
}

.news__item__image img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news__item__content {
    display: flex;
    flex-direction: column;
    border-radius: 0 0 var(--radius) var(--radius);
    gap: calc(var(--gap-xs) * 2);
    padding: var(--gap-xs) var(--gap-s) calc(var(--gap-s) - var(--gap-xs));
    text-align: left;
}

.news__item__categories {
    display: flex;
    gap: var(--gap-xs);
}

.news__item__category {
    font-size: calc(var(--base) - 4px);
    border-radius: 10px;
    padding: 1px 6px;
    background-color: #efefef;
}

.news__item__title {
    font-size: var(--title-s);
}

.news__item__content a {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    font-family: var(--font-title);
    font-weight: 700;
}

/* Responsive News */
@media screen and (max-width: 1023px) {
    .container--news .text__content {
        width: 90%;
    }

    .news__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .news__item__image {
        height: 200px;
    }

    .news__title {
        flex-direction: column;
        gap: var(--gap-xs);
    }
}

@media screen and (max-width: 767px) {
    .container--news .text__content {
        width: 95%;
    }

    .news__content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news__item {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }

    .news__item__image {
        width: 40%;
        height: 220px;
        min-height: 180px;
        flex-shrink: 0;
    }

    .news__item__image img {
        border-radius: var(--radius) 0 0 var(--radius);
    }

    .news__item__content {
        width: 60%;
        justify-content: center;
        border-radius: 0 var(--radius) var(--radius) 0;
        padding: var(--gap-xs);
        gap: var(--gap-xs);
    }

    .news__item__title {
        font-size: calc(var(--title-s) - 2px);
    }

    .news__item__text {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media screen and (max-width: 480px) {
    .news__item {
        flex-direction: column;
    }

    .news__item__image {
        width: 100%;
        height: 180px;
    }

    .news__item__image img {
        border-radius: var(--radius) var(--radius) 0 0;
    }

    .news__item__content {
        width: 100%;
        border-radius: 0 0 var(--radius) var(--radius);
        padding: var(--gap-xs) var(--gap-s);
    }

    .news__item__text {
        -webkit-line-clamp: 3;
    }
}

/***************************************************************/
/***************************************************************/
/*********************** PARTNERS *****************************/
/***************************************************************/
/***************************************************************/
.container--partners {
    overflow: hidden;
    margin: 0 auto var(--gap-m);
}

.container--partners .content__text {
    text-align: center;
    padding: 2rem 2rem 0;
    gap: calc(var(--gap-xs) * 2);
    max-width: 80%;
    margin: 0 auto;
}

.partners__slider {
    overflow: hidden;
    padding: calc(var(--gap-s) + var(--gap-xs)) 0;
}

.partners__track {
    display: flex;
    width: max-content;
    animation: scroll-partners 20s linear infinite;
}

.partners__track:hover {
    animation-play-state: paused;
}

.partners__item {
    flex-shrink: 0;
    width: calc(100% / 16);
    min-width: 120px;
    padding: 0 var(--gap-s);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners__item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}


@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media screen and (max-width: 1023px) {
    .partners__item {
        min-width: 100px;
    }
}

@media screen and (max-width: 767px) {
    .partners__item {
        min-width: 80px;
        padding: 0 var(--gap-xs);
    }

    .partners__item img {
        max-height: 40px;
    }
}

/***************************************************************/
/***************************************************************/
/************************** SINGLE ******************************/
/***************************************************************/
/***************************************************************/
.row--single {
    max-width: calc(1100px + 10%);
    margin: 0 auto var(--gap-l);
    padding: 0 5%;
}

.single__content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-s);
}

.single__photo {
    height: 55vh;
    border-radius: var(--radius);
    overflow: hidden;
    max-height: 500px;
}

.single__photo img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.single__content__date {
    font-size: calc(var(--base) - 2px);
}

.single__content__text h2,
.single__content__text h3,
.single__content__text h4,
.single__content__text h5,
.single__content__text h6 {
    color: var(--color-primary);
}

.single__content__text h2 {
    font-size: var(--title-m);
}

.single__content__text h3 {
    font-size: calc(var(--title-s) - 5px);
    margin-bottom: var(--gap-xs);
}

/***************************************************************/
/***************************************************************/
/************************ SOLUTIONS ****************************/
/***************************************************************/
/***************************************************************/
.container--solutions {
    padding: var(--gap-xl) 0;
}

.container--solutions .col--2 {
    gap: var(--gap-l);
    align-items: inherit;
}

.soluce__intro,
.soluce__list {
    flex: 1 1 50%;
}

.soluce__intro {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-m) - 10px);
    box-shadow: var(--shadow);
    padding: var(--gap-m);
    border-radius: var(--radius);
    background-color: var(--color-light);
}

.soluce__photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.soluce__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(var(--gap-xs) * 2);
}

.soluce__list {
    display: flex;
    flex-direction: column;
    gap: var(--gap-s);
}

.soluce__item {
    display: flex;
    align-items: flex-start;
    gap: var(--gap-s);
    padding: var(--gap-m);
    border-radius: var(--radius);
    background-color: var(--item-bg, var(--color-primary));
    color: var(--color-light);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.soluce__item:hover {
    box-shadow: var(--shadow);
}

.soluce__item:hover::before {
    transform: translateY(-50%) rotate(-15deg) scale(1.15);
}

.soluce__item:hover .soluce__item-icon,
.soluce__item:hover .soluce__item-content {
    transform: scale(1.05);
}

.soluce__item:first-child {
    padding-top: calc(var(--gap-m) * 1.8);
    padding-bottom: calc(var(--gap-m) * 1.8);
}

.soluce__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    transition: transform 0.3s ease;
    width: 40%;
    height: 150%;
    background-image: var(--item-icon);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
}


.soluce__item-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.soluce__item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.soluce__item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    transition: transform 0.3s ease;
    z-index: 1;
}

.soluce__item-title {
    font-family: var(--font-title);
    font-size: var(--title-s);
    font-weight: 700;
    margin: 0;
}

.soluce__item-para {
    font-weight: 300;
    margin: 0;
}

.soluce__item-arrow {
    display: inline-block;
    font-size: 1.5em;
    margin-top: 5px;
    transition: transform 0.3s ease;
}

.soluce__item:hover .soluce__item-arrow {
    transform: translateX(10px);
}

@media screen and (max-width: 767px) {
    .container--stats .text__content {
        flex-direction: column;
    }
}


/***************************************************************/
/***************************************************************/
/*********************** STATS *****************************/
/***************************************************************/
/***************************************************************/
.container--stats {
    overflow: hidden;
    margin: 0 auto var(--gap-m);
}

.container--stats .text__content {
    text-align: center;
    padding: 2rem;
    gap: calc(var(--gap-s) * 2);
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats__num,
.stats__item__sub {
    font-family: var(--font-title);

}

.stats__num {
    font-size: calc(var(--title-xl) + var(--title-m));
    font-weight: 300;
}

.stats__item {
    max-width: 300px;
}

.stats__item__sub,
.stats__num--2 {
    font-size: var(--title-m);
}

.stats__trait {
    height: 13px;
    background-color: var(--color-secondary);
    border-radius: var(--radius);
    width: 60px;
    margin: calc(var(--gap-xs) * 2) auto 0;
}

/***************************************************************/
/***************************************************************/
/************************* TRIPLE ******************************/
/***************************************************************/
/***************************************************************/
.container--triple {
    padding: 2rem 0;
}

.triple__content {
    max-width: 80%;
    margin: 0 auto;
}

.col--3 {
    display: flex;
    align-items: center;
    gap: var(--gap-l);
}

.col--3>* {
    flex: 1 1 33.333%;
}

.triple__intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(var(--gap-xs) * 2);
}

.triple__photo img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    object-fit: cover;
}

.triple__list {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-m) + 10px);
}

.triple__item {
    display: flex;
    align-items: flex-start;
    gap: var(--gap-s);
    max-width: 350px;
}

.triple__item-picto {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
}

.triple__item-picto svg {
    width: 100%;
    height: 100%;
    color: var(--color-primary);
}

.bg--primary .triple__item-picto svg {
    color: var(--color-light);
}

.triple__item-content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xs);
}

.triple__item-title {
    font-family: var(--font-title);
    font-size: calc(var(--base) + 4px);
    font-weight: 700;
    margin: 0;
}

.triple__item-para {
    font-size: var(--base);
    font-weight: 300;
    margin: 0;
}

/* Responsive Triple */
@media screen and (max-width: 1023px) {
    .col--3 {
        flex-wrap: wrap;
    }

    .col--3>* {
        flex: 1 1 45%;
    }

    .triple__photo {
        order: 3;
        flex: 1 1 100%;
        margin-top: var(--gap-m);
    }
}

@media screen and (max-width: 767px) {
    .col--3 {
        flex-direction: column;
    }

    .col--3>* {
        flex: 1 1 100%;
    }

    .col--3 {
        flex-wrap: nowrap;
    }

    .triple__photo {
        order: initial;
        margin-top: 0;
    }

    .triple__content {
        max-width: 90%;
    }

    .faq__text,
    .container--faq .row--full .text__content {
        max-width: 75%;
    }
}

/* TEXTS */
.edit table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.edit table th,
.edit table td {
    border: 1px solid #ddd;
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
}

.edit table tr:first-child {
    background-color: #f5f5f5;
}

.edit table tr:first-child td {
    font-weight: 600;
}

.edit table tr:nth-child(even) {
    background-color: #fafafa;
}

.edit table strong {
    font-weight: 600;
}

.single-post .single__content img{
    width: initial;
}