.v30-social{
    width:min(1180px,calc(100% - 32px));
    margin:40px auto 140px;
}

.v30-social-head{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:18px;
}

.v30-social-head h2{
    margin:0;
    font-size:clamp(30px,5vw,52px);
    letter-spacing:-.055em;
}

.v30-social-head p{
    margin:5px 0 0;
    color:#77716b;
}

.v30-moment-create{
    border:0;
    border-radius:18px;
    padding:13px 17px;
    background:#171614;
    color:white;
    cursor:pointer;
    font-weight:800;
}

.v30-feed{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
}

.v30-empty,
.v30-moment{
    border-radius:28px;
    border:1px solid rgba(20,18,16,.08);
    background:white;
    padding:22px;
}

.v30-empty{
    grid-column:1/-1;
    color:#77716b;
}

.v30-moment{
    min-height:220px;
    display:flex;
    flex-direction:column;
    box-shadow:0 10px 35px rgba(33,27,23,.04);
    transition:
        transform .16s ease,
        box-shadow .16s ease;
}

.v30-moment:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 50px rgba(33,27,23,.10);
}

.v30-moment-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
}

.v30-live-tag{
    padding:6px 9px;
    border-radius:999px;
    background:#f0ede7;
    font-size:9px;
    font-weight:900;
}

.v30-live-tag.live{
    background:#de4f3e;
    color:white;
}

.v30-moment time{
    color:#9a958e;
    font-size:9px;
}

.v30-moment h3{
    margin:28px 0 7px;
    font-size:23px;
    letter-spacing:-.04em;
}

.v30-moment p{
    margin:0;
    color:#77716b;
    line-height:1.5;
}

.v30-actions{
    margin-top:auto;
    padding-top:20px;
    display:flex;
    gap:7px;
    flex-wrap:wrap;
}

.v30-actions button{
    border:0;
    border-radius:14px;
    background:#f1eee8;
    padding:8px 10px;
    cursor:pointer;
    font-size:11px;
}

.v30-actions .share{
    margin-left:auto;
}

.v30-create-modal{
    position:fixed;
    inset:0;
    z-index:1300;
    display:none;
    align-items:center;
    justify-content:center;
    padding:18px;
    background:rgba(20,17,15,.32);
    backdrop-filter:blur(14px);
}

.v30-create-modal.open{
    display:flex;
}

.v30-create-card{
    width:min(520px,100%);
    border-radius:30px;
    padding:24px;
    background:#fffaf4;
    box-shadow:0 35px 100px rgba(30,25,21,.30);
}

.v30-create-card h3{
    margin:0 0 18px;
    font-size:30px;
    letter-spacing:-.045em;
}

.v30-create-card input,
.v30-create-card textarea{
    width:100%;
    border:1px solid rgba(20,18,16,.08);
    border-radius:17px;
    padding:13px;
    background:white;
    outline:0;
}

.v30-create-card textarea{
    min-height:100px;
    resize:vertical;
    margin-top:9px;
}

.v30-create-buttons{
    display:flex;
    justify-content:flex-end;
    gap:8px;
    margin-top:13px;
}

.v30-create-buttons button{
    min-height:44px;
    padding:0 15px;
    border:0;
    border-radius:15px;
    cursor:pointer;
}

.v30-create-buttons .primary{
    background:#de4f3e;
    color:white;
    font-weight:800;
}

@media(max-width:760px){
    .v30-feed{
        grid-template-columns:1fr;
    }

    .v30-social-head{
        align-items:flex-start;
        flex-direction:column;
    }
}
