/**
 * Thylink Events — Front-end Styles
 * Editorial date layout matching the Thylink profile design.
 */

.thylink-events {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.thylink-events__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ── Individual event card ───────────────────────────── */
.thylink-event {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.thylink-event:last-child {
    border-bottom: none;
}

/* ── Date block ──────────────────────────────────────── */
.thylink-event__date {
    flex-shrink: 0;
    width: 3.5rem;
    text-align: center;
}

.thylink-event__day {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: #0d9488;
}

.thylink-event__month {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #5eead4;
    margin-top: .25rem;
}

/* ── Info block ──────────────────────────────────────── */
.thylink-event__info {
    flex: 1;
    min-width: 0;
    padding-top: .15rem;
}

.thylink-event__title {
    margin: 0 0 .25rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: #1f2937;
}

.thylink-event__title a {
    color: inherit;
    text-decoration: none;
    transition: opacity .15s ease;
}

.thylink-event__title a:hover {
    opacity: .7;
}

.thylink-event__location {
    font-size: .8rem;
    color: #6b7280;
    margin-bottom: .35rem;
}

.thylink-event__location::before {
    content: '📍 ';
}

.thylink-event__description {
    font-size: .85rem;
    color: #6b7280;
    line-height: 1.5;
    margin-top: .35rem;
}

.thylink-event__link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: .5rem;
    font-size: .75rem;
    font-weight: 500;
    padding: .3rem .75rem;
    border-radius: 9999px;
    border: 1px solid rgba(13, 148, 136, .25);
    background: rgba(13, 148, 136, .06);
    color: #0d9488;
    text-decoration: none;
    transition: all .15s ease;
}

.thylink-event__link:hover {
    background: rgba(13, 148, 136, .12);
    color: #0d9488;
}

/* ── Empty state ─────────────────────────────────────── */
.thylink-events__empty {
    text-align: center;
    padding: 2rem 1rem;
    color: #9ca3af;
    font-size: .9rem;
}
