* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    padding: 2rem;
    color: #1e293b;
}

h1 {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
	border-bottom: 1px solid #e6e6e6;
}
h1:after{
	background: #888888;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    margin: 0 0 -1px;
    width: 3rem;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.course-card-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* .course-card-link:hover {
    transform: translateY(-5px);
} */

.course-card {
    background: white;
    border-radius: 15px;
	border: 1px solid rgba(26, 26, 26, 0.125);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.course-preview {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #e2e8f0;
}

.course-preview-placeholder {
    width: 100%;
    height: 180px;
    background: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-size: 0.9rem;
}

.course-title {
    padding: 1rem 1rem 0.5rem;
    font-size: 1rem;
    font-weight: 600;
/* 	color: #2a632c; */
}

.course-description {
    padding: 0 1rem 1rem;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.4;
}