.d2-exams-premium-section {
    padding: 100px 0 40px;
    background-color: #fcfdfe;
}
.d2-exams-header {
    text-align: center;
    margin-bottom: 50px;
}
.d2-exams-main-title {
    font-size: 3rem !important;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 15px;
}
.d2-exams-main-desc {
    color: #475569;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}
.d2-exams-grid-row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-right: -12px;
    margin-left: -12px;
    justify-content: center !important;
}
.d2-exams-grid-col {
    position: relative;
    padding: 0 12px;
    margin-bottom: 24px;
    flex: 0 0 100% !important;
    max-width: 100% !important;
}
@media (min-width: 768px) {
    .d2-exams-grid-col {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}
@media (min-width: 992px) {
    .d2-exams-grid-col {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
    }
}
.d2-exam-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.d2-exam-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    border-color: #3b82f6;
}
.d2-exam-banner-wrap {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f1f5f9;
    position: relative;
}
.d2-exam-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.d2-exam-cat-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.d2-exam-cat-pill.bg-primary { background-color: #3b82f6 !important; }
.d2-exam-cat-pill.bg-success { background-color: #10b981 !important; }
.d2-exam-cat-pill.bg-info { background-color: #06b6d4 !important; }
.d2-exam-cat-pill.bg-warning { background-color: #f59e0b !important; }
.d2-exam-cat-pill.bg-danger { background-color: #ef4444 !important; }
.d2-exam-cat-pill.bg-secondary { background-color: #6366f1 !important; }
.d2-exam-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    margin-bottom: 15px;
    padding: 0 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.5rem;
}
.d2-exam-meta-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 0 5px;
}
.d2-exam-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
}
.d2-exam-meta-item i {
    color: #3b82f6;
}
.d2-exam-card-footer {
    margin-top: auto;
    padding: 15px 5px 5px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.d2-exam-price-tag {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
}
.d2-exam-price-tag.is-free {
    color: #10b981;
}
.d2-exam-btn {
    padding: 8px 18px;
    background: #0f172a;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}
.d2-exam-btn:hover {
    background: #3b82f6;
    color: #ffffff;
}
@media (max-width: 991px) {
    .d2-exams-premium-section { padding: 60px 0 30px; }
    .d2-exams-main-title { font-size: 2.2rem !important; }
}