/* /assets/css/public.css */

/* بطاقات الدورات */
.tawkid-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
}

.tawkid-course-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tawkid-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tawkid-course-card h3 {
    margin: 0;
    padding: 20px;
    background: #2c3e50;
    color: white;
    font-size: 18px;
}

.course-meta {
    padding: 15px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.course-date {
    display: block;
    color: #7f8c8d;
    margin-bottom: 10px;
}

/* شهادة التوثيق */
.verification-badge {
    display: inline-flex;
    align-items: center;
    background: #27ae60;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 13px;
    margin-top: 10px;
}

.verification-badge .dashicons {
    margin-right: 5px;
}

/* الأزرار */
.tawkid-btn {
    display: block;
    text-align: center;
    padding: 12px;
    background: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.tawkid-btn:hover {
    background: #2980b9;
}