.edit-post-page {
    max-width: 760px;
}

.edit-post-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 30px;
}

.edit-post-card label {
    font-size: 18px;
}

.edit-post-card textarea {
    width: 100%;
    min-height: 190px;
    padding: 20px;
    resize: vertical;
    box-shadow: none;
}

.readonly-images-section {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.readonly-images-section h2 {
    margin: 0 0 4px;
    font-size: 22px;
    color: var(--blue);
}

.readonly-images-section p {
    color: var(--muted);
    margin: 0 0 16px;
}

.edit-post-actions {
    display: flex;
    gap: 12px;
    margin-top: 26px;
}

.icon-link-button {
    display: inline-flex;
    align-items: center;
}

@media (max-width: 700px) {
    .edit-post-card {
        padding: 22px;
    }

    .edit-post-actions {
        flex-direction: column;
    }

    .edit-post-actions .btn {
        width: 100%;
    }
}
