        .thin-courses {
            padding: 2rem 0;
        }



/* Thin Course Card Styles */
.thin-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* Increased min width for wider cards */
    gap: 10px; /* Further reduced gap between cards */
    justify-content: center; /* Center the grid items */
    padding: 0 5px; /* Reduced side padding within the container */
}

.thin-course-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 260px; /* Adjusted width for wider cards */
    font-family: 'Arial', sans-serif;
    margin: 0; /* No margin, gap handles spacing */
    display: flex;
    flex-direction: column;
}

.thin-course-card .card-image-container {
    width: 100%;
    height: 180px; /* Fixed height for the image */
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.thin-course-card .card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thin-course-card .card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.thin-course-card .card-icon-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.thin-course-card .card-icon {
    width: 40px;
    height: 40px;
    background-color: #007bff; /* Example color, adjust as per image */
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.thin-course-card .card-icon img {
    width: 24px;
    height: 24px;
}

.thin-course-card .card-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.thin-course-card .card-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.thin-course-card .meta-tag {
    background-color: #e0f7fa; /* Light blue background */
    color: #007bff; /* Darker blue text */
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: bold;
}

.thin-course-card .card-description-title {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.thin-course-card .card-description {
    font-size: 0.95em;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.thin-course-card .btn {
    display: block;
    width: 100%;
    padding: 12px 0;
    background-color: #00bfff; /* Bright blue button */
    color: #fff;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.thin-course-card .btn:hover {
    background-color: #009acd;
}
