.dedications-section {
    margin: 22px 0 5px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.dedications-track {
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    background: rgba(30, 30, 34, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* bez ovoga, drag na ivici trake "iscuri" u horizontalni scroll cele stranice na mobilnom (iOS Safari).
       touch-action mora dozvoliti i pan-y, inace vertikalni swipe (skrol cele stranice) prestaje da radi
       cim prst krene preko ove trake - "pan-x" sam je bio prestrog i to je lomio. */
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
}

.dedications-track::-webkit-scrollbar {
    display: none;
}

.dedications-track.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.dedications-track-inner {
    display: flex;
    width: max-content;
}

.dedications-group {
    display: flex;
}

.dedication-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color: #e6e6e6;
    font-size: 1.02rem;
    padding: 0 34px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.dedication-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: #d85a30;
}

.dedications-cta {
    flex: 0 0 auto;
    color: #f0997b;
    font-size: 0.98rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(216, 90, 48, 0.4);
    border-radius: 999px;
    padding: 10px 19px;
    white-space: nowrap;
}

.dedications-cta:hover {
    background: rgba(216, 90, 48, 0.12);
}

@media (max-width: 600px) {
    .dedications-section {
        flex-direction: column;
        align-items: stretch;
    }
    .dedications-cta {
        text-align: center;
    }
}
