.sf-entity-sparks {
    width: min(1120px, calc(100% - 32px));
    margin: 30px auto 56px;
    padding: 24px;
    box-sizing: border-box;
    border: 1px solid rgba(215, 182, 93, 0.28);
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(24, 29, 32, 0.98),
            rgba(8, 11, 14, 0.98)
        );
    color: #f5f3ea;
    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.24);
}

.sf-entity-sparks-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.sf-entity-sparks-header p {
    margin: 0 0 5px;
    color: #aaa89f;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.sf-entity-sparks-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.55rem, 4vw, 2.25rem);
    line-height: 1;
}

.sf-entity-sparks-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #d7b65d;
    font-size: 0.83rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.sf-entity-sparks-all:hover,
.sf-entity-sparks-all:focus-visible {
    color: #ffffff;
}

.sf-entity-sparks-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.sf-entity-spark {
    display: flex;
    min-height: 142px;
    flex-direction: column;
    padding: 16px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    color: inherit;
    text-decoration: none;
}

.sf-entity-spark:hover,
.sf-entity-spark:focus-visible {
    border-color: rgba(215, 182, 93, 0.62);
    background: rgba(215, 182, 93, 0.055);
}

.sf-entity-spark-label {
    color: #d7b65d;
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sf-entity-spark-label {
    display: flex;
    align-items: center;
    gap: 7px;
}

.sf-entity-spark-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 7px;
    border-radius: 999px;
    background: #d7b65d;
    color: #111418;
    font-size: 0.58rem;
    font-weight: 950;
    letter-spacing: 0.09em;
    line-height: 1;
}

.sf-entity-spark h3 {
    margin: 10px 0 18px;
    color: #ffffff;
    font-size: 0.98rem;
    line-height: 1.42;
}

.sf-entity-spark-calls {
    margin-top: auto;
    color: #d7b65d;
    font-size: 0.82rem;
    font-weight: 800;
}

.sf-entity-spark-calls small {
    margin-left: 4px;
    color: #8f8d86;
    font-size: 0.72rem;
    font-weight: 700;
}

.sf-entity-sparks-empty {
    padding: 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    color: #aaa89f;
    font-size: 0.9rem;
}

@media (max-width: 760px) {
    .sf-entity-sparks {
        width: calc(100% - 20px);
        margin: 20px auto 34px;
        padding: 18px;
    }

    .sf-entity-sparks-header {
        align-items: flex-start;
    }

    .sf-entity-sparks-grid {
        grid-template-columns: 1fr;
    }

    .sf-entity-spark {
        min-height: 0;
    }
}
