/* File: css/elp-course-style.css */

.elp-course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px auto;
    max-width: 1100px;
    padding: 20px;
}

.elp-course-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 16px;
    text-align: center;
    transition: transform 0.2s ease;
}

.elp-course-card:hover {
    transform: scale(1.03);
}

.elp-course-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.elp-course-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 18px;
    background-color: #28a745;
    color: white;
    border-radius: 20px;
    text-decoration: none;
}

.elp-course-detail {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

.elp-module-list {
    list-style: none;
    padding: 0;
}

.elp-module-item {
    margin-bottom: 40px;
}

.elp-module-item iframe {
    width: 100%;
    height: 360px;
    border-radius: 8px;
    margin-top: 10px;
}

.elp-duration {
    font-weight: normal;
    font-size: 0.9em;
    color: #555;
}
