/**
 * Styles pour le composant Next Page - Version simplifiée
 * Widget Elementor custom pour afficher texte + flèche alignés à droite
 */

.next-page-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.next-page-link {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.next-page-link:hover {
    text-decoration: none;
    color: inherit;
}

.next-page-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.next-page-text {
    text-align: right;
    line-height: 1.5;
}

.next-page-text p {
    margin: 0;
    padding: 0;
}

.next-page-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    min-width: 30px;
    height: 30px;
}

/* Force le style Font Awesome */
.next-page-arrow i {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome" !important;
    font-style: normal !important;
}

/* Fallback si Font Awesome ne charge pas */
.next-page-arrow i:before {
    content: "→" !important;
}

/* Si Font Awesome se charge correctement */
.next-page-arrow i.fa-arrow-right:before {
    content: "\f061" !important;
}

/* Styles par défaut inspirés du thème */
.next-page-text {
    color: var(--blue-800, #072142);
    font-family: serif;
}

.next-page-text a {
    color: inherit;
}

.next-page-arrow {
    color: var(--blue-800, #072142);
}