.tc-grid-76c3802a {
    display: grid;
    grid-template-columns: repeat(var(--tc-cols, 3), 1fr);
    gap: 24px;
}

.tc-card-76c3802a {
    background: #fff;
    border-radius: 4px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    border: 1px solid #f2f2f2;
}

.tc-thumb-wrap-76c3802a {
    margin: -24px -24px 20px -24px;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

.tc-thumbnail-76c3802a {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 220px;
    display: block;
}

.tc-card-header-76c3802a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.tc-tag-76c3802a {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
}
.tc-tag-blue { background: #EAF3FF; color: #1E70E5; }
.tc-tag-yellow { background: #FFF4D9; color: #B38600; }
.tc-tag-green { background: #E6FFED; color: #108043; }

.tc-duration-76c3802a {
    font-size: 13px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.tc-title-76c3802a {
    font-size: 18px;
    font-weight: 700;
    color: #1a2b49;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.tc-desc-76c3802a {
    font-size: 14px;
    color: #88929c;
    line-height: 1.6;
    margin-bottom: 25px;
}

.tc-footer-76c3802a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f2f2f2;
    padding-top: 20px;
}

.tc-btn-76c3802a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.tc-btn-dark { background: #1a2b49; color: #fff; }
.tc-btn-dark:hover { background: #0f1a2e; color: #fff; }
.tc-btn-orange { background: #f39c12; color: #fff; }
.tc-btn-orange:hover { background: #d68910; color: #fff; }
.tc-btn-outline { background: transparent; color: #88929c; padding: 10px 0; }
.tc-btn-outline:hover { color: #1a2b49; }

@media (max-width: 991px) {
    .tc-grid-76c3802a {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 767px) {
    .tc-grid-76c3802a {
        grid-template-columns: 1fr !important;
    }
}