/* =========================
   Spotlight Feed (전체보기 전용)
========================= */

.spotlight-feed {
    background: #26272B;
    border-radius: 16px;
    padding: 28px 32px;
    color: #fff;
}

/* TITLE */
.spotlight-feed__heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* LIST */
.spotlight-feed__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ITEM */
.spotlight-feed__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
}

.spotlight-feed__item + .spotlight-feed__item {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* INDEX */
.spotlight-feed__index {
    width: 24px;
    font-size: 28px;
    font-weight: 800;
    color: #5B5B60;
    flex-shrink: 0;
}

/* CONTENT */
.spotlight-feed__content {
    flex: 1;
    min-width: 0;
}

/* TITLE */
.spotlight-feed__title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    line-height: 1.45;
    word-break: keep-all;
}

/* META WRAP */
.spotlight-feed__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

/* AVATAR */
.spotlight-feed__avatar img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #ea541a;
    flex-shrink: 0;
    overflow: hidden;
}

/* AUTHOR INFO */
.spotlight-feed__author {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.spotlight-feed__name {
    font-weight: 600;
    color: #fff;
}

.spotlight-feed__org {
    color: rgba(255, 255, 255, 0.75);
}

.spotlight-feed__role {
    color: rgba(255, 255, 255, 0.55);
}

/* SEPARATORS */
.spotlight-feed__org::before,
.spotlight-feed__role::before {
    content: '|';
    margin: 0 4px;
    color: rgba(255, 255, 255, 0.35);
}

/* EMPTY */
.spotlight-feed__empty {
    padding: 24px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* MORE BUTTON */
.spotlight-feed__more {
    margin-top: 22px;
    width: 100%;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spotlight-feed__more:hover {
    background: rgba(255, 255, 255, 0.06);
}

/* DISABLED */
.spotlight-feed__more.is-disabled,
.spotlight-feed__more:disabled {
    opacity: 0.5;
    cursor: default;
    background: transparent;
}

/* LINK */
.spotlight-feed__link {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

@media(max-width:960px){
    .spotlight-feed{
        padding: 18px 24px;
    }

    .spotlight-feed__title{
        font-size: 14px;
    }

    .spotlight-feed__index{
        font-size: 24px;
    }
}