/* Category Page Styles */
.hero.is-info {
    background: linear-gradient(135deg, #28a745 0%, #218838 50%, #1e7e34 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(32, 156, 238, 0.35), 
                0 4px 12px rgba(13, 75, 138, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
}

.hero.is-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.hero.is-info:hover::before {
    left: 100%;
}

.category-main-title {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-weight: 700 !important;
    letter-spacing: -0.5px;
}

.title.is-3 {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
}

.category-description {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1rem;
}

.card {
    border-radius: 6px;
    box-shadow: 0 1px 10px rgba(10, 110, 209, 0.1);
    transition: transform 0.2s ease;
    border-top: 2px solid #28a745;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 15px rgba(10, 110, 209, 0.15);
}

.tag.is-info.is-light {
    background-color: #e3f2fd !important;
    color: #218838 !important;
}

.course-title {
    font-size: 1.5rem !important;
    line-height: 1.4;
    font-weight: 600;
    color: #374151;
}

.course-title a {
    color: #28a745;
}

.course-title a:hover {
    color: #1e7e34 !important;
}

.tag.is-info.is-light {
    background-color: #e8f4fd;
    padding: 0.25em 0.75em;
}

.columns {
    margin-top: -0.5rem;
}

.column {
    padding: 0.5rem;
}
