.psa-moldura-editor {
    max-width: 620px;
    margin: 30px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.psa-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.psa-controls input[type="file"],
.psa-controls button {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #d9d9d9;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
}

.psa-controls button {
    background: #0d6efd;
    color: #fff;
    border: none;
}

.psa-controls button:hover {
    opacity: 0.94;
}

.psa-editor-note {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f5f8ff;
    font-size: 14px;
    color: #1e2a3a;
}

.psa-canvas-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #e5e5e5;
    background: #f3f3f3;
}

.psa-canvas {
    width: 100%;
    height: auto;
    display: block;
    cursor: grab;
    touch-action: none;
}

.psa-canvas:active {
    cursor: grabbing;
}

.psa-event-page {
    max-width: 1100px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(320px, 1fr);
    gap: 24px;
    align-items: start;
}

.psa-event-description {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

.psa-event-description h1,
.psa-event-description h2,
.psa-event-description h3 {
    margin-top: 0;
}

@media (max-width: 900px) {
    .psa-event-page {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .psa-moldura-editor {
        padding: 14px;
        margin: 20px auto;
    }

    .psa-controls {
        flex-direction: column;
    }

    .psa-controls input[type="file"],
    .psa-controls button {
        width: 100%;
    }
}
