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

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

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

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

.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%;
    }
}