
.tracks {
    padding-top: 70px;
}

.app-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: 18px;
}

.app-link {
    padding: 0;
    margin: 0;
    text-decoration: none;
    color: inherit;
}

.appLogoContainer {
    flex: 0 0 auto;
    display: flex;
}

.appLogoContainer img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.appLogoContainer img.logo-randnom {
    width: 126px;
    height: 126px;
    margin: -8px;
}

.app-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.app-content .song-title {
    margin: 0;
    padding: 0;
}

.app-tagline {
    font-size: clamp(11px, 3.4vw, 15px);
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin: 8px 0 0 0;
    padding: 0;
}

.app-tag {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 14px 0 0 0;
    padding: 0;
}

.app-tag .spotlight {
    margin-right: 0;
    white-space: nowrap;
}

.name-chip {
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    color: #6e6e6e;
    letter-spacing: 0.5px;
    margin-left: 12px;
    padding: 0.1em 0.4em;
    border: 1px solid #cacaca;
    border-radius: 5px;
    background-color: #e1e1dd;
}

.app-description {
    margin-top: 24px;
}

.app-description>p {
    font-size: 13px;
    font-style: italic;
    color: #6e6e6e;
    line-height: 1.55;
    letter-spacing: normal;
    padding: 0;
    margin: 0 0 12px 0;
}

.app-description>p:last-of-type {
    margin-bottom: 0;
}

.app-description b {
    color: #4d4d4d;
}

.app-description.collapsed {
    position: relative;
}

.app-description.collapsed>p:not(:first-of-type) {
    display: none;
}

/* Teaser: the second paragraph's first line stays visible, clipped,
   with the fade laid over exactly that line — so the gradient starts
   where the next paragraph starts and the first stays fully legible. */
.app-description.collapsed>p:nth-of-type(2) {
    display: block;
    height: 1.6em;
    overflow: hidden;
}

.app-description.collapsed::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 56px;
    background: linear-gradient(
        to bottom,
        rgba(237, 237, 233, 0) 0%,
        rgba(237, 237, 233, 0.3) 40%,
        rgba(237, 237, 233, 0.85) 80%,
        rgba(237, 237, 233, 0.9) 100%
    );
    pointer-events: none;
}

.read-toggle {
    align-self: flex-start;
    margin-top: 10px;
    padding: 0;
    border: none;
    cursor: pointer;
    font-family: 'Roboto Mono', sans-serif;
    font-size: 12px;
    color: #6e6e6e;
    text-decoration: underline;
}

.app-entry .streaming-buttons-parent {
    margin-top: 30px;
    align-self: center;
}

.app-entry .streaming-buttons {
    display: inline-block;
}

.tracks .rule {
    margin-top: 35px;
    margin-bottom: 35px;
    border-bottom-color: #d6d6d2;
}

