/* Egy bejegyzés tartalma (single.php) */

.single {
    color: var(--color-white);
}

.single-title {
    margin: 30px 0 60px 0;
    font-family: "Cormorant Garamond";
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    font-size: 36px;
}

.single-date {
    display: block;
    margin: 30px auto;
    font-size: 18px;
    text-align: center;
}

.single-content {
    min-height: 100px;
    margin-bottom: 40px;
}

.single-thumbnail-container {
    box-sizing: border-box;
    width: 100%;
    height: 400px;

    margin-top: 60px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    overflow: hidden;
}

.single-thumbnail {
    box-sizing: border-box;
    width: 100%;
    max-width: 980px;
    height: auto;
}


@media screen and (max-width: 768px) {
    .single-thumbnail-container {
        height: auto;
    }
}