:root {
    --primary-text: #424242;
    --light-text: #777777;
    --contrast-text: #b3b3b3;
    --body-color: #fcfcff;
    --body-text: #cfb7ab;
    --header-color: #003457;
    --header-text: #fffffc;
    --header-link--active: #7AC9FF;
    --header-border-color: #003457;
    --sidebar-color: #efefef;
    --primary-color: #003457;
    --primary-color--hover: #005b99;
    --secondary-color: #ffb06b;
    --secondary-color--darker: #df904b;
    --link-color: #003457;
    --divider-color: #e0e0e0;
    --white: #fafafa;
    --black: #424242;
    --black-contrast: #535353;
    --shadow-color: #999999;
    --border-radius: 10px;
    --root-font-size: 16px;
    --print-font-size: 12pt;
    --gutter: 20px;
    --gutter-reset: -20px;
    --valid-color: #009900;
    --cancel-color: #990000;
    --max-container-width: 1024px;
}

@media screen and (max-width: 479px) {
}

@media screen and (min-width: 480px) and (max-width: 767px) {
}

@media screen and (min-width: 768px) and (max-width: 991px) {
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
}

@media screen and (min-width: 1200px) {
}

/* ************************** */
/* ********** Body ********** */
/* ************************** */
html {
    color: var(--primary-text);
    font-size: var(--root-font-size);
    font-family: sans-serif;
    background-color: var(--body-color);
}

@media print {
    html {
        background: none;
    }
}

html,
body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

.only-print {
    display: none;
}

@media print {
    html {
        font-size: var(--print-font-size);
        background: none;
    }

    body {
        position: relative;
        z-index: 1;
    }

    .no-print {
        display: none;
    }

    .only-print {
        display: inherit;
    }
}

/* ****************************** */
/* ********** Elements ********** */
/* ****************************** */
h1,
h2,
h3,
h4 {
    margin-top: 1rem;
    margin-bottom: .4rem;
}

h1 {
    color: var(--primary-color);
    font-size: 1.5em;
    text-transform: uppercase;
}

h2 {
    color: var(--primary-color);
    font-size: 1.3em;
    text-transform: uppercase;
}

h3 {
    color: var(--light-text);
    font-size: 1.1em;
}

h4 {
    color: var(--light-text);
    font-size: 1em;
}

@media screen and (max-width: 479px) {
    h1 {
        color: var(--primary-color);
        font-size: 1.3em;
        text-transform: uppercase;
    }

    h2 {
        color: var(--primary-color);
        font-size: 1.2em;
        text-transform: uppercase;
    }

    h3 {
        color: var(--light-text);
        font-size: 1.1em;
    }
}

a {
    color: var(--link-color);
    cursor: pointer;
    transition: all ease .5s;
}

a:hover {
    text-decoration-color: var(--primary-text);
}

a.--external[target="_blank"]::after {
    display: inline;
    content: ' [↗]';
    color: var(--light-text);
    font-size: .8em;
}

hr {
    margin: 1.5em 0;
    width: 100%;
    height: 0;
    border: 0;
    border-bottom: 2px solid var(--divider-color);
}

strong {
    color: var(--light-text);
}

pre {
    font-size: .9em;
    white-space: normal;
}

blockquote {
    margin-left: .6em;
    padding: .2em 0 .2em .6em;
    color: var(--light-text);
    border-left: 4px solid var(--divider-color);
}

ul {
    margin: 0;
}

@media print {
    h1,
    h2,
    h3,
    caption {
        page-break-after: avoid;
    }

    a[href].print-href:after {
        content: " (" attr(href) ")";
    }

    blockquote,
    ul,
    ol {
        page-break-inside: avoid;
    }
}

/* ******************************* */
/* ********** Container ********** */
/* ******************************* */
.container {
    display: flex;
    justify-content: stretch;
    margin: calc(3.8rem + 3px + var(--gutter)) auto var(--gutter) auto;
    width: 100%;
    max-width: var(--max-container-width);
}

.container.meta {
    margin-top: var(--gutter);
    max-width: 850px;
}

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

@media print {
    .container {
        margin: 0;
        width: 100%;
        max-width: 210mm;
        box-shadow: none;
    }
}

/* ***************************** */
/* ********** Sidebar ********** */
/* ***************************** */
.sidebar {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 290px;
    padding: var(--gutter);
    margin-right: 1em;
}

.sidebar .contact,
.section .contact {
    margin: 1em 0;
    padding: 0;
    list-style-type: none;
    list-style-position: outside;
}

.sidebar .contact li,
.section .contact li {
    display: flex;
    margin: .2em 0;
    align-items: center;
}

.sidebar .contact a,
.section .contact a {
    color: var(--primary-text);
    text-decoration: none;
    transition: all ease .5s;
}

.sidebar .contact a:hover,
.section .contact a:hover {
    text-decoration: underline;
    text-decoration-color: var(--link-color);
}

.sidebar .contact svg,
.section .contact svg {
    height: 1em;
    margin-right: .4em;
    fill: var(--link-color);
}

@media screen and (min-width: 480px) and (max-width: 767px) {
    .sidebar .contact {
        margin-top: 0;
    }
}

.identity .name {
    font-size: 1.3em;
}

.identity .position {
    font-size: 1.4em;
    color: var(--primary-color);
    text-transform: uppercase;
}

.identity img {
    margin: var(--gutter) auto 0 auto;
    width: 100%;
    border-radius: 50%;
    border: 6px solid var(--white);
    box-shadow: 0 0 1px var(--shadow-color);
}

.identity {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
}

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

    .sidebar {
        align-items: center;
        width: 100%;
    }

    .identity img {
        width: 160px;
    }

    .tag-box {
        flex: 0;
        margin-top: 0;
    }
}

@media screen and (max-width: 767px) {
    .section--generic,
    .section--skills,
    .section--jobs,
    .section--formations,
    .section--leisures {
        margin-bottom: var(--gutter);
        margin-right: var(--gutter-reset);
        margin-left: var(--gutter-reset);
        padding: 0 var(--gutter) var(--gutter) var(--gutter);
    }

    div.content {
        background: none;
        padding-bottom: 0;
    }
}

@media screen and (max-width: 767px) {
    .sidebar {
        padding: 0 1em;
        margin-bottom: 4px;
        align-items: center;
    }

    .identity {
        width: 100%;
        grid-template-columns: 120px 1fr;
    }

    .identity .name {
        grid-row: 1;
        grid-column: 2;
        align-self: end;
        font-size: 1.3em;
    }

    .identity .position {
        grid-row: 2;
        grid-column: 2;
        align-self: start;
        font-size: 1.3em;
    }

    .identity .avatar {
        grid-row: 1 / 3;
        grid-column: 1;
    }

    .identity img {
        margin: 0;
        width: auto;
        height: 100px;
        border-width: 2px;
    }
}

.qr-codes {
    display: flex;
    flex-direction: column;
    margin: 1em 2em;
    width: calc(100% - 4em);
}

@media screen and (min-width: 480px) and (max-width: 767px) {
    .qr-codes {
        display: none;
    }
}

@media screen and (max-width: 479px) {
    .qr-codes {
        display: none;
    }
}

.qr-codes a {
    margin-bottom: 2em;
    color: var(--light-text);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all ease .5s;
}

.qr-codes a:hover {
    text-decoration: underline;
    text-decoration-color: var(--link-color);
}

.qr-codes span {
    display: block;
    margin-top: -.6em;
}

.qr-codes img {
    width: 100%;
}

@media screen and (max-width: 479px) {
    .sidebar {
        width: 100%;
    }
}

@media print {
    .sidebar {
        width: 60mm;
        font-size: .8em;
    }
}

.sidebar.--anonyme .section__title {
    margin-top: 1em;
}

.sidebar.--anonyme .commercial__logo {
    margin: .6em auto;
    max-width: 200px;
}

.sidebar.--anonyme .contact {
    margin-top: 0;
}

.sidebar.--anonyme .contact svg {
    height: 1em;
    margin-right: .4em;
    fill: var(--primary-color);
}

.sidebar.--anonyme .commercial__name {
    color: var(--primary-color);
    font-weight: bold;
}

/* ***************************** */
/* ********** Content ********** */
/* ***************************** */
.content {
    flex-grow: 1;
    padding: 0 var(--gutter) var(--gutter) var(--gutter);
}

.content.content--blog img {
    max-width: 100%;
}

@media print {
    .content {
        background: none;
    }
}

/* ***************************** */
/* ********** Tag box ********** */
/* ***************************** */
.tag-box {
    display: block;
    margin: 1em auto;
}

.tag-box__tag {
    display: inline-block;
    margin: .2em 0;
    padding: .1em .8em;
    color: var(--white);
    line-height: 1.8em;
    white-space: nowrap;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    box-shadow: 1px 1px 2px var(--shadow-color);
}

@media screen and (min-width: 480px) and (max-width: 767px) {
    .tag-box {
        flex: 0;
        margin-top: 0;
    }
}

@media screen and (max-width: 767px) {
    .sidebar .tag-box {
        display: none;
    }

    .tag-box {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .tag-box__tag {
        margin: .4em .2em 0 .2em;
    }

    .sidebar .contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .sidebar .contact li:not(:last-child) {
        margin-right: 1em;
    }
}

@media print {
    .tag-box__tag {
        color: var(--primary-text);
        background: transparent;
        box-shadow: none;
        border: 2px solid var(--primary-text);
    }
}

/* **************************** */
/* ********** Header ********** */
/* **************************** */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--header-color);
    border-bottom: 3px solid var(--header-border-color);
    box-shadow: 0 2px 6px var(--shadow-color);
    z-index: 10;
}

.header__content {
    display: flex;
    justify-content: stretch;
    align-items: center;
    margin: 0 auto;
    padding: .8em 1.6em;
    max-width: var(--max-container-width);
    color: var(--header-text);
}

.header__title {
    color: var(--header-link--active);
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-size: 1.8em;
    font-weight: bold;
    text-decoration: none;
}

@media screen and (max-width: 479px) {
    .header__title {
    }
}

@media screen and (min-width: 480px) and (max-width: 991px) {
    .header__title {
    }
}

.header__subtitle {
    padding-left: .8em;
}

@media screen and (max-width: 479px) {
    .header__subtitle {
        display: none;
    }
}

.header__spacer {
    flex-grow: 1;
}

.header__ico {
    margin-left: 1em;
    cursor: pointer;
}

.header__ico svg {
    height: 2em;
    fill: var(--header-text);
    transition: all ease .5s;
}

.header__ico:hover svg {
    fill: var(--header-link--active);
}

.header__ico--spacer {
    margin-left: 1em;
    width: 2em;
}

.header__navigation {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

@media screen and (max-width: 991px) {
    .header__navigation {
        display: none;
    }
}

.header__navigation li a {
    margin: 0 .8em;
    padding: .2em .2em;
    height: 2em;
    color: var(--header-text);
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    transition: all ease .5s;
}

.header__navigation li a:hover {
    color: var(--header-link--active);
}

.header__navigation li a.--active {
    color: var(--header-link--active);
    border-bottom: 3px solid var(--header-link--active);
}

.header__navigation li a.--active:hover {
}

@media print {
    .header {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .print-button {
        display: none;
    }
}

/* ***************************** */
/* ********** Section ********** */
/* ***************************** */
.section {
    margin-bottom: var(--gutter);
}

.section__intro {
    margin: var(--gutter) 0 var(--gutter) 0;
    padding-left: 1em;
    color: #333333;
    font-size: 1em;
    font-style: italic;
    border-left: 3px solid var(--primary-color);
}

.section__title {
    margin: 0 0 1em 0;
    padding: .2em .4em;
    color: var(--white);
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    background: var(--primary-color--hover);
    border-radius: var(--border-radius);
}

.section__title:first-child {
    margin-top: var(--gutter);
}

.section__grid {
    display: flex;
    flex-direction: row;
    margin-bottom: 1em;
}

.section__grid:last-child {
    margin-bottom: 0;
}

.section__grid.--reverse {
    flex-direction: row-reverse;
}

.section__grid h2 {
    margin-top: 0;
}

.section__picture {
    margin-right: var(--gutter);
}

.section__grid.--reverse .section__picture {
    margin-right: 0;
    margin-left: var(--gutter);
}

.section__picture img {
    margin: 0;
    height: 200px;
    border: 6px solid var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 0 1px var(--shadow-color);
}

@media screen and (max-width: 767px) {
    .section__title {
        margin-bottom: 0;
    }

    .section__grid,
    .section__grid.--reverse {
        flex-direction: column;
    }

    .section__grid .section__picture,
    .section__grid.--reverse .section__picture {
        flex-shrink: 0;
        width: 100%;
        margin: 1em 0;
    }

    .section__picture img {
        display: block;
        margin: 0 auto;
        width: 100%;
        height: auto;
    }
}

/* ****************************** */
/* ********** Job card ********** */
/* ****************************** */
.job__title {
    display: grid;
    grid-template-columns: 1fr 5em;
    grid-auto-rows: auto;
    margin-top: 1.4em;
    width: 100%;
}

.job__title_infos {
    display: flex;
    gap: var(--gutter);
}

.job__title_infos > * {
    display: flex;
    align-items: center;
    gap: .3em;
}

.job__title_infos svg {
    width: auto;
    height: 1.2em;
    fill: var(--light-text);
}

.job__title img {
    border: 6px solid var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 0 1px var(--shadow-color);
    background: var(--white);
}

@media print {
    .job__title img {
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
}

@media screen and (max-width: 479px) {
    .job__title_infos {
        flex-direction: column;
        gap: .3em;
    }

    .job__title_infos svg {
        width: 1.2em;
    }
}

.job__title > *:nth-child(1) {
    grid-column: 2;
    grid-row: 1 / 3;
    text-align: right;
}

.job__title > *:nth-child(1) img {
    max-width: 5em;
    max-height: 4em;
}

.job__title > *:nth-child(2) {
    grid-column: 1;
    grid-row: 1;
}

.job__title > *:nth-child(2) h2 {
    margin-top: 0;
}

.job__title > *:nth-child(2) h3 {
    margin-top: -.4rem;
    margin-bottom: .4rem;
}

.job__title > *:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

@media screen and (max-width: 479px) {
    .job__title > *:nth-child(1) {
        grid-row: 2;
    }

    .job__title > *:nth-child(2) {
        grid-column: 1 / 3;
    }
}

.job__title__duration {
    font-size: .7em;
    color: var(--light-text);
    white-space: nowrap;
}

.job__logo-box {
    display: flex;
    flex-wrap: wrap;
    gap: .8em;
    margin: 1em 0 2em 0;
    width: 100%;
}

.job__logo-box__logo {
    height: 2em;
    filter: grayscale(100%);
    opacity: .5;
    cursor: help;
    transition: all ease .5s;
}

.job__logo-box__logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* *************************** */
/* ********** Texts ********** */
/* *************************** */
.text-divider:before {
    display: inline;
    padding: 0 .2em;
    content: '|';
    color: var(--divider-color);
}

.section__intro strong,
.section--skills strong,
.job__missions-list strong {
    color: var(--primary-color);
}

/* ********************************* */
/* ********** Burger Menu ********** */
/* ********************************* */
.burger-menu__ico {
    margin-right: 1em;
    margin-left: 0;
}

@media screen and (min-width: 992px) {
    .burger-menu__ico {
        display: none;
    }
}

.burger-menu {
    position: fixed;
    top: calc(3.8rem + 3px);
    right: auto;
    left: 8px;
    max-height: calc(100vh - 3.8rem - 3px);
    color: var(--contrast-text);
    font-size: 0;
    background: var(--sidebar-color);
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 2px 6px var(--shadow-color);
    opacity: 0;
    overflow-y: auto;
    z-index: 9;
    transition: all .4s ease;
}

input#burger-menu__checkbox:checked ~ .burger-menu {
    opacity: 1;
    font-size: 1rem;
}

@media screen and (max-width: 991px) {
    .burger-menu {
        left: 0;
        width: 100%;
    }
}

@media print {
    .burger-menu {
        display: none;
    }
}

.active-checkbox {
    display: none;
}

.burger-menu__content {
    padding: 1em;
}

.burger-menu__content label {
    cursor: pointer;
    user-select: none;
}

.burger-menu__content ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.burger-menu__content li {
    line-height: 2em;
}

.burger-menu__content li a {
    margin-left: 3px;
    padding: .2em .2em;
    height: 2em;
    color: var(--contrast-text);
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    transition: all ease .5s;
}

.burger-menu__content li a:hover {
    margin-left: 0;
    border-left: 3px solid var(--contrast-text);
}

.burger-menu__content li a.--active {
    margin-left: 0;
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
}

/* ************************************ */
/* ********** Print specific ********** */
/* ************************************ */
@media print {
    #id__a-propos__section-profil {
        margin-top: 150px;
    }

    #id__a-propos__section-profil .section__picture {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
    }
}

/* ********************************** */
/* ********** Contact Form ********** */
/* ********************************** */
ul.contact-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.contact-info li {
    display: flex;
    margin: 0 1em;
    align-items: center;
}

@media screen and (max-width: 767px) {
    ul.contact-info {
        flex-direction: column;
        margin-top: 1em;
    }

    .contact-info li {
        margin: .4em 0;
    }
}

.contact-info a {
    color: var(--primary-text);
    text-decoration: none;
    transition: all ease .5s;
}

.contact-info a:hover {
    text-decoration: underline;
    text-decoration-color: var(--link-color);
}

.contact-info svg {
    height: 1em;
    margin-right: .4em;
    fill: var(--link-color);
}

.contactForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: calc(1.5 * var(--gutter)) auto var(--gutter) auto;
}

.contactForm__field {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 1em;
    width: 100%;
    max-width: 400px;
}

.contactForm__field:last-child {
    margin-bottom: 0;
}

.contactForm label {
    color: var(--primary-text);
    font-weight: bold;
}

.contactForm input,
.contactForm button,
.contactForm textarea {
    width: 100%;
    padding: .2em .4em;
    font-size: 1rem;
    border: 1px solid var(--shadow-color);
    border-radius: var(--border-radius);
}

.contactForm textarea {
    height: 200px;
}

.contactForm button {
    padding: .4em;
    color: var(--white);
    font-size: 1rem;
    font-weight: bold;
    background: var(--primary-color--hover);
    border: none;
    box-shadow: 0 2px 6px var(--shadow-color);
    cursor: pointer;
}

/* ************************** */
/* ********** Blog ********** */
/* ************************** */
.blog {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    margin: calc(3.8rem + 3px + var(--gutter)) auto var(--gutter) auto;
    width: 100%;
    max-width: var(--max-container-width);
}

.blog__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 10px;
    width: calc(50% - 20px);
    color: var(--primary-text);
    text-decoration: none;
    transition: all .2s ease;
}

@media screen and (max-width: 679px) {
    .blog {
        max-width: 440px;
    }

    .blog__item {
        width: calc(100% - 20px);
    }
}

@media screen and (min-width: 680px) and (max-width: 1019px) {
    .blog {
        max-width: 880px;
    }

    .blog__item {
        width: calc(50% - 20px);
    }
}

@media screen and (min-width: 1020px) and (max-width: 1359px) {
    .blog {
        max-width: 1320px;
    }

    .blog__item {
        width: calc(33% - 20px);
    }
}

@media screen and (min-width: 1360px) {
    .blog {
        max-width: 1760px;
    }

    .blog__item {
        width: calc(25% - 20px);
    }
}

.blog__item__title {
    flex-grow: 0;
    padding: .6em .4em .2em .4em;
    color: var(--light-text);
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

.blog__item__img {
    flex-grow: 0;
    width: 100%;
    border: 6px solid var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 0 1px var(--shadow-color);
}

.blog__item__description {
    flex-grow: 1;
    margin: 0;
    padding: 0 1em 1em 1em;
}

.blog__item__date {
    flex-grow: 0;
    padding: 1em 1em 0 1em;
    color: var(--light-text);
    text-align: left;
    font-size: .8em;
}

.blog__item__link {
    margin: 0 auto 2em auto;
    padding: .4em;
    width: 80%;
    color: var(--white);
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--primary-color--hover);
    border-radius: var(--border-radius);
    transition: all ease .5s;
}

.blog__item__link:hover {
    background: var(--primary-color);
}

.content--blog img {
    margin: 1em 0;
    border: 6px solid var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 0 1px var(--shadow-color);
}

/* ************************** */
/* ********** Home ********** */
/* ************************** */
.home__title {
    color: var(--primary-color);
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-size: 2rem;
    font-weight: bold;
}

.home__intro {
    font-style: italic;
}

.hero-menu {
    display: flex;
    justify-content: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 1rem 0;
    padding: 0;
    width: 100%;
    list-style-type: none;
}

.hero-menu li {
    flex-grow: 1;
    margin: 1rem;
}

.hero-menu li:first-child {
    margin-left: 0;
}

.hero-menu li:last-child {
    margin-right: 0;
}

.hero-menu a {
    display: inline-block;
    padding: 1em;
    width: 100%;
    color: var(--white);
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    background: var(--primary-color--hover);
    border-radius: var(--border-radius);
    transition: all ease .5s;
}

.hero-menu a:hover {
    background: var(--primary-color);
}

@media screen and (max-width: 479px) {
    .hero-menu {
        flex-direction: column;
    }

    .hero-menu li {
        margin: .4rem 0;
    }
}

@media screen and (min-width: 480px) and (max-width: 767px) {
    .hero-menu li {
        margin: .4rem;
    }
}

.announcement {
    margin: 2rem 0;
    padding: .4em 1em;
    color: var(--primary-color);
    font-size: 1.4em;
    border: 2px dotted var(--primary-color);
}

.page-list {
    margin: 1em 0;
    padding: 0 0 0 1.3em;
}

.page-list li {
    padding: .2em 0;
    font-size: 1.4em;
}

@media screen and (max-width: 479px) {
    .page-list li {
        font-size: 1.2em;
    }
}

.page-list li p {
    margin: 0;
    font-size: .8em;
}

.content-article h1 {
    margin: 1em 0;
    padding: .2em .4em;
    color: var(--white);
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    background: var(--primary-color--hover);
    border-radius: var(--border-radius);
}

.content-article h1:first-child {
    margin-top: var(--gutter);
}

.content-article h2 {
    color: var(--primary-color);
}

.content-article h3 {
    color: var(--secondary-color--darker);
}

.content-article p,
.content-article li {
    line-height: 1.5em;
}

.content-article ul {
    margin: 1em 0;
    padding: 0 0 0 1.3em;
}

.content-article strong {
    color: var(--primary-color);
}

.content-article blockquote p {
    margin: .4em 0;
    font-style: italic;
}

.content-article code {
    padding: 2px .4em;
    color: var(--white);
    background: var(--primary-color--hover);
}

strong.pros {
    color: var(--valid-color);
    font-weight: bold;
}

strong.cons {
    color: var(--cancel-color);
    font-weight: bold;
}

ul.contact-socials {
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style-type: none;
    margin: var(--gutter) auto;
    padding: 0;
}

.contact-socials li {
    margin-right: 1em;
}

.contact-socials li:last-child {
    margin-right: 0;
}

.contact-socials img {
    height: 3rem;
}
