/*
Theme Name: GeneratePress Child
Template: generatepress
*/
/* Styling for the Featured Instructor Cards */
.instructor-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    /* This creates the drop shadow */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

/* Make it lift slightly when the mouse hovers over it */
.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #007cba; /* Optional: highlights the border on hover */
}

/* Ensure the image looks clean inside the card */
.instructor-card img {
    max-width: 120px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.featured-badge {
    background: #ffd700; /* Gold color */
    color: #333;
    font-size: 10px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.elite-border {
    border: 2px solid #ffd700 !important;
    background-color: #fffdf0; /* Very light yellow tint */
}