.private-post-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
    width: 100%;
}

.private-post-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 360px;
    max-width: 90%;
    height: 80px;
    border-radius: 4px;
    background-color: #549EDD;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.private-post-link:hover {
    background-color: #3b87c4;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transform: translateY(-2px) scale(1.02);
}

.onlynews p{margin:.8em auto}