.tnr-manager-block {
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    color: #f5f2ea;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.tnr-manager-block a {
    color: #ff9f1a;
}

.tnr-manager-meta {
    font-size: 0.85rem;
    color: rgba(245, 242, 234, 0.75);
    margin-bottom: 1.25rem;
}

.tnr-manager-notice {
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.tnr-manager-error {
    background: rgba(255, 101, 80, 0.1);
    border: 1px solid rgba(255, 101, 80, 0.4);
    color: #ffb2a1;
}

.tnr-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .tnr-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

.tnr-card {
    background: radial-gradient(circle at top right, rgba(255, 159, 26, 0.06), transparent 45%), #111216;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 1.5rem;
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

.tnr-card--draw {
    border-color: rgba(255, 100, 0, 0.35);
}

.tnr-card__header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.tnr-card__eyebrow {
    margin: 0 0 0.4rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
}

.tnr-card__title {
    margin: 0;
    font-size: 1.35rem;
    color: #ffffff;
}

.tnr-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    text-transform: capitalize;
    background: rgba(255, 255, 255, 0.08);
    color: #f5f5f5;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tnr-badge--open,
.tnr-badge--active,
.tnr-badge--live {
    background: rgba(255, 159, 26, 0.15);
    border-color: rgba(255, 159, 26, 0.45);
    color: #ffbe5c;
}

.tnr-badge--completed,
.tnr-badge--closed,
.tnr-badge--past {
    background: rgba(126, 255, 178, 0.12);
    border-color: rgba(126, 255, 178, 0.4);
    color: #8ef2be;
}

.tnr-badge--draft,
.tnr-badge--pending {
    background: rgba(255, 99, 99, 0.12);
    border-color: rgba(255, 99, 99, 0.35);
    color: #ffb0b0;
}

.tnr-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 1.5rem;
    margin-top: 1.25rem;
}

.tnr-meta__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.tnr-meta__value {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.tnr-grid--stats {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.tnr-stat-card {
    background: #0b0c10;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.25rem;
    text-align: center;
}

.tnr-stat-card__label {
    margin: 0 0 0.35rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tnr-stat-card__value {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ff9f1a;
}

.tnr-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tnr-timeline__item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tnr-timeline__item:last-child {
    border-bottom: 0;
}

.tnr-timeline__marker {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6400, #ff9f1a);
    margin-top: 0.45rem;
    box-shadow: 0 0 0 4px rgba(255, 100, 0, 0.15);
}

.tnr-timeline__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.tnr-timeline__subtitle {
    margin: 0.15rem 0;
    color: #ffbe7a;
    font-weight: 500;
}

.tnr-timeline__meta {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}
