/* Matches main footer public Signature Series strip (gold G, centered powered-by, series right) */
.sp-signature-strip {
    width: 100%;
    max-width: 560px;
}

.sp-signature-strip__line {
    height: 2px;
    margin-bottom: 0.45rem;
    background: linear-gradient(90deg,
        transparent 0%,
        #c49b61 25%,
        #e5c48a 50%,
        #c49b61 75%,
        transparent 100%);
    opacity: 0.9;
}

.sp-signature-strip__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.5rem 0.85rem;
}

.sp-signature-strip__mark {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    line-height: 0;
}

.sp-signature-strip__g {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    filter:
        drop-shadow(0 0 6px rgba(229, 196, 138, 0.4))
        drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.sp-signature-strip__powered,
.sp-signature-strip__series {
    margin: 0;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #c49b61;
}

.sp-signature-strip__powered {
    text-align: center;
    min-width: 0;
}

.sp-signature-strip__powered strong {
    font-weight: 700;
    color: inherit;
}

.sp-signature-strip__series {
    text-align: right;
    min-width: 0;
}

@media (max-width: 520px) {
    .sp-signature-strip {
        max-width: 100%;
    }

    .sp-signature-strip__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 0.4rem;
    }

    .sp-signature-strip__powered,
    .sp-signature-strip__series {
        text-align: center;
    }
}

/* Magazine / view-all footers — strip is last block under copyright & disclaimers */
.mag-footer-signature,
.va-footer-signature {
    margin-top: 1.15rem;
    width: 100%;
}

.mag-footer-signature .sp-signature-strip,
.va-footer-signature .sp-signature-strip {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
