.esp-agenda-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.esp-session-card {
    position: relative;
    border: 1px solid #ddd;
    padding: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    transition: box-shadow .2s ease;
}

.esp-session-card:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,.1);
}

.esp-card-media img {
    width: 100%;
    display: block;
    height: 150px;
    object-fit: cover;
}

.esp-live-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e02424;
    color: #fff;
    font-size: .75rem;
    padding: .25rem .6rem;
    border-radius: 99px;
}

.esp-card-body {
    padding: 1rem;
}

.esp-session-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.esp-card-body header,
.esp-video-content {
    position: relative;
    z-index: 2;
}

.esp-favorite-button {
    border: none;
    background: #2f80ed;
    color: #fff;
    padding: .5rem 1rem;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
}

.esp-favorite-button.is-favorited {
    background: #0f9d58;
}

.esp-countdown {
    font-size: .85rem;
    margin-top: .5rem;
    color: #555;
}

.esp-video-hub-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.esp-video-card {
    border: 1px solid #eee;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.esp-video-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.esp-video-content {
    padding: 1rem;
}

.esp-video-watch,
.esp-live-chat,
.esp-session-video-link {
    display: inline-block;
    margin-top: .5rem;
    padding: .45rem 1rem;
    border-radius: 999px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    font-size: .9rem;
}

.esp-session-detail {
    border: 1px solid #ddd;
    padding: 1.5rem;
    border-radius: 10px;
    background: #fff;
}

.esp-session-detail-header {
    display: grid;
    gap: .5rem;
    margin-bottom: 1rem;
}

.esp-session-video iframe {
    width: 100%;
    min-height: 420px;
}

.esp-premiere-detail,
.esp-session-restricted,
.esp-session-state {
    border: 1px solid #f1c40f;
    padding: 1rem;
    border-radius: 6px;
    background: #fffbe6;
    color: #333;
    font-weight: 600;
}

.esp-session-state-restricted {
    border-color: #e67e22;
    background: #fff4e5;
}
