.sfp-wrap {
    max-width: 980px;
    margin: 30px auto;
    font-family: inherit;
}
.sfp-card {
    background: #fff;
    border: 1px solid #e7e2d7;
    border-radius: 14px;
    padding: 26px;
    margin-bottom: 22px;
    box-shadow: 0 10px 28px rgba(0,0,0,.06);
}
.sfp-card h2,
.sfp-card h3 {
    margin-top: 0;
    color: #1e1e1e;
}
.sfp-form label {
    display: block;
    font-weight: 700;
    margin: 16px 0 7px;
}
.sfp-form input[type="text"],
.sfp-form input[type="password"],
.sfp-form input[type="file"],
.sfp-form select,
.sfp-form textarea {
    width: 100%;
    max-width: 100%;
    border: 1px solid #d8d2c4;
    border-radius: 9px;
    padding: 12px;
    font-size: 16px;
    background: #fff;
    box-sizing: border-box;
}
.sfp-form textarea {
    resize: vertical;
}
.sfp-checkbox {
    display: flex !important;
    gap: 8px;
    align-items: center;
    font-weight: 400 !important;
}
.sfp-button {
    display: inline-block;
    background: #b88a2d;
    color: #fff !important;
    border: 0;
    border-radius: 9px;
    padding: 12px 20px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none !important;
    transition: transform .15s ease, opacity .15s ease;
}
.sfp-button:hover {
    opacity: .92;
    transform: translateY(-1px);
}
.sfp-button-secondary {
    background: #f5f1e8;
    color: #3a3324 !important;
}
.sfp-alert {
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-weight: 600;
}
.sfp-alert-success {
    background: #e9f7ef;
    color: #176a37;
    border: 1px solid #b9e3c8;
}
.sfp-alert-error {
    background: #fff0f0;
    color: #9c2525;
    border: 1px solid #f0b6b6;
}
.sfp-editor-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 15px;
}
.sfp-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.sfp-actions {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.sfp-small {
    font-size: 13px;
    color: #6f685c;
}
.sfp-post-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sfp-post-list li {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee8dc;
}
.sfp-post-list li:last-child {
    border-bottom: 0;
}
.wp-editor-wrap {
    margin-top: 8px;
}
@media (max-width: 720px) {
    .sfp-card {
        padding: 18px;
    }
    .sfp-grid,
    .sfp-post-list li {
        grid-template-columns: 1fr;
    }
    .sfp-editor-header {
        flex-direction: column;
    }
}
