/**
 * Template: ms-lms-starter-theme
 * Theme Name: MasterStudy Templates Child
 * Theme URI: https://starter.stylemixthemes.com/
 * Author: StylemixThemes
 * Author URI: https://stylemixthemes.com/
 * Description: MasterStudy Templates Child Theme is the child theme for the MasterStudy Templates. With this child theme, you can customize your eLearning website appearance without changing the original templates.
 * License: GNU General Public License v2 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 * Tags: classes, courses, Education, education center, e-commerce, learning center, tutoring, teaching, study, studying, learning, lessons, instructor, teacher, mentor
 * Text Domain: starter-text-domain
 * Version: 1.0.0
 */

.masterstudy-authorization__switch-wrapper{
	display: none !important;
}

.elementor, .elementor-48181{
	box-shadow: 0px 6px 10px rgb(19 19 19 / 42%) !important;
}

 .course-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    width: 340px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden;
    padding: 20px;
  }

  .course-card:hover {
    box-shadow: 0 8px 25px rgba(214, 0, 28, 0.25);
    transform: translateY(-5px);
  }

  .course-card img.course-image {
    width: 100%;
    border-radius: 8px;
    height: 180px;
    object-fit: cover;
  }

  .price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff3b3b;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .instructor {
    display: flex;
    align-items: center;
    margin-top: 15px;
  }

  .instructor img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
  }

  .instructor span {
    color: #d6001c;
    font-weight: 600;
    font-size: 0.95rem;
  }

  .course-card h3 {
    font-size: 1.2rem;
    color: #222;
    margin: 10px 0 5px;
    line-height: 1.3;
  }

  .course-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #444;
  }

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

  .course-meta i {
    color: #d6001c;
  }