/* SG Trend Radar (ported from sblog-slanggenz .trend-section) */

.sg-section-head {
    margin-bottom: 32px;
    text-align: left;
}

.sg-section-title {
    margin: 12px 0 6px;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--sg-text);
    line-height: 1.1;
}

.sg-section-sub {
    margin: 0;
    color: var(--sg-muted);
    font-size: 14px;
}

.sg-trend-radar {
    width: min(1180px, calc(100% - 40px));
    margin: 100px auto 60px;
}

.sg-trend-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    align-items: start;
}

@media (max-width: 900px) {
    .sg-trend-grid {
        grid-template-columns: 1fr;
    }
}

/* Feature card */
.sg-trend-feature {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 26px;
    border-radius: 22px;
    background: color-mix(in srgb, var(--sg-card) 92%, transparent);
    border: 1px solid var(--sg-line);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
    overflow: hidden;
}

.sg-trend-feature-art {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sg-pink), var(--sg-blue));
    display: grid;
    place-items: center;
}

.sg-trend-feature-img {
    position: absolute;
    inset: 0;
}

.sg-trend-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sg-trend-bubble {
    position: relative;
    z-index: 1;
}

.sg-trend-chat-bubble {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 22px 22px 22px 6px;
    background: var(--sg-bg);
    color: var(--sg-lime);
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .34);
}

.sg-trend-feature-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sg-trend-date {
    font-size: 12px;
    color: var(--sg-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}

.sg-trend-feature-title {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: var(--sg-text);
    line-height: 1.2;
}

.sg-trend-feature-excerpt {
    margin: 0;
    color: var(--sg-muted);
    font-size: 14px;
    line-height: 1.6;
}

.sg-trend-feature-cta {
    display: inline-flex;
    align-self: flex-start;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--sg-lime);
    color: #0c0d0a;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.sg-trend-feature-cta:hover {
    transform: translateX(2px);
    box-shadow: 0 8px 24px rgba(199, 255, 74, .3);
}

/* Ranked list */
.sg-trend-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    counter-reset: sg-rank;
}

.sg-trend-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
    background: color-mix(in srgb, var(--sg-card) 80%, transparent);
    border: 1px solid var(--sg-line);
    transition: all 220ms ease;
}

.sg-trend-item:hover {
    border-color: var(--sg-pink);
    transform: translateX(4px);
}

.sg-trend-rank {
    font-size: 32px;
    font-weight: 900;
    color: var(--sg-pink);
    line-height: 1;
    flex-shrink: 0;
    font-feature-settings: "tnum" 1;
}

.sg-trend-item-body {
    flex: 1;
    min-width: 0;
}

.sg-trend-item-title {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    color: var(--sg-text);
    line-height: 1.3;
}

.sg-trend-item-title a {
    color: inherit;
    text-decoration: none;
}

.sg-trend-item-title a:hover {
    color: var(--sg-lime);
}

.sg-trend-item-excerpt {
    margin: 0;
    color: var(--sg-muted);
    font-size: 13px;
    line-height: 1.5;
}
