.s-blog-hero-container {
    margin-top: 50px;
}

.s-blog-hero-publish-date span {
    display: block;
}

.s-blog-hero-publish-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.s-blog-hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.s-blog-hero-image {
    width: 100%;
}

.s-blog-hero-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
}

.s-blog-hero-texts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.s-blog-hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.s-blog-content h1, .s-blog-content h2, .s-blog-content h3, .s-blog-content h4, .s-blog-content h5, .s-blog-content h6 {
    margin-bottom: 25px;
}

.s-blog-content p {
    margin-bottom: 15px;
}

.s-blog-content img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.s-blog-content blockquote {
    padding-left: 10px;
    border-left: 1px solid var(--black);
}

.s-blog-share-button {
    margin-top: 30px;
}

.s-blog-share-button button {
    padding: 0px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.s-blog-texts-new span {
    display: block;
}

@media only screen and (min-width:992px) {
    .s-blog-hero-container {
        margin-top: 100px;
    }

    .s-blog-hero {
        flex-direction: row;
        gap: 80px;
    }

    .s-blog-hero-image {
        width: calc(60% - 40px);
    }

    .s-blog-hero-image img {
        max-height: 500px;
    }

    .s-blog-hero-content {
        width: calc(40% - 40px);
        justify-content: space-evenly;
    }

    .s-blog-content {
        width: 60%;
    }

    .s-blog-content h1, .s-blog-content h2, .s-blog-content h3, .s-blog-content h4, .s-blog-content h5, .s-blog-content h6 {
        margin-bottom: 35px;
    }

    .s-blog-content p {
        margin-bottom: 25px;
    }

    .s-blog-share-button {
        margin-top: 50px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .s-blog-content {
        width: 80%;
    }
}

@media only screen and (min-width:1200px) and (max-width:1599px) {
    .s-blog-content {
        width: 70%;
    }
}