/* Bejegyzés előnézete (content.php) */

.content {
    height: 100%;

    flex-wrap: wrap;

    background-color: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(10px);

    box-shadow: 1px 1px 10px var(--color-dark) !important;
}

.content-wrapper {
    padding: 15px 30px;
    height: calc(100% - var(--recent-post-thumbnail-height));
}

.content-thumbnail {
    box-sizing: border-box;
    width: 100%;
    height: var(--recent-post-thumbnail-height);
    overflow: hidden;
}

.content-thumbnail img {
    max-width: 100%;
    height: auto;
    transform: scale(1.25);
}

.content-date {
    display: block;
}

.content-title {
    margin-bottom: 30px;
}

.content-text {
    height: 100%;
}

.content-text p {
    height: 100% !important;
    text-align: justify !important;

    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
}

.content-text .more-link {
    display: block;

    margin: 30px auto 15px auto;

    text-align: center;
    font-weight: bold;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}