/**
* Theme Name: MyTheme Child
* Description: This is a child theme of MyTheme.
* Author: Votre Nom
* Author URI: https://example.com
* Template: mytheme
* Version: 1.0.0
*/

/* Modifié par MrWordPress - 14/08/23 */

/* CSS Share Single Posts */

span.art-single-post-share-title {
	font-family: var(--art-h4-font-family) !important;
	font-weight: var(--art-h4-font-weight) !important;
	font-style: var(--art-h4-font-style) !important;
	text-transform: var(--art-h4-text-transform) !important;
	-webkit-text-decoration: var(--art-h4-text-decoration) !important;
	text-decoration: var(--art-h4-text-decoration) !important;
	font-size: var(--art-h4-font-size) !important;
	line-height: var(--art-h4-line-height) !important;
	letter-spacing: var(--art-h4-letter-spacing) !important;
}

/* CSS Widgets Footer -- Demo */

span.art-widget-contact-info__title {
	color: var(--art-second-colors-heading) !important;
	font-family: var(--art-h5-font-family) !important;
	font-weight: var(--art-h5-font-weight) !important;
	font-style: var(--art-h5-font-style) !important;
	text-transform: var(--art-h5-text-transform) !important;
	-webkit-text-decoration: var(--art-h5-text-decoration) !important;
	text-decoration: var(--art-h5-text-decoration) !important;
	font-size: var(--art-h5-font-size) !important;
	line-height: var(--art-h5-line-height) !important;
	letter-spacing: var(--art-h5-letter-spacing) !important;
}
span.art-widget-subscribe-form__title {
	color: var(--art-second-colors-heading) !important;
	font-family: var(--art-h5-font-family) !important;
	font-weight: var(--art-h5-font-weight) !important;
	font-style: var(--art-h5-font-style) !important;
	text-transform: var(--art-h5-text-transform) !important;
	-webkit-text-decoration: var(--art-h5-text-decoration) !important;
	text-decoration: var(--art-h5-text-decoration) !important;
	font-size: var(--art-h5-font-size) !important;
	line-height: var(--art-h5-line-height) !important;
	letter-spacing: var(--art-h5-letter-spacing) !important;
}

/* CSS Widget Actualités */

span.art-post-title {
	font-family: var(--art-h5-font-family) !important;
	font-weight: var(--art-h5-font-weight) !important;
	font-style: var(--art-h5-font-style) !important;
	text-transform: var(--art-h5-text-transform) !important;
	-webkit-text-decoration: var(--art-h5-text-decoration) !important;
	text-decoration: var(--art-h5-text-decoration) !important;
	font-size: var(--art-h5-font-size) !important;
	line-height: var(--art-h5-line-height) !important;
	letter-spacing: var(--art-h5-letter-spacing) !important;
	color: var(--art-colors-heading) !important;
}

span.art-post-title:hover {
	color: var(--art-colors-hover) !important;
}

span.art-post-title a {
	color: var(--art-colors-heading) !important;
}

span.art-post-title a:hover {
	color: var(--art-colors-hover) !important;
}

/* CSS Popup */

span.art-popup-title {
	font-family: var(--art-h4-font-family) !important;
	font-weight: var(--art-h4-font-weight) !important;
	font-style: var(--art-h4-font-style) !important;
	text-transform: var(--art-h4-text-transform) !important;
	-webkit-text-decoration: var(--art-h4-text-decoration) !important;
	text-decoration: var(--art-h4-text-decoration) !important;
	font-size: var(--art-h4-font-size) !important;
	line-height: var(--art-h4-line-height) !important;
	letter-spacing: var(--art-h4-letter-spacing) !important;
}

.art-popup-container .art-popup-title {
	text-align: center !important;
	display: block !important;
	text-align: center !important;
	margin: 0 !important;
}

/* CSS Widgets Footer */

.art-footer-widgets__inner span.widget-title {
	color: var(--art-second-colors-heading) !important;
	font-family: var(--art-h5-font-family) !important;
	font-weight: var(--art-h5-font-weight) !important;
	font-style: var(--art-h5-font-style) !important;
	text-transform: var(--art-h5-text-transform) !important;
	-webkit-text-decoration: var(--art-h5-text-decoration) !important;
	text-decoration: var(--art-h5-text-decoration) !important;
	font-size: var(--art-h5-font-size) !important;
	line-height: var(--art-h5-line-height) !important;
	letter-spacing: var(--art-h5-letter-spacing) !important;
}

.art-footer-widgets__inner span.widget-title {
	margin-top: 0 !important;
}

span.screen-reader-text {
	display: none !important;
}


.art-footer-copyright {
	display: none;
}

/* CSS Navigation entre articles */
.single-post-nav {
	margin: 60px 0;
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.post-nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	border-top: 1px solid #eaeaea;
	border-bottom: 1px solid #eaeaea;
	position: relative;
}

.post-nav-wrapper {
	width: 48%;
	display: flex;
}

.post-nav-wrapper:first-child {
	justify-content: flex-start;
}

.post-nav-wrapper:last-child {
	justify-content: flex-end;
}

.post-nav-item {
	display: flex;
	width: 100%;
	transition: all 0.3s ease;
}

.post-nav-item.prev-post {
	justify-content: flex-start;
}

.post-nav-item.next-post {
	justify-content: flex-end;
	text-align: right;
}

.post-nav-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	width: 100%;
}

.prev-post .post-nav-link {
	flex-direction: row;
}

.next-post .post-nav-link {
	flex-direction: row;
	justify-content: flex-end;
}

.next-post .post-nav-content {
	text-align: right;
	padding-right: 15px;
	padding-left: 0;
}

.next-post .post-nav-label,
.next-post .post-nav-title {
	text-align: right;
}

.post-nav-thumb {
	flex: 0 0 85px;
	width: 85px;
	height: 85px;
	overflow: hidden;
	border-radius: 4px;
}

.post-nav-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-nav-content {
	padding: 0 15px;
}

.post-nav-label {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	margin-bottom: 5px;
	font-weight: 500;
}

.post-nav-title {
	font-size: 18px;
	margin: 0;
	color: #333;
	line-height: 1.4;
	transition: color 0.3s ease;
}

.post-nav-link:hover .post-nav-title {
	color: var(--art-colors-hover, #0056b3);
}

@media (max-width: 768px) {
	.post-nav-container {
		flex-direction: column;
		gap: 20px;
	}
	
	.post-nav-item {
		width: 100%;
	}
}



.footer-widget {
    font-size: 12px;
	color: #9d9a9a;
}
.dialog-type-lightbox {
	display: none !important;
}