/*
  Theme Name: Lies Of P France
  Theme URI : none
  Author : Imérod
  Author URI : https://www.imerod.fr
  Description
  Minifier : http://cssminifier.com/
  Version : 1.0.0
  License :
  License URI :
  Tags
*/
.hide {
    display: none !important;
    visibility: hidden;
}

::selection {
    background: rgba(158, 19, 19, 0.18);
    color: #111;
}
::-moz-selection {
    background: rgba(158, 19, 19, 0.18);
    color: #111;
}
*::before, *::after {
     box-sizing: border-box;
}
html, body{
    overflow-x: hidden;
}


/** CONF > DISABLE SOME RESET
--------------------------------------------------------------------------- */
label{
    cursor: pointer;
}
input[type="checkbox"] {
    all: unset;
    display: inline-block;
    width: 16px;
    height: 16px;
    appearance: checkbox;
    -webkit-appearance: checkbox;
    margin: -4px 0.5rem 0 0;
    vertical-align: middle;
}

/** CONF > FONT-FACE
--------------------------------------------------------------------------- */
/* https://transfonter.org/ */
@font-face {
    font-family: 'Brilon_1.2';
    src: url('assets/fonts/brilon/Brilon_12-Regular.woff2') format('woff2'),
    url('assets/fonts/brilon/Brilon_12-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lora';
    src: url('assets/fonts/lora/Lora-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/** CONF > APP WIDTH
--------------------------------------------------------------------------- */
/** OBJECTIVE : 1200PX */
.container,
.site-header .container::before,
.site-header .middle-header .logo-wrapper,
.footer-inner,
.entry-title {
    max-width: 75rem;
}

/** BODY
--------------------------------------------------------------------------- */
body {
    font-family: 'Lora', sans-serif !important;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    position: relative;
    color: #4E575C;
    background: #000000 url('assets/images/bg-body-carlo.png') no-repeat fixed center -180px;
    background-size: cover;
}
body::after{
    content: "";
    opacity: 0.8;
    background: url('assets/images/bg-body.jpg') center top repeat;

}

strong, b {
    font-weight: 700;
}

/** CONF > BACKGROUND COLORS LAYOUT
--------------------------------------------------------------------------- */
.site-header,
.site-header .container,
.main,
.site-footer {
    position: relative;
}
.site-header::before,
.site-header .container::before,
.site-header .container::after,
.main::before,
.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.site-header::before {
    /*background: #fff;*/
    background: rgba(0, 0, 0, 0.4);
}
.main::before {
    /*background: #555;*/
    background: rgba(0, 0, 0, 0.6);
}
.site-footer::before {
    /*background: #666;*/
    background: rgba(0, 0, 0, 0.8);
}
.site-footer .container {
    background: url('assets/images/bg-footer.jpg') center bottom no-repeat;
}

/** GENERAL
--------------------------------------------------------------------------- */
.container {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    box-shadow: -10px 0 20px -5px rgba(0, 0, 0, 0.6), 10px 0 20px -5px rgba(0, 0, 0, 0.6);
}

/** HEADER
--------------------------------------------------------------------------- */
.site-header{
    /*overflow: visible;
    background: transparent;*/
}
.site-header .container{
    box-shadow: none;
}
.site-header .container::before {
    /*background: url('assets/images/bg-header-trans.png') right bottom no-repeat;*/
    /*background-size: contain;*/
}

.site-header .container::after {
    /*background: rgba(0, 0, 0, 0.4);*/
}

/** HEADER > TOP NAV
--------------------------------------------------------------------------- */
.top-nav {
    display: block;
    height: 60px;
}

/** HEADER > MIDDLE HEADER
--------------------------------------------------------------------------- */
.site-header .middle-header{
    justify-content: center;
    height: 300px;
}
.site-header .middle-header,
.site-header .middle-header .logo-wrapper,
.site-header .middle-header .search-wrapper {
    display: flex;
}

/** HEADER > MIDDLE HEADER > LOGO
--------------------------------------------------------------------------- */
.site-header .middle-header .logo-wrapper {
    padding: 0 2rem;
    margin: 0 auto;
    display: flex;
    justify-content: right;
    width: 100%;
}
.site-header .middle-header .logo-wrapper .logo-brand img {
    display: block;
    width: 400px;
    height: auto;
}

/** HEADER > MIDDLE HEADER > SEARCH TOOL
--------------------------------------------------------------------------- */

/** HEADER > GLOBAL MENU
--------------------------------------------------------------------------- */
.header-nav {
    display: block;
    width: 100%;
    height: 70px;
    margin: 0 auto;
    border: none;
    outline: none;
    background: #000000 url('assets/images/bg-menu.jpg') repeat;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
}
.header-nav .wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 10px;
}

/** HEADER > GLOBAL MENU > FIXED WHEN SCROLLING
--------------------------------------------------------------------------- */

/** HEADER > GLOBAL MENU > SEPARATOR
--------------------------------------------------------------------------- */
.header-nav .menu ul > li + li::before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    background: url(assets/images/menu-separator.png) no-repeat center center;
    vertical-align: middle;
}

.header-nav .menu .list-item ul > li + li::before {
    display: none;
}

/** MAIN
--------------------------------------------------------------------------- */
.main {
    display: block;
    width: 100%;
    min-height: 100vh;
}

/** MAIN > APP
--------------------------------------------------------------------------- */
#app {
    line-height: 1.6;
    color: #4E575C;
    background-size: cover;
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('assets/images/bg-content.jpg') center repeat;
    min-height: 1000px;
    border-top: 2px solid #9B2D2E;
    position: relative;
}

#app .app-shadow {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 10px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 70%;
    filter: blur(15px);
    z-index: 10;
    pointer-events: none;
}

/** FOOTER
--------------------------------------------------------------------------- */
.site-footer {
    position: relative;
    color: #ccc;
    width: 100%;
    overflow: hidden;
    text-align: center;
    font-size: 1rem;
}
.footer-inner {
    display: inline-block;
    padding: 2rem 3rem;
}
.footer-inner strong {
    color: #fff;
}
.footer-inner p {
    margin-top: 10px;
}
.site-footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}
.site-footer a:hover {
    color: #b19355;
}

/** 404 PAGE
--------------------------------------------------------------------------- */
.error404 .main, .error404 #app {
    min-height: 0;
}
.error404 #app{
    background: none;
}
.glitch {
    position: relative;
    width: 100%;
    min-height: 70vh;
    background: #000000 url("assets/images/404.jpg") no-repeat center 20%;
    background-size: cover;
    overflow: hidden;
}
.glitch:before, .glitch:after{
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    opacity: .45;
    mix-blend-mode: hard-light;
}
.glitch:before {
    animation: glitch-soft 10s linear infinite;
}
.glitch:after {
    animation: glitch-hard 3s linear infinite;
}
@keyframes glitch-hard {
    0%  { transform: translate(0); filter: hue-rotate(0deg); }
    10% { transform: translate(5px, 0); }
    20% { transform: translate(-5px, 0); }
    30% { transform: translate(10px, 0); }
    40% { transform: translate(-5px, 0); }
    50% { transform: translate(-15px, 0); }
    60% { transform: translate(-20px, 0); }
    80% { transform: translate(0); }
    100%{ transform: translate(0); filter: hue-rotate(360deg); }
}

@keyframes glitch-soft {
    0%  { transform: translate(0); filter: hue-rotate(0deg); }
    15% { transform: translate(6px, 0); }
    30% { transform: translate(-6px, 0); }
    45% { transform: translate(4px, 0); }
    100%{ transform: translate(0); filter: hue-rotate(0deg); }
}


/** HOMEPAGE
--------------------------------------------------------------------------- */
.pinned-articles {
    background-color: rgba(238, 238, 238, 0.8);
    margin: 0 -2rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05),
    0 5px 15px rgba(0, 0, 0, 0.07);
}
.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 2rem auto;
    font-size: 0.6rem;
}
.pagination a,
.pagination span {
    padding: 0.45em 0.9em;
    font-size: 0.8rem;
    background-color: #f5f5f5;
    border-radius: 3px;
    text-decoration: none;
    color: #4E575C;
    transition: all 0.2s ease;
}
.pagination a:hover {
    border-color: #9B2D2E;
    color: #9B2D2E;
}
.pagination .current {
    background-color: #9B2D2E;
    color: white;
    border-color: #9B2D2E;
    pointer-events: none;
}

/** POST FEED: RESULTS FOR HOMEPAGE, SEARCH, CATEGORY, ARCHIVES, ... 
--- POST CARD LAYOUT
--------------------------------------------------------------------------- */
.post-feed {
    padding: 2rem;
}
.articles-grid {
    display: grid;
    gap: 1rem;
    align-items: stretch;
}
.articles-grid.columns-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.articles-grid.columns-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.articles-grid.columns-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
}
.article-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.article-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #eee;
    overflow: hidden;
    position: relative;
}
.thumb-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}
.article-thumb:hover .thumb-inner {
    transform: scale(1.10);
}
.article-thumb:hover .thumb-inner img{
    filter: grayscale(0%);
}
.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.article-meta {
    font-size: 0.85rem;
    color: #888;
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.article-category {
    background: #b19355;
    color: #f9f9f9;
    padding: 5px 1rem;
    border-radius: 3px;
    margin-top: 1rem;
}
.article-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #4E575C;
    margin: 10px 0;
}
.article-title a {
    color: inherit;
    text-decoration: none;
}
.article-title a:hover {
    color: #9B2D2E;
}
h3.section-title {
    font-size: 1.4rem;
    color: #9B2D2E;
    margin: 1rem 0;
}
h2 + h3.section-title{
    margin-top: -1rem ;
}

/** POST FEED: RESULTS FOR WALKTHROUGH HOMEPAGE
--------------------------------------------------------------------------- */
/** POST FEED: RESULTS FOR WALKTHROUGH HOMEPAGE
--------------------------------------------------------------------------- */
.pnj-homepage .article-thumb {
    width: 100%;
    aspect-ratio: 1;
    background: #eee;
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}
.pnj-homepage .article-thumb img {
    filter: grayscale(100%);
    transition: filter 0.7s ease;
}
.pnj-homepage .article-title{
    font-size: 0.9rem;
    text-align: center;
}

/** MAIN LAYOUT
--------------------------------------------------------------------------- */
div.site-content {
    width: 100%;
    margin: 0 auto;
}
#primary {
    flex: 1;
    min-width: 0;
    padding: 0 2rem 0 2rem;
}
#secondary {
    width: 370px;
    flex-shrink: 0;
    background-color: #f5f5f5;
    padding: 1rem 2rem 2rem 2rem;
}

/** SINGLE > CONTENT
--------------------------------------------------------------------------- */
.single-article {
    display: flex;
    flex-direction: column;
}

/** SINGLE > HEADER
--------------------------------------------------------------------------- */
.entry-header {
    position: relative;
    overflow: hidden;
    height: clamp(200px, 35vw, 450px)
}

.header-parallax {
    position: relative;
    height: 100%;
    width: 100%;
}

.featured-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    background: #000;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: translateY(0);
    transition: transform 0.1s ease-out;
    will-change: transform;
    display: block;
}

.entry-title {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 100%;
    padding: 0 1rem;
    text-align: center;
}

.entry-title h1 {
    font-weight: bold;
    font-family: 'Brilon_1.2', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    margin: 0 auto;
    font-size: clamp(1.5rem, 5vw, 2.4rem);
    padding: 1rem 2rem;
    color: white;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
}

/** SINGLE > BREADCRUMB
--------------------------------------------------------------------------- */
.breadcrumb {
  padding: 1rem 2rem;
  background-color: #f5f5f5;
  color: #4E575C;
  border-top: 3px solid #9B2D2E;
  position: relative;
  font-size: 0.9rem;
}
.breadcrumb .wrapper::before {
  content: "";
  position: absolute;
  top: -17px;
  left: -25px;
  width: 40px;
  height: 45px;
  background-image: url('assets/images/lying-corner.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 4;
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.breadcrumb li {
  display: inline-flex;
  align-items: center;
}
.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: #4E575C;
}
.breadcrumb a {
  color: #4E575C;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: #9B2D2E;
  text-decoration: underline;
}
.breadcrumb .active {
  color: #b19355;
  font-weight: 500;
}

/** SINGLE > CONTENT
--------------------------------------------------------------------------- */
.article-content {
    display: flex;
    flex-wrap: wrap;
    color: #4E575C;
}
.article-content .entry-content h3{
    font-size: 1.2rem;
    color: #9B2D2E;
    margin: 1rem 0;
}
.article-content .entry-content h2 + h3{
    margin-top: -1rem ;
}
.article-content p.last-updated{
    text-align: left !important;
    font-style: italic;
    margin-top: 2rem;
    font-size: 0.8rem !important;
}
.article-content .entry-content {
    margin: 0 auto;
}
.article-content .entry-content a {
    position: relative;
    color: #9B2D2E;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold;
}
.article-content .entry-content a:hover {
    color: #b74345;
    text-decoration: underline;
}
.article-content .entry-content p em{
    color: #9B2D2E;
    font-style: italic;
}

/** SINGLE > CONTENT > WORDPRESS DEFAULT
--------------------------------------------------------------------------- */
.article-content .entry-content p img.alignleft{
    float: left;
    max-width: 40%;
    height: auto;
    margin: 0.25em 1em 0.5em 0;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/** SINGLE > CONTENT > SEPARATION
--------------------------------------------------------------------------- */
.article-content img.arrow-down-gold{
    text-align: center;
    width: 100px;
    display: block;
    margin: 0 auto;
}

/** SINGLE > CONTENT > SPECIFICS PAGINATIONS > WALKTHROUGH
--------------------------------------------------------------------------- */
.walkthrough-pagination {
    margin: 3rem 0 0;
    padding: 1rem 2rem;
    color: #fff;
    font-size: 1rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    background: #b19355;
}
.walkthrough-pagination .pagination-prev {
    text-align: left;
}
.walkthrough-pagination .pagination-next {
    text-align: right;
}
.walkthrough-pagination .pagination-center img {
    display: block;
    margin: 0 auto;
    max-width: 48px;
    width: 30px;
    height: auto;
    opacity: 0.6;
}
.walkthrough-pagination a {
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
    color: inherit;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}
.walkthrough-pagination a:hover {
    opacity: 1;
}
.walkthrough-pagination .chapter-text {
    display: none;
}

/** SIDEBAR
--------------------------------------------------------------------------- */
#secondary{
    flex-shrink: 0;
    transition: transform 0.3s ease;
    font-size: 0.9em;
}
#secondary .sidebar-menu h4 {
    background: #9B2D2E url('assets/images/arrow-down.svg') no-repeat 10px 14px;
    background-size: 25px;
    color: #fff;
    padding: 0.5rem 1rem 0.5rem 3rem;
    text-align: left;
    font-size: 1.3rem;
}
#secondary .sidebar-menu ul {
    margin-bottom: 2rem;
    padding-left: 0;
}
#secondary .sidebar-menu ul li {
    list-style-type: none;
}
#secondary .sidebar-menu ul li::marker {
    font-size: 0.5em;
}
#secondary .sidebar-menu ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding-left: 0;
    transition: padding-left 0.6s ease;
}
#secondary .sidebar-menu ul li a::before {
    background: url('assets/images/blood-splash.png') no-repeat bottom left;
    background-size: contain;
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 20px;
    opacity: 0;
    transition: opacity 1.5s ease;
    pointer-events: none;
}
#secondary .sidebar-menu ul li a:hover {
    padding-left: 20px;
    color: #C73B3B;
}
#secondary .sidebar-menu ul li a:hover::before {
    width: 20px;
    opacity: 1;
}
#secondary .sidebar-menu ul li a::after {
    content: "";
}
#secondary .sidebar-menu ul li span.current {
    color: #C73B3B;
    font-weight: bold;
}

/** SIDEBAR > OVERLAY & TOGGLE & CLOSE
--------------------------------------------------------------------------- */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}
#secondary.active + .sidebar-overlay, .sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}
.sidebar-close{
    visibility: hidden;
    display: block;
    height: 0;
}

/** SIDEBAR > RANDOM POSTS
--------------------------------------------------------------------------- */
#secondary .sidebar-random-posts h2{
    margin-top: 0;
}
#secondary .sidebar-random-posts .article-card{
    margin-bottom: 2rem;
}
#secondary .sidebar-random-posts .article-title {
    margin-top: 0;
    min-height: 0;
}
#secondary .sidebar-random-posts .article-category {
    background: none;
    padding: 0;
    color: #9e1313;
    border-radius: 0;
}
#secondary .sidebar-random-posts .article-thumb,
#secondary .sidebar-random-posts .article-category,
#secondary .sidebar-random-posts .article-title {
    margin-bottom: 5px;
}
#secondary .sidebar-random-posts.sidebar-pnj .article-thumb{
    margin-bottom: 10px;
}
#secondary .sidebar-random-posts.sidebar-pnj .article-category{
    display: none;
    visibility: hidden;
}

/** CATEGORY
--------------------------------------------------------------------------- */

/** CUSTOM ICONS AND BOXES
--------------------------------------------------------------------------- */
.lop.lop-arrow-down {
    background-image: url('assets/images/arrow-down.svg');
    background-repeat: no-repeat;
    background-position: center;
    width: 13px;
    display: inline-block;
    height: 11px;
    transition: all 0.3s ease;
}
.lop-blood-box::after {
    content: "";
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
}
.lop-blood-box::after {
    bottom: 0;
    right: 0;
    width: 414px;
    height: 514px;
    background-image: url('assets/images/blood-splash-wide.png');
    background-position: bottom right;
    z-index: 1;
    opacity: 0.5;
    pointer-events: none;
}

/** CONTENT DESIGN > TABLES
--------------------------------------------------------------------------- */
.entry-content .table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px
}
.entry-content .table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    table-layout: fixed;
    min-width: 625px;
}
.entry-content .table-wrapper table tr.selected {
    background-color: rgba(95, 165, 106, 0.1);
    transition: background-color 0.2s ease;
}

.entry-content .table-wrapper table th {
    background-color: #E8E3DC;
    font-weight: bold;
}
.entry-content .table-wrapper table th.big-text {
    width: 70%;
}
.entry-content .table-wrapper table th,
.entry-content .table-wrapper table td {
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    text-align: left;
    vertical-align: middle;
    white-space: normal;
    word-break: break-word;
}
.entry-content .table-wrapper table.merchant td:nth-child(3),
.entry-content .table-wrapper table.merchant th:nth-child(3),
.entry-content .table-wrapper table.merchant td:nth-child(4),
.entry-content .table-wrapper table.merchant th:nth-child(4) {
    width: 90px;
}
.entry-content .table-wrapper table td ul{
    margin: 0 !important;
    padding-left: 1rem !important;
}
.entry-content .table-wrapper table img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    display: block;
}

/** TITLES
--------------------------------------------------------------------------- */
#app h1, #app h2 {
    margin-bottom: 0;
    line-height: 1.2;
}
#app h2 {
    font-size: 1.6rem;
    color: #b19355;
    position: relative;
    border-bottom: 2px solid #b19355;
    padding: 0 0 15px 0;
    margin: 1rem 0 2rem 0;
    display: inline-block;
}
#app h2::after {
    content: "";
    display: block;
    height: 30px;
    background: transparent url(assets/images/separator-title.svg) no-repeat;
    position: absolute;
    width: 45px;
    right: -45px;
    bottom: -1.1rem;
}

/** PARAGRAPHS
--------------------------------------------------------------------------- */
#app p {
    margin-bottom: 1rem;
    font-size: 1rem;
    text-align: justify;
}

/** LISTS
--------------------------------------------------------------------------- */
#app ul {
    list-style-type: disc !important;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}
#app li {
    margin-bottom: 0.2rem;
}

/** BLOCKQUOTE
--------------------------------------------------------------------------- */
blockquote {
    position: relative;
    margin: 0;
    padding: 2rem;
    background: #f2f2f2;
    color: #222;
}
blockquote p {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.7;
}
blockquote::before {
    content: "❝";
    position: absolute;
    top: 0;
    left: -15px;
    font-size: 5rem;
    color: rgba(0,0,0,0.12);
    pointer-events: none;
}
blockquote::after {
    content: none;
}
blockquote cite {
    position: relative;
    display: block;
    margin-top: 24px;
    padding-left: 70px;
    font-style: normal;
    letter-spacing: 0.08em;
    color: #555;
}
blockquote cite::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 64px;
    height: 64px;
    transform: translateY(-50%);
    background-image: var(--avatar);
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    border: 2px solid #b19355;
}
blockquote::after {
    content: "";
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 60px;
    height: 20px;
    border-bottom: 2px solid #b19355;
    border-right: 2px solid #b19355;
}
blockquote::marker {
    display: none;
}
blockquote span.corner {
    display: none;
}
blockquote.choi-ji-won  { --avatar: url("assets/images/people/choi-ji-won.png"); }
blockquote.jonghwan-lee { --avatar: url("assets/images/people/jonghwan-lee.png"); }
blockquote.jongwook-lim { --avatar: url("assets/images/people/no-picture.png"); }

strong {
    color: #121212;
    font-weight: bold;
}
.todo {
    background-color: #fff59d !important;
}

/** BUTTON TO GO UP
--------------------------------------------------------------------------- */
#scroll-to-top {
    display: flex;
    align-content: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    right: 25px;
    width: 50px;
    border-radius: 8px 8px 0 0;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bolder;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
    background: #9e1313;
}
#scroll-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/** SPECIFICS > BOSS ICON
--------------------------------------------------------------------------- */
.boss {
    width: 100%;
    padding: 0 20px 0 20px;
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #eee;
    position: relative;
    z-index: 1;
}
.boss::before {
    content: "";
    position: absolute;
    inset: 0;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 895px 125px;
    z-index: -1;
    filter: brightness(80%);
}
.boss .boss-header {
    position: relative;
    min-height: 125px;
    display: grid;
    grid-template-columns: 1fr 125px;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.boss .boss-header::before, .boss .boss-header::after {
    content: '';
    flex-shrink: 0;
    width: 125px;
    height: 125px;
    grid-column: 2;
    grid-row: 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
}
.boss .boss-header::before {
    z-index: 1;
}
.boss .boss-header::after {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}
.boss .boss-header .boss-title {
    font-family: 'Brilon_1.2', sans-serif;
    margin: 0;
    text-wrap: balance;
    max-width: 100%;
    overflow-wrap: break-word;
    font-size: clamp(18px, 3vw, 25px);
    font-weight: bold;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.boss .reward {
    text-align: center !important;
}
.boss-header .boss-killed {
    position: absolute;
    right: 0;
    top: 0;
    width: 125px;
    height: 125px;
    background-image: url("assets/images/bosses/frames/killed.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transform: translate(40px, -40px) scale(1.4);
    pointer-events: none;
    z-index: 5;
}
.boss.is-killed .boss-header .boss-killed {
    animation: clawHit 0.45s ease-out forwards;
}
@keyframes clawHit {
    0% {
        opacity: 0;
        transform: translate(40px, -40px) scale(1.4);
    }
    60% {
        opacity: 1;
        transform: translate(-5px, 5px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

.boss.maitre-du-defile::before {background-image: url('assets/images/bosses/maitre-du-defile.jpg');}
.boss.ane-fou::before {background-image: url('assets/images/bosses/ane-fou.jpg');}
.boss.veilleur-desarticule::before {background-image: url('assets/images/bosses/veilleur-desarticule.jpg');}
.boss.survivant::before {background-image: url('assets/images/bosses/survivant.jpg');}
.boss.marionnette-du-futur::before {background-image: url('assets/images/bosses/marionnette-du-futur.jpg');}
.boss.fuoco-flamme-du-roi::before {background-image: url('assets/images/bosses/fuoco-flamme-du-roi.jpg');}
.boss.expiatrice::before {background-image: url('assets/images/bosses/expiatrice.jpg');}
.boss.andreus-archeveque-dechu::before {background-image: url('assets/images/bosses/andreus-archeveque-dechu.jpg');}
.boss.aine-de-la-confrerie-des-lapins-noirs::before {background-image: url('assets/images/bosses/aine-de-la-confrerie-des-lapins-noirs.jpg');}
.boss.dame-blanche::before {background-image: url('assets/images/bosses/dame-blanche.jpg');}
.boss.marionnette-clown-folle::before {background-image: url('assets/images/bosses/marionnette-clown-folle.jpg');}
.boss.roi-des-marionnettes::before {background-image: url('assets/images/bosses/roi-des-marionnettes.jpg');}

/** PUPPETS *----------------------------------------------------------------- */
.boss.maitre-du-defile .boss-header::before,
.boss.veilleur-desarticule .boss-header::before,
.boss.marionnette-du-futur .boss-header::before,
.boss.fuoco-flamme-du-roi .boss-header::before,
.boss.marionnette-clown-folle .boss-header::before,
.boss.roi-des-marionnettes .boss-header::before {
    background-image: url('assets/images/bosses/frames/puppet-kill-bg.png');
}
.boss.maitre-du-defile .boss-header::after,
.boss.veilleur-desarticule .boss-header::after,
.boss.marionnette-du-futur .boss-header::after,
.boss.fuoco-flamme-du-roi .boss-header::after,
.boss.marionnette-clown-folle .boss-header::after,
.boss.roi-des-marionnettes .boss-header::after {
    background-image: url('assets/images/bosses/frames/puppet-kill-emblem.png');
}

/** STALKERS *---------------------------------------------------------------- */
.boss.ane-fou .boss-header::before,
.boss.survivant .boss-header::before,
.boss.expiatrice .boss-header::before,
.boss.aine-de-la-confrerie-des-lapins-noirs .boss-header::before,
.boss.dame-blanche .boss-header::before  {
    background-image: url('assets/images/bosses/frames/stalker-kill-bg.png');
}
.boss.ane-fou .boss-header::after,
.boss.survivant .boss-header::after,
.boss.expiatrice .boss-header::after,
.boss.aine-de-la-confrerie-des-lapins-noirs .boss-header::after,
.boss.dame-blanche .boss-header::after {
    background-image: url('assets/images/bosses/frames/stalker-kill-emblem.png');
}

/** CARCASS *---------------------------------------------------------------- */
.boss.andreus-archeveque-dechu .boss-header::before {
    background-image: url('assets/images/bosses/frames/carcass-kill-bg.png');
}
.boss.andreus-archeveque-dechu .boss-header::after {
    background-image: url('assets/images/bosses/frames/carcass-kill-emblem.png');
}

/** WORDPRESS > GALERY
--------------------------------------------------------------------------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 1px;
    /*margin-left: -2rem;*/
    /*margin-right: -2rem;*/
    /*width: calc(100% + 4rem);*/
}
.gallery + div.block{
    margin-top: 2rem;
}
.gallery-item {
    margin: 0;
}
.gallery-icon {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery a:hover img {
    transform: scale(1.10);
}
.gallery + p{
    margin-top: 1rem;
}
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
#lightbox img {
    max-width: 90%;
    max-height: 90%;
}


/** SPECIFICS > NG+ ICON
--------------------------------------------------------------------------- */
span.ngplus{
    font-family: 'Arial', serif;
    background: #D13841;
    color: #f9f9f9;
    padding: 3px 4px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 0.8rem;
}

/** SPECIFICS > SPAN ICONS IN CONTENT
--------------------------------------------------------------------------- */
.entry-content .shortcut{
    scroll-margin-top: 120px;
}
.entry-content .shortcut, .entry-content .trophy-earned, .entry-content .humanity {
    position: relative;
    padding-left: 18px;
    font-weight: 600;
    font-size: 0.95em;
    line-height: 1.4;
}
.entry-content .shortcut::before, .entry-content .trophy-earned::before,
.entry-content .humanity::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.15em;
    width: 14px;
    height: 14px;
    background-color: currentColor;
    -webkit-mask-size: contain;
    mask-size: contain;
}
.shortcut-highlight {
    animation: shortcutFlash 2.6s ease-out;
}
@keyframes shortcutFlash {
    0% {
        background-color: rgba(95, 165, 106, 0);
        box-shadow: 0 0 0 rgba(95, 165, 106, 0);
    }
    12% {
        background-color: rgba(95, 165, 106, 0.9);
        box-shadow: 0 0 14px rgba(95, 165, 106, 0.9);
    }
    25% {
        background-color: rgba(95, 165, 106, 0);
        box-shadow: 0 0 0 rgba(95, 165, 106, 0);
    }
    40% {
        background-color: rgba(95, 165, 106, 0.7);
        box-shadow: 0 0 12px rgba(95, 165, 106, 0.7);
    }
    55% {
        background-color: rgba(95, 165, 106, 0);
        box-shadow: 0 0 0 rgba(95, 165, 106, 0);
    }
    75% {
        background-color: rgba(95, 165, 106, 0.5);
        box-shadow: 0 0 10px rgba(95, 165, 106, 0.5);
    }
    100% {
        background-color: rgba(95, 165, 106, 0);
        box-shadow: 0 0 0 rgba(95, 165, 106, 0);
    }
}

/** SPECIFICS > HUMANITY SPAN IN CONTENT
--------------------------------------------------------------------------- */
.entry-content .humanity {color: #4a90c2;}
.entry-content .humanity::before {
    -webkit-mask: url("https://unpkg.com/ionicons@5.5.2/dist/svg/heart.svg") no-repeat center;
    mask: url("https://unpkg.com/ionicons@5.5.2/dist/svg/heart.svg") no-repeat center;
}

/** SPECIFICS > SHORTCUT SPAN IN CONTENT
--------------------------------------------------------------------------- */
.entry-content .shortcut, .entry-content a.shortcut:hover {
    color: #5fa56a !important;
}
.entry-content .shortcut::before{
    -webkit-mask: url("https://unpkg.com/ionicons@5.5.2/dist/svg/trail-sign.svg") no-repeat center;
    mask: url("https://unpkg.com/ionicons@5.5.2/dist/svg/trail-sign.svg") no-repeat center;
}

/** SPECIFICS > BLOCK
--------------------------------------------------------------------------- */
div.block {
    position: relative;
    margin: 10px 0 1rem;
    background-color: #f4f4f4;
    border-radius: 8px;
    padding: 1rem;
}
div.block::before {
    content: "";
    position: absolute;
    top: -10px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 63px;
    height: 100px;
}
div.block h3.title {
    margin-left: 60px;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.3;
    text-align: left;
}
div.block p{
    margin: 0 0 0.75rem 0;
    line-height: 1.6;
}
.block p:last-child {
    margin-bottom: 0 !important;
}

/** SPECIFICS > INFO BLOCK
--------------------------------------------------------------------------- */
div.info {
    border-left: 2px solid #8C7963;
    border-right: 2px solid #8C7963;
}
div.info h3.title{
    color: #8C7963;
}
div.info::before {
    background-image: url("assets/images/moonphase-pocket-watch.png");
}
/** SPECIFICS > QUEST BLOCK
--------------------------------------------------------------------------- */
div.quest {
    border-left: 2px solid #1384E9;
    border-right: 2px solid #1384E9;
}
div.quest h3.title{
    color: #1384E9;
}
div.quest::before {
    background-image: url("assets/images/blue-butterfly.png");
}
/** SPECIFICS > NGPLUS BLOCK
--------------------------------------------------------------------------- */
div.ngplus {
    border-left: 2px solid #D13841;
    border-right: 2px solid #D13841;
}
div.ngplus h3.title{
    color: #D13841;
}
div.ngplus::before {
    background-image: url("assets/images/last-resort.png");
}

/** SPECIFICS > ICONS > PS5 BUTTONS BY ZACKSLY
--------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: -10px -5px;
}

.btn-triangle              { background-image: url('assets/images/icons/ps5/triangle.svg'); }
.btn-circle                { background-image: url('assets/images/icons/ps5/circle.svg'); }
.btn-cross                 { background-image: url('assets/images/icons/ps5/cross.svg'); }
.btn-square                { background-image: url('assets/images/icons/ps5/square.svg'); }
.btn-l1                    { background-image: url('assets/images/icons/ps5/l1.svg'); }
.btn-l2                    { background-image: url('assets/images/icons/ps5/l2.svg'); }
.btn-r1                    { background-image: url('assets/images/icons/ps5/r1.svg'); }
.btn-r2                    { background-image: url('assets/images/icons/ps5/r2.svg'); }
.btn-left-stick            { background-image: url('assets/images/icons/ps5/left-stick.svg'); }
.btn-left-stick-up         { background-image: url('assets/images/icons/ps5/left-stick-up.svg'); }
.btn-left-stick-down       { background-image: url('assets/images/icons/ps5/left-stick-down.svg'); }
.btn-left-stick-left       { background-image: url('assets/images/icons/ps5/left-stick-left.svg'); }
.btn-left-stick-right      { background-image: url('assets/images/icons/ps5/left-stick-right.svg'); }
.btn-right-stick           { background-image: url('assets/images/icons/ps5/right-stick.svg'); }
.btn-right-stick-up        { background-image: url('assets/images/icons/ps5/right-stick-up.svg'); }
.btn-right-stick-down      { background-image: url('assets/images/icons/ps5/right-stick-down.svg'); }
.btn-right-stick-left      { background-image: url('assets/images/icons/ps5/right-stick-left.svg'); }
.btn-right-stick-right     { background-image: url('assets/images/icons/ps5/right-stick-right.svg'); }
.btn-l3                    { background-image: url('assets/images/icons/ps5/l3.svg'); }
.btn-r3                    { background-image: url('assets/images/icons/ps5/r3.svg'); }
.btn-dpad-up               { background-image: url('assets/images/icons/ps5/d-pad-up.svg'); }
.btn-dpad-down             { background-image: url('assets/images/icons/ps5/d-pad-down.svg'); }
.btn-dpad-left             { background-image: url('assets/images/icons/ps5/d-pad-left.svg'); }
.btn-dpad-right            { background-image: url('assets/images/icons/ps5/d-pad-right.svg'); }
.btn-home                  { background-image: url('assets/images/icons/ps5/home.svg'); }
.btn-create                { background-image: url('assets/images/icons/ps5/create.svg'); }
.btn-options               { background-image: url('assets/images/icons/ps5/options.svg'); }
.btn-touch-pad-press       { background-image: url('assets/images/icons/ps5/touch-pad-press.svg'); }
.btn-touch-pad-swipe-down  { background-image: url('assets/images/icons/ps5/touch-pad-swipe-down.svg'); }
.btn-touch-pad-swipe-left  { background-image: url('assets/images/icons/ps5/touch-pad-swipe-left.svg'); }
.btn-touch-pad-swipe-right { background-image: url('assets/images/icons/ps5/touch-pad-swipe-right.svg'); }
.btn-touch-pad-swipe-up    { background-image: url('assets/images/icons/ps5/touch-pad-swipe-up.svg'); }

/** SPECIFICS > TROPHY SPAN IN CONTENT
--------------------------------------------------------------------------- */
.entry-content a.trophy-earned::before,
.entry-content .trophy-type::before {
    -webkit-mask: url("https://unpkg.com/ionicons@5.5.2/dist/svg/trophy.svg") no-repeat center;
    mask: url("https://unpkg.com/ionicons@5.5.2/dist/svg/trophy.svg") no-repeat center;
}
.entry-content a.trophy-earned.bronze, .entry-content .trophy-type.bronze {color: #cd7f32;}
.entry-content a.trophy-earned.silver, .entry-content .trophy-type.silver  {color: #c0c0c0;}
.entry-content a.trophy-earned.gold, .entry-content .trophy-type.gold  {color: #d4af37;}
.entry-content a.trophy-earned.platinum, .entry-content .trophy-type.platinum  {color: #8fd3ff;}
.entry-content .trophy-type.hidden  {color: #111111;}

/** SPECIFICS > TROPHY SPAN IN CONTENT > TROPHY LIST & GUIDE
--------------------------------------------------------------------------- */
.entry-content .trophy-type::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    -webkit-mask: url("https://unpkg.com/ionicons@5.5.2/dist/svg/trophy.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask: url("https://unpkg.com/ionicons@5.5.2/dist/svg/trophy.svg") no-repeat center;
    mask-size: contain;
    vertical-align: middle;
}
.entry-content .trophy-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.entry-content .trophy-item .trophy-icon{
    width: 64px;
    height: 64px;
    margin: 0.25em 1em 0.5em 0;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.entry-content .trophy-info {
    flex: 1;
}
.entry-content .trophy-info .trophy-name{
    font-weight: bold;
}
.entry-content .trophy-info p {
    margin: 0.6em 0 0;
    line-height: 1.5;
}
.entry-content .trophy-item.is-hidden{
    cursor: pointer;
}
.entry-content .trophy-item.is-hidden .trophy-info,
.entry-content .trophy-item.is-hidden img {
    filter: blur(6px);
    pointer-events: none;
    user-select: none;
}

/** PLUGINS > COMPLIANZ
--------------------------------------------------------------------------- */
.cmplz-documents.cmplz-links{
    display: none;
    visibility: hidden;
}

/** RESPONSIVE
--------------------------------------------------------------------------- */
/* Landscape tablet */
@media (min-width: 992px) {
    .boss {
        padding: 0 1rem;
    }
    div.block::before{
        width: 50px;
    }
}

/* Portrait tablet & mobile */
@media (max-width: 991px) {
    .site-header .middle-header {
        display: none !important;
    }
    .glitch {
        background-size: 115%;
        background-position: center 25%;
        min-height: 40vh;
    }
    blockquote{
        padding: 1rem;
    }
    #primary {
        order: 1;
    }
    #secondary {
        position: fixed;
        top: 0;
        right: -400px;
        width: 400px;
        height: 100%;
        background: #f5f5f5;
        box-shadow: -2px 0 12px rgba(0,0,0,0.6);
        z-index: 10000;
        padding: 0 0 2rem;
        font-size: 0.9rem;
    }
    #secondary .sidebar-menu{
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding: 1rem;
    }
    .sidebar-toggle {
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 800;
        padding: 15px 8px;
        border-radius: 4px 0 0 4px;
        background: #9e1313;
        color: #fff;
        cursor: pointer;
        width: 22px;
    }
    #secondary .sidebar-close {
        font-size: 2.25rem;
        line-height: 3.125rem;
        cursor: pointer;
        width: 3.125rem;
        height: 3.125rem;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        color: #121212;
        text-align: center;
        visibility: visible;
    }
    #secondary.active {
        right: 0;
    }
    #scroll-to-top{
        display: none;
    }
}

/* Pure mobile */
@media (max-width: 768px) {
    #app.lop-blood-box::after{
        z-index: -1;
    }
    blockquote{
        padding: 1rem;
    }
    .article-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .articles-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    .pnj-homepage .articles-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 1rem !important;
    }
    .article-thumb{
        margin-bottom: 10px;
    }
    .article-content {
        flex-direction: column;
    }
    .walkthrough-pagination{
        padding: 1rem;
    }
    .walkthrough-pagination .chapter-text {
        display: inline;
    }
    .walkthrough-pagination .chapter-title {
        display: none;
    }
    #primary {
        width: 100%;
        order: 1;
        padding: 0 1rem 1rem 1rem;
    }
    #secondary {
        width: 400px;
        font-size: 0.9rem;
    }
    div.block::before{
        width: 50px;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-menu ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .entry-content .table-wrapper::after {
        content: "↔ Faites glisser, ↸ Cliquez pour surligner une ligne";
        display: block;
        text-align: left;
        font-size: 12px;
        color: #777;
        padding-top: 5px;
        padding-bottom: 10px;
    }
}

/* Tablets and + */
@media only screen and (min-width: 577px) {
    .article-title {
        line-height: 1.3;
        min-height: 2.6em;
    }
}

/* Phones */
@media only screen and (max-width: 576px) {
    .main .container{
        overflow: hidden;
    }
    .site-header, .main, .site-footer {
        padding: 0;
    }
    #secondary{
        width: 350px;
    }
    #app h2::after {
        right: 0;
        background-color: #fff;
        bottom: -1.09rem;
    }
    .breadcrumb {
      padding: 1rem;
    }
    .pinned-articles {
        margin: 0 -1rem;
        padding: 1rem;
    }
    .article-thumb {
        margin-bottom: 0;
    }
    .article-meta {
        font-size: 0.7rem;
        margin-top: 0;
    }
    .article-category{
        padding: 5px;
        margin-top: 5px;
    }
    .article-title {
        margin: 0 0 5px 0;
        line-height: 1.3;
        min-height: 2.6em;
    }
    .article-title a {
        font-size: 0.9rem;
    }
    .post-feed {
        padding: 1rem;
    }
    .post-feed h2 {
        margin-top: 1rem !important;
    }
    .pagination {
        margin: 1rem auto;
    }
    div.block::before{
        top: 0;
    }
    .pnj-homepage .articles-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem !important;
    }
}

/** RESOURCES
--------------------------------------------------------------------------- */
/*
Animated Lantern
https://public-files.gumroad.com/sjxx3x2s6j3inm08cfnfipn11rso
https://public-files.gumroad.com/yd0rsztjw7beqd8i7kvfiwyzs0gu
*/
