/**
* Background
*/
.posts-background {
    height: 1001vh;
    position: fixed;
    inset: 0;
    z-index: -1;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgb(0, 0, 0);
}

.posts-background-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.posts-background-overlay {
    position: fixed;
    z-index: -1;
    inset: 0;
}

.posts-background-image::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: 0.25;
    filter: blur(50px);
}

.posts-background-image::after {
    content: "";
    position: fixed;
    width: 100%;
    top: 0px;
    height: 100%;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PScwIDAgNTEyIDUxMicgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz4KICA8ZmlsdGVyIGlkPSdub2lzZUZpbHRlcic+CiAgICA8ZmVUdXJidWxlbmNlIAogICAgICB0eXBlPSdmcmFjdGFsTm9pc2UnIAogICAgICBiYXNlRnJlcXVlbmN5PScwLjcnCiAgICAgIG51bU9jdGF2ZXM9JzMnIAogICAgICBzdGl0Y2hUaWxlcz0nc3RpdGNoJy8+CiAgICA8ZmVDb2xvck1hdHJpeCBpbj0idHVyYnVsZW5jZSIgdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPgoKICAgIDxmZUNvbXBvbmVudFRyYW5zZmVyPgogICAgICA8ZmVGdW5jUiB0eXBlPSJkaXNjcmV0ZSIgdGFibGVWYWx1ZXM9IjAgMSIgLz4KICAgICAgPGZlRnVuY0cgdHlwZT0iZGlzY3JldGUiIHRhYmxlVmFsdWVzPSIwIDEiIC8+CiAgICAgIDxmZUZ1bmNCIHR5cGU9ImRpc2NyZXRlIiB0YWJsZVZhbHVlcz0iMCAxIiAvPgogICAgPC9mZUNvbXBvbmVudFRyYW5zZmVyPgogIDwvZmlsdGVyPgogIAogIDxyZWN0IHdpZHRoPScxMDAlJyBoZWlnaHQ9JzEwMCUnIGZpbHRlcj0ndXJsKCNub2lzZUZpbHRlciknLz4KPC9zdmc+);
    background-size: 512px 512px;
    background-repeat: repeat;
    opacity: 0.04;
    mix-blend-mode: overlay;
}

/**
* Main
*/
.posts-container {
    padding: 4rem 1rem;
    max-width: 580px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.posts-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.posts-picture {
    margin-bottom: 1rem;
}

.posts-picture img {
    object-fit: contain;
    border-radius: 9999px;
}

.posts-title {
    max-width: 100%;
    display: flex;
    align-items: center;
    margin-left: .75rem;
    margin-right: .75rem;
}

.posts-title h1 {
    text-align: center;
    color: white;
    text-overflow: ellipsis;
    font-size: 20px;
    letter-spacing: -.4px;
    font-weight: 700;
    line-height: 1.5;
    text-wrap: balance;
    margin: 0;
}


/**
* Links
*/
.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.links-wrap {
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.6);
    color: rgb(255, 255, 255);
    transition: transform 0.15s cubic-bezier(0, 0.2, 0.5, 3);
    box-shadow: rgba(10, 11, 13, 0.08) 0px 2px 4px 0px;
    border-radius: 4px;
    position: relative;
}

.links-wrap a {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    color: inherit;
    transition: box-shadow 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99), border-color 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99), transform 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99), background-color 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99);
    overflow-wrap: break-word;
    word-break: break-word;
    padding: 16px 66px;
    min-height: 64px !important;
    margin: 0px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    width: 100%;
    appearance: none;
    box-sizing: border-box;
    vertical-align: middle;
}

.links-wrap p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    width: 100%;
    font-weight: 500;
}

@media (max-width: 575px) {
    .links-wrap p {
        font-size: 14px;
    }
}

.links-wrap:hover {
    transform: scale(1.02);
}

.links-thumbnail {
    display: flex;
    left: 8px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    width: 48px;
    height: 48px;
}

.links-thumbnail img {
    border-radius: 0px;
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: initial;
    width: 100%;
    margin: 0px;
    padding: 0px;
    border: 0px;
    max-width: 100%;
}