/* Team Events page */

.event-card {
    display: flex;
    gap: 14px;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 14px;
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.12s;
}

.event-card:active {
    transform: scale(0.99);
}

.event-card__thumb {
    width: 88px;
    height: 88px;
    border-radius: 12px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px;
    font-size: 0.55rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.03em;
}

.event-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
}

.event-card__desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: auto;
}

.event-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.event-card__meta svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
}

/* Shared thumb styles */
.thumb--dark {
    background: #1c1c1e;
    color: #fff;
}

.thumb--dark-logo {
    background: #1c1c1e;
    color: #fff;
    font-size: 0.5rem;
}

.thumb--gradient-orange {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
}

.thumb--gradient-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
}

.thumb--gradient-green {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: #1c1c1e;
}

.thumb--stage {
    background: linear-gradient(160deg, #2d2d2d 0%, #0a0a0a 100%);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.feed-card__media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #2d2d2d 0%, #0a0a0a 100%);
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.2em;
}
