
.hub-hero {
    max-width: 1200px;
    margin: 64px auto 48px;
    padding: 0 48px;
    text-align: left;
}
.hub-hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
    line-height: 1.18;
}
.hub-hero-sub {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.4;
}
.topic-section {
    max-width: 1200px;
    margin: 48px auto 56px;
    padding: 0 48px;
}
.topic-title {
    font-size: 30px;
    font-weight: 700;
    color: #0F172A;
    margin-top: 48px;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}
.topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 28px;
    max-width: 1200px;
}
/* --- CARD DESIGN --- */
.module-card {
    background: #E7F0FF;
    border: 1px solid #C2D1FF;
    border-radius: 18px;
    padding: 32px 28px 36px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    transition: all 0.18s ease;
    animation: fadeInCard 0.18s ease;
    position: relative;
    min-height: 160px;
    max-height: 180px;
    color: #0F172A;
}
.module-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
    transition: all 0.18s ease;
}
.module-card--prototype {
    border-color: #f97316;
}
/* --- BADGE --- */
.badge-prototype {
    display: inline-block;
    position: absolute;
    top: 8px;
    left: 8px;
    background: #FFE9C7;
    color: #8A3C00;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0;
    z-index: 2;
    box-shadow: none;
    min-width: unset;
    max-width: 120px;
}
/* --- TYPOGRAFIE --- */
.module-title {
    font-size: 22px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}
.module-alias {
    font-size: 14px;
    color: #5C6B86;
    margin-bottom: 16px;
}
/* --- CTA --- */
.card-cta {
    margin-top: auto;
    margin-bottom: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    color: #2454D8;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.18s ease;
}
.card-cta:hover {
    color: #1E40AF;
}
/* --- SECTIONS / SPACING --- */
.topic-section {
    max-width: 1200px;
    margin-top: 48px;
    margin-bottom: 56px;
    padding: 0 48px;
}
.topic-section {
    max-width: 1200px;
    margin-top: 56px;
    margin-bottom: 48px;
    padding: 0 48px;
}
.topic-title {
    font-size: 30px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    border-bottom: 2px solid #C2D1FF;
    padding-bottom: 6px;
}
.topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 32px;
    max-width: 1200px;
    margin-bottom: 56px;
}
    color: #64748B;
}
@keyframes fadeInCard {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: none; }
}
@media (max-width: 1280px) {
    .topic-grid {
        grid-template-columns: repeat(4, minmax(0,1fr));
    }
}
@media (max-width: 1024px) {
    .topic-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}
@media (max-width: 768px) {
    .hub-hero, .topic-section {
        padding: 0 16px;
    }
    .topic-title {
        font-size: 22px;
    }
    .module-title {
        font-size: 17px;
    }
    .topic-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}
@media (max-width: 500px) {
    .topic-grid {
        grid-template-columns: 1fr;
    }
}
