/* Universal Inline Score Widget
   Matches blog-inline-cta styling but adds drag-drop zone */

.inline-score-widget {
    margin: 28px 0 36px;
}

.isw-dropzone {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.04));
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 12px;
    padding: 20px 24px;
    transition: border-color 0.2s, background 0.2s;
}

.isw-dropzone--active {
    border-color: var(--accent-primary, #ff8a4c);
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.18), rgba(245, 158, 11, 0.08));
    border-style: dashed;
}

.isw-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255, 138, 76, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary, #ff8a4c);
}

.isw-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.isw-copy strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary, #e5e7eb);
    line-height: 1.3;
}

.isw-copy span {
    font-size: 0.875rem;
    color: var(--text-secondary, #9ca3af);
    line-height: 1.4;
}

.isw-btn {
    flex-shrink: 0;
    padding: 12px 20px;
    background: var(--accent-primary, #ff8a4c);
    color: #000;
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.isw-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 138, 76, 0.3);
    color: #000;
}

.isw-hint {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted, #6b7280);
    margin-top: 8px;
}

/* Stack on small screens */
@media (max-width: 480px) {
    .isw-dropzone {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 16px;
    }

    .isw-copy {
        align-items: center;
        gap: 6px;
    }

    .isw-hint {
        display: none;
    }
}
