.single-hero {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: calc(100vw - 32px);
    height: 90vh;
    border-radius: 16px;
    margin: auto;
    margin-top: 16px;
    box-shadow:
        0 6px 8px rgba(0, 0, 0, 0.203),
        0 2px 4px rgba(0, 0, 0, 0.245);
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-hero .single-feature-image {
    width: 70%;
    border-radius: 8px;
    box-shadow:
        0 8px 10px rgba(0, 0, 0, 0.359),
        0 4px 6px rgba(0, 0, 0, 0.337);
}

.single-meta {
    background-color: rgba(240, 248, 255, 0.869);
    border-radius: 8px;
    box-shadow:
        0 8px 10px rgba(0, 0, 0, 0.359),
        0 4px 6px rgba(0, 0, 0, 0.337);
    padding: 24px 16px 16px;
    width: -webkit-fill-available;
    margin-left: 40px;
    width: 30%;
}

.single-title {
    font-size: 32px;
}

.single-date {
    font-weight: bold;
    font-size: 14px;
}

.single-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
}

.single-name {
    font-weight: bold;
    color: var(--mainColor);
}

.single-line {
    width: 70%;
    margin-bottom: 15px;
    margin-right: auto;
    height: 4px;
    background-color: var(--mainColor);
}

.single-category {
    color: var(--mainColor);
    font-weight: bold;
    padding: 4px 12px;
    border: 3px solid var(--mainColor);
    border-bottom-width: 7px;
    border-right-width: 7px;
    text-transform: uppercase;
}

.single-keep {
    color: var(--mainColor);
}

.single-content {
    margin-top: 100px;
}

.single-content h1,
h2,
h3 {
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
}


@media screen and (max-width: 768px) {
    .single-meta {
        width: 100%;
        margin: auto;
    }
}