.ts-hero {
    background: linear-gradient(135deg, #0a2e5c, #1f6290);
    color: #fff;
    padding: 3rem 0;
}

.ts-hero h1 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.75rem);
}

.ts-hero p {
    margin: 0.75rem 0 0;
    color: rgba(255, 255, 255, 0.88);
    max-width: 44rem;
}

.ts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.ts-card {
    border: 1px solid #d8e1ec;
    border-radius: 12px;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(14, 31, 61, 0.08);
}

.ts-card__meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.65rem;
}

.ts-card__date,
.ts-card__time {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #eef4fb;
    color: #214364;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 0.2rem 0.55rem;
}

.ts-card__title {
    margin: 0;
    font-size: 1.25rem;
}

.ts-card__description {
    color: #576d87;
    margin: 0.5rem 0 0;
}

.ts-card__actions {
    margin: 0.8rem 0 0;
}

.ts-empty {
    border: 1px dashed #b8c6d9;
    border-radius: 12px;
    background: #fff;
    color: #365275;
    text-align: center;
    padding: 2rem 1rem;
}

@media (max-width: 1080px) {
    .ts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .ts-grid {
        grid-template-columns: 1fr;
    }
}

