:root {
    --content-bg: #181818;
    --content-color: #777777;
}

.story-page .story-header {
    height: 480px;
}

.story-page .story-header img {
    object-fit: cover;
    object-position: center;
}

.story-page .story-header h4 {
    font-size: 64px;
}

.story-content .content-image {
    height: 350px;
}

.story-content .content-image img {
    object-fit: cover;
    object-position: center;
}

.story-content .content-info .info-title {
    font-size: 32px;
    color: var(--content-bg);
}

.story-content .content-info .info-text {
    font-size: 16px;
    color: var(--content-color);
}

.story-content .content-row:not(:first-child) {
    margin-top: 68px;
}

@media (max-width: 768px) {
    .story-content .content-image, .story-content .content-info {
        width: 100% !important;
    }
    .story-content .content-image {
        order: 1;
    }
    .story-content .content-info {
        order: 2;
        margin-top: 28px;
    }
}