/* "Hear it live" strip -- same green-tint pill family as the
   streams.fortepiano.me "Watch" buttons and the fortepiano.me nav pill
   added in round 1, for visual consistency across both sites. */

.hil-strip {
    margin: 0 0 20px;
    padding: 12px 14px;
    background: #E8F5EE;
    border: 1px solid #C9E8D6;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.hil-strip__heading {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    font-weight: 700;
    font-size: 0.82rem;
    color: #14532d;
}

.hil-strip__heading .hil-strip__lang-ru::before {
    content: "/ ";
}

.hil-strip__play {
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #1FA363;
    position: relative;
}

.hil-strip__play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 56%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #fff;
}

/* Both the always-visible rows and the collapsible "more" rows share this
   same two-column grid, so dates and Watch links line up in a column across
   every row, not just within a single flex row. */
.hil-strip__rows,
.hil-strip__more {
    display: grid;
    grid-template-columns: minmax(9em, max-content) auto;
    column-gap: 14px;
    row-gap: 3px;
    align-items: baseline;
}

.hil-strip__more {
    display: none;
    margin-top: 3px;
}

.hil-strip--multi.is-expanded .hil-strip__more {
    display: grid;
}

.hil-strip__date {
    color: #14532d;
    font-weight: 600;
}

.hil-strip__cta {
    font-weight: 700;
    font-size: 0.85rem;
    color: #1FA363;
    text-decoration: none;
    white-space: nowrap;
}

.hil-strip__cta:hover {
    text-decoration: underline;
}

.hil-strip__count {
    display: block;
    margin-top: 6px;
    border: none;
    background: transparent;
    color: #1FA363;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 2px 0;
    cursor: pointer;
}

.hil-strip__count:hover {
    text-decoration: underline;
}

.hil-strip__count--less {
    display: none;
}

.hil-strip--multi.is-expanded .hil-strip__count--more {
    display: none;
}

.hil-strip--multi.is-expanded .hil-strip__count--less {
    display: block;
}
