.fule-edu-cards {
    --fec-brand: var(--tb--main, #ff5722);
    --fec-brand-dark: #e64a19;
    --fec-brand-deep: #d84315;
    --fec-brand-soft: #fff3ee;
    --fec-ink: #2b211c;
    --fec-muted: #7a6a63;
    --fec-faint: #a09088;
    --fec-line: #f0d9d0;
    --fec-line-soft: #f6e8e2;
    --fec-paper: #ffffff;
    --fec-radius: 10px;
    --fec-card: 224px;
    --fec-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --fec-shadow-sm: 0 1px 2px rgba(43, 33, 28, 0.05);
    --fec-shadow: 0 8px 22px rgba(255, 87, 34, 0.12);
    box-sizing: border-box;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 1.25em 0;
    clear: both;
    color: var(--fec-ink);
    font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}
.fule-edu-cards *,
.fule-edu-cards *::before,
.fule-edu-cards *::after {
    box-sizing: border-box;
}
.article-content .fule-edu-cards__heading,
.fule-edu-cards__heading {
    margin: 0 0 12px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--fec-ink);
}
.fule-edu-cards--single .fule-edu-cards__heading {
    text-align: center;
}
.fule-edu-cards__grid {
    display: grid;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    grid-template-columns: repeat(2, minmax(0, var(--fec-card)));
}
.fule-edu-cards[data-cols="1"] .fule-edu-cards__grid {
    grid-template-columns: minmax(0, var(--fec-card));
}
@media (min-width: 960px) {
    .fule-edu-cards[data-cols="3"] .fule-edu-cards__grid {
        grid-template-columns: repeat(3, minmax(0, var(--fec-card)));
    }
    .fule-edu-cards[data-cols="4"] .fule-edu-cards__grid {
        grid-template-columns: repeat(4, minmax(0, var(--fec-card)));
    }
}
.fule-edu-cards--single .fule-edu-cards__grid,
.fule-edu-cards--single[data-cols="1"] .fule-edu-cards__grid,
.fule-edu-cards--single[data-cols="2"] .fule-edu-cards__grid,
.fule-edu-cards--single[data-cols="3"] .fule-edu-cards__grid,
.fule-edu-cards--single[data-cols="4"] .fule-edu-cards__grid {
    grid-template-columns: minmax(0, var(--fec-card));
}

.fule-edu-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: var(--fec-card);
    min-height: 100%;
    overflow: hidden;
    background: var(--fec-paper);
    border: 1px solid var(--fec-line-soft);
    border-radius: var(--fec-radius);
    box-shadow: var(--fec-shadow-sm);
    transition: transform .25s var(--fec-ease), box-shadow .25s var(--fec-ease);
}
.fule-edu-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--fec-shadow);
}
.fule-edu-card__cover {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
    overflow: hidden;
    background-color: #ffe0d4;
    background-image: linear-gradient(145deg, #fff3ee 0%, #ffccbc 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none !important;
    transition: transform .35s var(--fec-ease);
}
.fule-edu-card.has-cover:hover .fule-edu-card__cover {
    transform: scale(1.03);
}
.fule-edu-card__cover img {
    display: none !important;
}
.fule-edu-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--fec-brand-deep);
}
.fule-edu-card__badges {
    position: absolute;
    z-index: 1;
    top: 7px;
    left: 7px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.fule-edu-card__badge {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    background: rgba(255, 87, 34, 0.92);
    backdrop-filter: blur(4px);
}
.fule-edu-card__badge--featured {
    background: rgba(43, 33, 28, 0.72);
}
.article-content .fule-edu-cards h3,
.article-content .fule-edu-cards p,
.fule-edu-cards h3,
.fule-edu-cards p {
    margin: 0;
    padding: 0;
}
.fule-edu-card__top {
    padding: 8px 10px 0;
    flex: 1;
}
.fule-edu-card__title {
    margin: 0 0 3px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--fec-ink);
}
.fule-edu-card__summary {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: var(--fec-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fule-edu-card__prices {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    margin: 6px 0 0;
}
.fule-edu-card__pill {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    background: var(--fec-brand-soft);
    color: var(--fec-brand-deep);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}
.fule-edu-card__origin {
    font-size: 11px;
    color: var(--fec-faint);
}
.fule-edu-card__meta {
    margin: 4px 0 0;
    font-size: 11px;
    font-weight: 600;
    color: var(--fec-faint);
}
.fule-edu-card__foot {
    padding: 8px 10px 10px;
    margin-top: 0;
}
.fule-edu-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff7043 0%, var(--fec-brand) 100%);
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none !important;
    box-shadow: 0 6px 14px rgba(255, 87, 34, 0.28);
    transition: transform .2s var(--fec-ease), background .2s;
}
.fule-edu-card__cta:hover {
    background: linear-gradient(180deg, var(--fec-brand) 0%, var(--fec-brand-dark) 100%);
    color: #fff !important;
    transform: translateY(-1px);
}
