/* =========================
   SECTION WRAPPER
========================= */

.course-section {
    margin: 40px 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.section-badge {
    background: #fde9d2;
    color: #f97316;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.section-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

.section-title img{
    background: #fde9d2;
    padding: 10px;
    width: 38px;
    border-radius: 12px;
}


/* =========================
   GRID LAYOUT
========================= */

.tutor-tag-courses-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* =========================
   CARD DESIGN
========================= */

.tutor-tag-course-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 18px 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* HOVER EFFECT */
.tutor-tag-course-card:hover {
    border-color: #fde9d2;
    box-shadow: 0 8px 24px rgba(253, 233, 210, 0.6);
    transform: translateY(-3px);
}


/* =========================
   COURSE TITLE
========================= */

.course-title {
    font-size: 17px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.4;
}

.course-title a {
    text-decoration: none;
    color: inherit;
}

/* On Card Hover Change Title */
.tutor-tag-course-card:hover .course-title a {
    color: #1d212b;
}


/* =========================
   DESCRIPTION
========================= */

.course-description{
    font-size:14px;
    color:#6b7280;
    margin:0 0 12px 0;
    line-height:1.5;
}


/* =========================
   META INFO
========================= */

.course-meta {
    display: none;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}


/* =========================
   BOTTOM AREA
========================= */

.course-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
}


/* =========================
   RATING
========================= */

.course-meta-rating{
    font-size:14px;
    font-weight:600;
    color:#f97316;
    margin:0;
}

.rating-stars{
    display:inline-flex;
    align-items:center;
    gap:4px;
}


/* =========================
   ENROLL BUTTON
========================= */

.enroll-btn {
    background: #f97316;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.enroll-btn:hover {
    background: #ea580c;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249,115,22,0.3);
}


/* =========================
   MEDIA QUERIES (ALL AT BOTTOM)
========================= */

@media (max-width: 1024px) {
    .tutor-tag-courses-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .tutor-tag-courses-wrapper {
        grid-template-columns: 1fr;
    }
}