/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 26 2026 | 13:05:36 */
<style>
/* ===== GLOBAL RESET & SETUP ===== */

/* ===== CONTAINER & HEADER ===== */
.usmle-courses-wrapper {
  
    margin: 0 auto;
}

.usmle-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.usmle-section-header span {
    color: #02006C;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(0, 150, 136, 0.1);
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid #009688;
}

.usmle-section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.3rem;
    font-weight: 700;
    margin: 15px 0 0 0;
    color: #02006C;
}

/* ===== GRID LAYOUT (3 COLUMNS FOR USMLE STEPS) ===== */
.usmle-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 1024px) {
    .usmle-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .usmle-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CLEAN CARD DESIGN ===== */
.usmle-course-card {
    background: transparent;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Image Container */
.usmle-card-img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.usmle-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.usmle-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #02006C;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content Body */
.usmle-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.usmle-card-body h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #02006C;
}

.usmle-card-body p {
    font-size: 14px;
    line-height: 1.6;
    color: #222222;
    margin: 0 0 20px 0;
}

/* Quick Specs Chips */
.usmle-specs-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.usmle-spec-chip {
    border: 1px solid #009688;
    background: rgba(0, 150, 136, 0.05);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    color: #111111;
}

.usmle-spec-chip strong {
    color: #02006C;
}

/* Feature List Inside Card */
.usmle-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    border-top: 1px solid #e2e8f0;
    padding-top: 18px;
}

.usmle-feature-list li {
    font-size: 13.5px;
    color: #111111;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.usmle-feature-list li::before {
    content: "✓";
    color: #009688;
    font-weight: bold;
    font-size: 14px;
}

/* Button */
.usmle-btn {
    margin-top: auto;
    width: 100%;
    padding: 12px 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    background: #009688;
    display: block;
    box-sizing: border-box;
}

/* Mobile Tweak */
@media (max-width: 480px) {
    .usmle-card-body { padding: 18px; }
    .usmle-card-img { height: 180px; }
    .usmle-section-header h2 { font-size: 1.8rem; }
}
</style>