.editor-container{
max-width:1300px;
margin:auto;
padding:40px 30px;
}

.editor-layout{
display:grid;
grid-template-columns:2fr 1fr;
gap:30px;
align-items:start;
}

.editor-main{
display:flex;
flex-direction:column;
gap:20px;
}

.editor-sidebar{
position:sticky;
top:20px;
height:fit-content;
display:flex;
flex-direction:column;
gap:20px;
}

.editor-card{
background:white;
border-radius:12px;
padding:20px;
border:1px solid #e6ecef;
box-shadow:0 4px 14px rgba(0,0,0,0.04);
}

.editor-label{
display:block;
font-weight:600;
margin-bottom:10px;
color:#0D1321;
}

.editor-content textarea{
min-height:400px;
}

input,
select,
textarea{
width:100%;
padding:10px;
border-radius:8px;
border:1px solid #d6dde0;
font-size:14px;
}

textarea{
resize:vertical;
}

.form-group{
margin-bottom:15px;
}

.sidebar-card h4{
margin-bottom:15px;
font-size:15px;
color:#1D4C4F;
}

.publish-btn{
width:100%;
background:#28B67E;
color:white;
border:none;
padding:12px;
border-radius:8px;
font-size:15px;
cursor:pointer;
margin-top:10px;
}

.publish-btn:hover{
background:#1D4C4F;
}

