.sunlight-sif {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    font-family: inherit;
    color: #111827;
}

.sunlight-sif__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 34px;
}

.sunlight-sif__title {
    margin: 0;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.2;
    font-weight: 700;
}

.sunlight-sif__viewall {
    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-decoration: none;
    color: inherit;
    white-space: nowrap;
}

.sunlight-sif__profile {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin: 0 0 18px;
}

.sunlight-sif__avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
}

.sunlight-sif__profile-content {
    flex: 1;
    min-width: 0;
}

.sunlight-sif__profile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 6px;
}

.sunlight-sif__username {
    color: inherit;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.sunlight-sif__follow,
.sunlight-sif__load {
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}

.sunlight-sif__load.elementor-button {
    border: 0;
}

.sunlight-sif__counts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 7px;
    font-size: 13px;
}

.sunlight-sif__bio {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
}

.sunlight-sif__grid {
    display: grid;
    grid-template-columns: repeat(var(--sunlight-sif-columns, 3), minmax(0, 1fr));
    gap: 6px;
}

.sunlight-sif__item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 1 / 1;
    background: #f3f4f6;
}

.sunlight-sif__item img,
.sunlight-sif__video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.sunlight-sif__item img {
    transition: transform .25s ease, opacity .25s ease;
}

.sunlight-sif__item:hover img {
    transform: scale(1.04);
    opacity: .92;
}

.sunlight-sif__item--video {
    background: #000;
}

.sunlight-sif__video {
    border: 0;
    outline: none;
    background: #000;
}

.sunlight-sif__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #111827;
    font-size: 12px;
    font-weight: 700;
    pointer-events: none;
}

.sunlight-sif__item.sunlight-sif__item--hidden {
    display: none !important;
}

.sunlight-sif__load-wrap {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.sunlight-sif-notice {
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #111827;
    padding: 14px 16px;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .sunlight-sif {
        max-width: 100%;
    }

    .sunlight-sif__topbar {
        margin-bottom: 22px;
    }

    .sunlight-sif__profile {
        gap: 12px;
    }

    .sunlight-sif__avatar {
        width: 58px;
        height: 58px;
    }

    .sunlight-sif__profile-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .sunlight-sif__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}