/* ============================= */
/* Instructor Pages Background   */
/* ============================= */

.post-type-archive-moopress_instructor,
.single-moopress_instructor {
    background: #EFEAE8;
}


/* ============================= */
/* Instructor Header Card        */
/* Match Course Card Style       */
/* ============================= */

.instructor-header {
    background: #fff;
    border-radius: 0;              /* sharp edges */
    padding: 40px;
    box-shadow: none; 
    margin-bottom: 60px;             /* flat look */
    margin-top: 60px;
}

/* Avatar */
.instructor-avatar-wrap {
    width: 300px;
    height: 300px;
    margin: auto;
    border-radius: 50%;
    border: 4px solid #B7ADA6;
    overflow: hidden;
}

.instructor-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Title */
.instructor-title {
    font-size: 36px;
    font-weight: 600;
    color: #222;
}

/* Divider */
.instructor-divider {
    margin: 18px 0;
    opacity: 0.1;
}

/* Expertise badges */
.badge.bg-light {
    background: #f6f6f6 !important;
    border: 1px solid #e6e6e6;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
    .instructor-header {
        padding: 30px;
        text-align: center;
    }

    .instructor-title {
        font-size: 28px;
    }

    .instructor-avatar-wrap {
        width: 220px;
        height: 220px;
        margin-bottom: 20px;
    }
}


/* ============================= */
/* Courses Grid Layout           */
/* ============================= */

/* Force 3 per row */
.hfe-woo-products-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Tablet */
@media (max-width: 1024px) {
    .hfe-woo-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hfe-woo-products-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* ============================= */
/* Course Cards (Shop Match)     */
/* ============================= */

.hfe-product-item {
    border: 1px solid #e6e6e6;
    border-radius: 0;           /* sharp edges */
    background: #f6f6f6;
    overflow: hidden;
    transition: none;
    box-shadow: none;
}

/* Remove hover effects */
.hfe-product-item:hover {
    transform: none;
    box-shadow: none;
}

/* Image */
.hfe-product-image {
    padding: 0;
}

.hfe-product-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

/* Content */
.hfe-product-content {
    padding: 18px;
}

/* Category */
.hfe-product-category {
    font-size: 11px;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
}

/* Title */
.woocommerce-loop-product__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
    margin: 0;
}
.course-wrapper {
    padding-top: 70px;
    padding-bottom: 70px;
}
.course-wrapper h5 {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

