/* TM CMS component */
.trend-sec {
    /* padding: clamp(28px,3vw,48px) 0 */
    padding: 20px 0px;
}

/* ---------- TRENDING (horizontal scroll) ---------- */
.trend-h {
    font-family: 'Montserrat',sans-serif;
    font-weight: 800;
    font-size: clamp(15px,1.3vw,20px);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px
}

.trend-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px
}

.trend-scroll::-webkit-scrollbar {
    height: 6px
}

.trend-scroll::-webkit-scrollbar-track {
    background: transparent
}

.trend-scroll::-webkit-scrollbar-thumb {
    background: #2c2c2c;
    border-radius: 3px
}

.trend-item {
    flex: 0 0 25%;
    min-width: 320px;
    display: grid;
    grid-template-columns: auto 112px minmax(0,1fr);
    align-items: center;
    gap: 14px;
    padding-right: 26px;
    scroll-snap-align: start
}

.trend-num {
    font-family: 'Montserrat',sans-serif;
    font-weight: 800;
    font-size: clamp(28px,2.3vw,40px);
    color: #3a3a3a;
    line-height: 1;
    text-align: center
}

.trend-thumb {
    width: 112px;
    height: 64px;
    border-radius: 5px;
    background: linear-gradient(135deg,#2a2a2a,#161616);
    position: relative;
    overflow: hidden;
    flex: none
}

.trend-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%,rgba(255,255,255,.06),transparent 60%)
}

.trend-cat {
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px
}

.trend-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}
