

.post-wrapper{
    min-height:calc(100vh - 160px);
    display:flex;
    justify-content:center;
    padding:40px 16px;
}

.post-card{
    width:100%;
    max-width:820px;
    background:var(--post-bg);
    border:1px solid var(--post-border);
    border-radius:18px;
    padding:28px;
    animation:fadeUp .4s ease;
}

.post-image{
    width:100%;
    max-height:420px;
    object-fit:cover;
    border-radius:14px;
    margin-bottom:24px;
}

.post-title{
    font-size:30px;
    margin-bottom:20px;
    color:var(--post-text);
}

.post-content{
    font-size:16px;
    line-height:1.8;
    opacity:.9;
    color:var(--post-text);
}

/* MOBİL */
@media (max-width:768px){
    .post-card{
        padding:20px;
    }

    .post-title{
        font-size:22px;
    }
}

@keyframes fadeUp{
    from{opacity:0; transform:translateY(20px);}
    to{opacity:1; transform:translateY(0);}
}

.actions{
    display:flex;
    gap:10px;
    align-items:center;
}

.edit-btn{
    padding:6px 12px;
    border-radius:8px;
    background:var(--accent);
    color:#fff;
    text-decoration:none;
    font-size:13px;
}
