.page-header {
    margin-bottom: 20px;
}

.site-footer {
    /* высота за счет внутренних отступов */
    padding: 18px 0 24px;

    /* полоска сверху внутри контейнера */
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.site-footer .footer-copy {
    /* чтобы текст был “поцентру” по высоте футера */
    padding: 6px 0 0 22px;
    line-height: 1.2;
    opacity: 0.75;
    /* по желанию, как лёгкий копирайт */
}

.single-entry {
    padding-top: 60px;
    padding-bottom: 100px;
}

.entry-header {
    margin-bottom: 20px;
}

.entry-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.entry-meta {
    font-size: 14px;
    font-weight: 700;
}

.entry-video {
    margin-bottom: 30px;
}

.technical-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 40px;
    white-space: pre-line;
    color: #666;
}

.entry-content {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 60px;
}

.entry-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
}

.gallery-item {
    flex-grow: 1;
    height: 300px;
    min-width: 200px;
}

.gallery-item a {
    display: block;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s;
}

.gallery-item img:hover {
    filter: brightness(0.9);
}

@media (max-width: 767px) {
    .gallery-item {
        height: 200px;
        flex-basis: 45%;
    }

    .single-entry {
        padding-top: 10px;
        padding-bottom: 800px;
    }
}