/* Main Content */
.class-details-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 3rem;
}
        
/* Class Info Card */
.class-info-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.class-header {
    background-color: var(--dark-blue);
    color: white;
    padding: 25px;
    position: relative;
}

.class-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
        
.class-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.class-code {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.class-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
}

.meta-item i {
    margin-right: 8px;
    color: var(--secondary);
}

.class-body {
    padding: 25px;
}

.class-title {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.class-description {
    margin-bottom: 25px;
    line-height: 1.7;
}        
        
/* Syllabus */
.syllabus-list {
    list-style: none;
}

.syllabus-item {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.syllabus-item::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success);
}
        
        
/* Grading */
.grading {
    display: grid;
    grid-template-columns: 35% 30% 35%;
    width: 100%;
}

.grading div{
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.grading .heading {
    background-color: #f8f9fa;
    font-weight: 600;
    color: var(--dark-blue);
}

.grading-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.grading-table th, .grading-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.grading-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: var(--primary);
}

.grading-table tr:last-child td {
    border-bottom: none;
}        

/* CTA Section */
.cta-section {
    background-color: var(--dark-blue);
    color: white;
    padding: 3rem 0;
    margin-top: 3rem;
    text-align: center;
    border-radius: 10px;
}

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background-color: var(--gold);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #c19a2b;
    transform: translateY(-3px);
}