/* Hero section */

.hero {
    margin-top: 60px;
    background: #00273D;
    background: linear-gradient(135deg, rgba(0, 39, 61, 1) 0%, rgba(19, 99, 144, 1) 100%);
    position: relative;
    min-height: 205px;
    padding-top: 66px;
    padding-bottom: 52px;
    z-index: 1;
}

.hero h1 {
    font-size: 24px;
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    text-align: center;
    width: 480px;
    max-width: 100%;
    margin: auto;
}

.hero__background,
.hero__background-rotate {
    position: absolute;
    z-index: -1;
}

.hero__background {
    left: 0;
    bottom: 0;
}

.hero__background-rotate {
    right: 0;
    top: 0;
    transform: rotate(180deg);
    display: none;
}

@media only screen and (min-width: 991px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero__background-rotate {
        display: inline-block;
    }
}

.page-content {
    margin-top: 62px;
    margin-bottom: 75px;
}

.content__holder {
    box-shadow: 0px 0px 28px -5px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 0px 28px -5px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 28px -5px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    object-fit: cover;
    max-height: 400px;
    object-position: center;
}

.the-content {
    padding: 0 22px 30px 50px;
}

.blog-information {
    margin-top: 30px;
    padding: 30px 0 17px;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.content {
    padding: 0 0 30px;
    border-bottom: 1px solid #00273D;
}

.comment-number,
.blog-date span {
    font-size: 12px;
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1;
    color: #00273D;

    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.post-categories li {
    font-size: 12px;
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1;
    color: #00273D;
    background: #E7E7E7;
    padding: 5px 30px 7px;border-radius: 40px;
}

.content h2 {
    font-size: 20px;
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    color: #00273D;
    margin-bottom: 20px;
}

.content p,
.content li,
.content a {
    font-size: 14px;
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.5;
    color: #00273D;
    margin-bottom: 8px;
}

.comments {
    padding: 20px 0 0;
}

.comments-title {
    font-size: 20px;
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    color: #00273D;
    margin-bottom: 12px;
}