/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

.recent-posts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.post-item {
    width: calc(50% - 10px);
    border: 1px solid #ddd;
    padding: 10px;
    box-sizing: border-box;
}

.post-inner {
    display: flex;
    gap: 15px;
}

.post-thumbnail img {
    width: 100px;
    height: auto;
    object-fit: cover;
}

.post-content h3 {
    font-weight: bold;
    font-size: 1.1em;
    margin: 0 0 10px;
}

.post-content p {
    margin: 0 0 10px;
}

.read-more {
    display: inline-block;
    padding: 6px 12px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.recent-courses-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.course-item {
    border: 1px solid #ddd;
    padding: 10px;
    box-sizing: border-box;
}

.course-inner { 
    display: block;
    gap: 20px; /* Augmente l’espace entre image et texte */
    align-items: flex-start; /* Aligne en haut */

}
.course-thumbnail img {

    width: 120px; /* Augmente la largeur */
    height: auto;
    object-fit: cover;
    border-radius: 4px;

}

.course-content h4 {
    font-weight: bold;
    font-size: 1em;
    margin: 0 0 8px;
}

.course-content p {
    margin: 0 0 10px;
    font-size: 0.9em;
    color: #333;
}

.course-button {
    display: inline-block;
    padding: 6px 12px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85em;
}
.course-button:hover {
    background-color: #005a8c;
}

/* Styles pour les emails LearnPress */
.lp-email-body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.lp-email-container {
    max-width: 600px;
    margin: auto;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.lp-email-header {
    background: #0073aa;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.lp-email-logo {
    max-height: 50px;
    margin-bottom: 10px;
}

.lp-email-content {
    padding: 20px;
    color: #333;
    font-size: 16px;
}

.lp-email-button {
    display: inline-block;
    padding: 12px 20px;
    background: #0073aa;
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
}

.lp-email-footer {
    text-align: center;
    font-size: 14px;
    color: #777;
    padding: 15px;
    border-top: 1px solid #eee;
}


.info-meta-item.course-language {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
}