/* Banner Mini Edukasi - Satu Kolom */
.edu-banner-mini-single {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f7f0 100%);
    border: 1px solid #4CAF50;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.edu-banner-mini-single::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #45a049, #4CAF50);
}

.edu-banner-icon {
    margin-bottom: 20px;
}

.edu-banner-icon i {
    font-size: 3em;
    color: #4CAF50;
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
    border: 3px solid #e8f5e8;
}

.edu-banner-content-single h3 {
    color: #2d5016;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.edu-banner-content-single p {
    color: #555;
    line-height: 1.6;
    margin: 0 auto 25px auto;
    font-size: 1.05em;
    max-width: 800px;
}

.edu-banner-content-single strong {
    color: #4CAF50;
    font-weight: 700;
}

.edu-banner-actions-single {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.edu-banner-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 160px;
    justify-content: center;
}

.edu-banner-btn i {
    margin-right: 8px;
    font-size: 1.1em;
}

.edu-banner-btn.primary {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white!important;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.edu-banner-btn.primary:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(76, 175, 80, 0.4);
    color: white;
}

.edu-banner-btn.secondary {
    background: transparent;
    color: #4CAF50;
    border-color: #4CAF50;
}

.edu-banner-btn.secondary:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Responsive Design untuk Banner Satu Kolom */
@media only screen and (max-width: 768px) {
    .edu-banner-mini-single {
        padding: 25px 20px;
        margin: 25px 0;
    }
    
    .edu-banner-icon i {
        font-size: 2.5em;
        width: 70px;
        height: 70px;
    }
    
    .edu-banner-content-single h3 {
        font-size: 1.3em;
    }
    
    .edu-banner-content-single p {
        font-size: 1em;
    }
    
    .edu-banner-actions-single {
        gap: 12px;
    }
    
    .edu-banner-btn {
        padding: 10px 20px;
        font-size: 0.9em;
        min-width: 140px;
    }
}

@media only screen and (max-width: 480px) {
    .edu-banner-mini-single {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .edu-banner-icon i {
        font-size: 2em;
        width: 60px;
        height: 60px;
    }
    
    .edu-banner-content-single h3 {
        font-size: 1.2em;
        margin-bottom: 12px;
    }
    
    .edu-banner-content-single p {
        font-size: 0.9em;
        margin-bottom: 20px;
    }
    
    .edu-banner-actions-single {
        flex-direction: column;
        width: 90%;
    }
    
    .edu-banner-btn {
        width: 100%;
        min-width: auto;
    }
}