@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .judul-materi {
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}
.logo-area {
    display: flex;
    align-items: center;
}

.main-logo {
    height: 50px; 
    width: auto;  
    display: block;
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05); 
}

/* Penyesuaian untuk Mobile */
@media (max-width: 768px) {
    .main-logo {
        height: 40px; 
    }
}

.rasvara-chapter-header {
    background: #f7f9fa;
    padding: 12px 20px;
    font-weight: 700;
    border-top: 1px solid #d1d7dc;
    border-bottom: 1px solid #d1d7dc;
    color: #2d2f31;
}

.row-open .dashicons-controls-play {
    color: #bb0d0d;
}

.row-locked {
    background-color: #f9f9f9;
    cursor: not-allowed;
}

.row-locked .dashicons-lock {
    color: #b5b5b5;
}

.learn-page-layout {
    max-width: 1100px;
    margin: 70px auto;
    padding: 0 15px;
}

.chapter-header {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-left: 12px;
    border-left: 4px solid red;
    color: #2d2f31;
}