/*------------------------------------*\

    Posts CSS

    Posts.................Post content for loop on blog homepage, category, search page, archives, etc.
    Sidebar...............Sidebar elements.

\*------------------------------------*/

/* ==========================================================================
   Blog Masthead — compact v6 variant (gradient-only, no hero image)
   Mirrors the service-area-city.css enhanced masthead but without the
   background image slot. Used on blog, archive, search, and 404 pages.
   ========================================================================== */

/* Animated navy gradient background (mirrors cityHeroGradient from service-area-city.css) */
@keyframes cityHeroGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.masthead--blog.masthead--innerpage {
    background: linear-gradient(135deg, #011635 0%, #042452 40%, #062d5e 70%, #011635 100%);
    background-size: 200% 200%;
    animation: cityHeroGradient 20s ease infinite;
    overflow: hidden;
    position: relative;
    min-height: auto; /* compact — no hero image */
}

/* Gold glow accent (matches service-area pages) */
.masthead--blog.masthead--innerpage::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(212,175,55,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Ensure text content sits above the gradient/glow */
.masthead--blog .masthead--innerpage__wrapper {
    position: relative;
    z-index: 2;
}

/* Breadcrumbs */
.masthead--blog .masthead-sac__breadcrumb {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.masthead--blog .masthead-sac__breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.masthead--blog .masthead-sac__breadcrumb a:hover {
    color: #fff;
}

.masthead--blog .masthead-sac__sep {
    margin: 0 0.35em;
    opacity: 0.5;
}

/* Trust row */
.masthead--blog .masthead-sac__trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
}

.masthead--blog .masthead-sac__stars {
    color: #d4af37;
    letter-spacing: 2px;
}

.masthead--blog .masthead-sac__divider {
    width: 1px;
    height: 1em;
    background: rgba(255,255,255,0.3);
}

.masthead--blog .masthead-sac__badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    padding: 0.15em 0.5em;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* H1 */
.masthead--blog .masthead--innerpage__text h1 {
    color: #fff;
    font-size: 2rem;
    margin: 0;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .masthead--blog .masthead--innerpage__text h1 {
        font-size: 2.5rem;
    }
}

/* Wave separator inherits from base masthead — no overrides needed */

/* ==========================================================================
   v6 Blog Post Cards
   ========================================================================== */

.blog-post__item {
    display: flex;
    flex-direction: column;
    margin: 0 auto 30px auto;
    border: none;
    overflow: hidden;
    height: calc(100% - 30px);
    max-width: 420px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(51, 51, 51, 0.15);
    color: #333333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.blog-post__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(51, 51, 51, 0.25);
}

/* Card image */
.blog-post__img-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 220px;
}

.blog-post__img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-post__item:hover .blog-post__img-container img {
    transform: scale(1.05);
}

/* Card meta area */
.blog-post__meta {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px 24px 0;
}

/* Category badges */
.blog-post__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.blog-post__tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    color: #8B6914;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.blog-post__tag:hover {
    background: rgba(212, 175, 55, 0.25);
    color: #6B5310;
}

/* Card title */
.blog-post__title {
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.35;
    padding: 0;
}

.blog-post__title a {
    display: block;
    text-decoration: none;
    color: #042452;
    font-weight: 700;
    transition: color 0.2s ease;
}

.blog-post__title a:hover {
    color: #0a3a7a;
}

/* Card excerpt */
.blog-post__excerpt {
    flex-grow: 1;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    padding: 0;
    margin-bottom: 16px;
    color: #555555;
    text-decoration: none;
}

.blog-post__excerpt a {
    color: #555555;
    text-decoration: none;
}

/* Card bottom bar */
.blog-post__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding: 14px 24px;
    text-decoration: none;
    color: #777777;
    font-size: 13px;
    font-weight: 500;
    background: transparent;
    margin-top: auto;
}

.blog-post__bottom:hover {
    color: #042452;
}

.blog-post__bottom__date,
.blog-post__bottom__reading_time {
    color: inherit;
}


/* ==========================================================================
   v6 Featured Post
   ========================================================================== */

.blog-post__featured {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(51, 51, 51, 0.15);
    margin-bottom: 40px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post__featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(51, 51, 51, 0.25);
}

.blog-post__featured .blog-post__img-container {
    height: 100%;
    min-height: 320px;
}

.blog-post__featured .blog-post__img-container .show {
    display: block;
    height: 100%;
}

.blog-post__featured .blog-post__meta {
    padding: 28px 28px 24px;
    justify-content: center;
}

.blog-post__featured_label {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: #8B6914;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    width: fit-content;
}

.blog-post__featured .blog-post__title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 14px;
}

.blog-post__featured .blog-post__excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 20px;
}

.blog-post__featured .blog-post__bottom {
    position: static;
    width: 100%;
    padding: 14px 0 0;
    border-top: 1px solid #eee;
}


/* ==========================================================================
   v6 Blog Listing Grid
   ========================================================================== */

.blog-listing-container {
    background: #f8fafb;
}

.blog-listing {
    display: flex;
    flex-wrap: wrap;
}

.blog-listing .col-xxs-12 {
    margin-bottom: 0;
}

/* Pagination */
.blog-listing__pagination,
.post-listing__pagination {
    padding-top: 30px;
    text-align: center;
}

.blog-listing__pagination .page-numbers,
.post-listing__pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 3px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: #042452;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.blog-listing__pagination .page-numbers:hover,
.post-listing__pagination .page-numbers:hover {
    background: #042452;
    color: #ffffff;
    border-color: #042452;
}

.blog-listing__pagination .page-numbers.current,
.post-listing__pagination .page-numbers.current {
    background: #d4af37;
    color: #ffffff;
    border-color: #d4af37;
}


/* ==========================================================================
   v6 Single Post Layout
   ========================================================================== */

.blog-single-container {
    padding-bottom: 0;
}

.blog-single-container .blog-single__header {
    margin-bottom: 32px;
}

.blog-single-container .blog-single__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.blog-single-container .blog-single__category {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    color: #8B6914;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.blog-single-container .blog-single__category:hover {
    background: rgba(212, 175, 55, 0.25);
}

.blog-single-container h1 {
    font-size: 32px;
    color: #042452;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 20px 0;
}

/* Author / meta row */
.blog-single-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.blog-single-meta__info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-single-meta__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #042452;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.blog-single-meta__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.blog-single-meta__author {
    font-weight: 600;
    color: #042452;
    font-size: 14px;
}

.blog-single-meta__details {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #777777;
    font-size: 13px;
}

.blog-single-meta__details .blog-meta__divider {
    fill: #aaa;
}

.blog-single-meta .social-share-row {
    padding: 0 !important;
    text-align: right;
}

/* Featured image in single post */
.blog-single-container .blog-post__img-container {
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
    height: auto;
    max-height: 500px;
}

.blog-single-container .blog-post__img-container img {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

/* Content typography */
.blog-single-container .wysiwyg {
    padding: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #333333;
}

.blog-single-container .wysiwyg img {
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.blog-single-container .wysiwyg .row {
    margin-left: 0;
    margin-right: 0;
}

.blog-single-container .wysiwyg .col-lg-8 {
    margin-left: 0;
    width: 100%;
    padding: 0;
}

.blog-single-container .wysiwyg .container {
    padding: 0;
}

.blog-single-container h2 {
    font-size: 26px;
    color: #042452;
    font-weight: 700;
    margin: 36px 0 16px;
    line-height: 1.3;
}

.blog-single-container h3 {
    font-size: 22px;
    color: #042452;
    font-weight: 600;
    margin: 28px 0 12px;
}

.blog-single-container blockquote {
    border-left: 4px solid #042452;
    background: #EDF7FC;
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #333333;
}

.blog-single-container blockquote p {
    margin: 0;
}

/* TOC */
.toc-container {
    background: #f8fafb;
    border: 1px solid #e8edf2;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 24px 0 32px;
}

.toc-container h3 {
    font-size: 16px;
    color: #042452;
    font-weight: 700;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.toc-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-container ul li {
    margin-bottom: 6px;
}

.toc-container ul li a {
    color: #042452;
    text-decoration: none;
    font-size: 15px;
    padding: 4px 0;
    display: inline-block;
    transition: color 0.2s ease;
}

.toc-container ul li a:hover {
    color: #d4af37;
}

/* Social share */
.social-share-row li:before {
    display: none;
}

.social-share-row {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-share-row__item {
    font-size: 13px;
    color: #777;
}

.social-share-row .resp-sharing-button {
    border-radius: 6px;
    transition: opacity 0.2s ease;
}

.social-share-row .resp-sharing-button:hover {
    opacity: 0.8;
}


/* ==========================================================================
   v6 Post Pagination (Prev/Next)
   ========================================================================== */

.post-pagination {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 40px 0;
    gap: 20px;
}

.btn-post-pagination {
    background: #ffffff;
    font-size: 14px;
    padding: 18px 24px;
    color: #042452;
    position: relative;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.btn-post-pagination:hover {
    background: #042452;
    color: #ffffff;
    border-color: #042452;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(4, 36, 82, 0.2);
}

.btn-post-pagination strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
}

.btn-post-pagination:hover strong {
    color: rgba(255, 255, 255, 0.85);
}

.post-pagination-text {
    display: none;
}

.btn-previous-post,
.btn-next-post {
    max-width: 48%;
    flex: 0 0 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    text-decoration: none;
}

.btn-previous-post {
    padding-left: 56px;
}

.btn-next-post {
    padding-right: 56px;
    text-align: right;
}

.icon-circle-left-arrow,
.icon-circle-right-arrow {
    position: absolute;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-previous-post .icon-circle-left-arrow {
    left: 20px;
}

.btn-next-post .icon-circle-right-arrow {
    right: 20px;
}


/* ==========================================================================
   v6 Search / Filter Bar
   ========================================================================== */

.search_bar,
.blog_title_bar {
    padding: 28px 0 20px;
    margin-bottom: 0;
    border-bottom: none;
}

.blog_title_bar {
    margin-bottom: 0;
}

.blog_title_bar input,
.blog_title_bar select,
.search_bar input,
.search_bar select {
    height: 44px;
    border: 1px solid #d0d5dd;
    width: 100%;
    border-radius: 8px;
    padding-left: 14px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search_bar input:focus,
.search_bar select:focus,
.blog_title_bar input:focus,
.blog_title_bar select:focus {
    outline: none;
    border-color: #042452;
    box-shadow: 0 0 0 3px rgba(4, 36, 82, 0.1);
}

.blog_title_bar select {
    width: 100%;
    margin-bottom: 8px;
    cursor: pointer;
}

.blog_title_bar input.search_bar_input {
    position: initial;
    width: 100%;
    margin-bottom: 8px;
}

.blog_title_bar input.search_bar_submit,
.search_bar input.search_bar_submit {
    position: initial;
    width: 100%;
    background-color: #042452;
    color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #042452;
    transition: background-color 0.2s ease;
}

.blog_title_bar input.search_bar_submit:hover,
.search_bar input.search_bar_submit:hover {
    background-color: #011635;
}

.search_bar input.search_bar_input,
.search_form input.search_bar_input {
    height: 48px;
    max-width: 280px;
}

.search_bar input.search_bar_submit,
.search_form input.search_bar_submit {
    height: 48px;
    border: 1px solid #042452;
}

.search_bar .choices__inner,
.blog_title_bar .choices__inner {
    height: 48px;
    background: #ffffff;
    border-radius: 8px;
    border-color: #d0d5dd;
}

.search_bar .choices__inner .choices__list,
.blog_title_bar .choices__inner .choices__list {
    height: 38px;
    line-height: 22px;
}

.search_bar .choices,
.blog_title_bar .choices {
    width: 363px;
    max-width: 363px;
}

@media (max-width: 767px) {
    .search_bar .choices,
    .blog_title_bar .choices {
        width: 100%;
        max-width: 100%;
    }
}


.right-title-bar {
    display: flex;
    justify-content: flex-end;
}

.right-title-bar input.search_bar_submit {
    height: 48px;
    border: 1px solid #042452;
}

.right-title-bar .choices,
.right-title-bar .search_form {
    width: 50%;
}

.right-title-bar .search_form form {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}


/* ==========================================================================
   v6 Search Results
   ========================================================================== */

.search-results {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Search Result Card — v6 Design */
.search-result {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 12px;
    padding: 28px 32px;
    border-left: 4px solid #042452;
    box-shadow: 0 2px 8px rgba(4, 36, 82, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.search-result:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(4, 36, 82, 0.12);
    text-decoration: none;
}
.search-result__meta {
    margin-bottom: 10px;
}
.search-result__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #042452;
    background: #EDF7FC;
    padding: 4px 10px;
    border-radius: 20px;
}
.search-result__title {
    color: #042452;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.3;
}
.search-result:hover .search-result__title {
    color: #011635;
}
.search-result__excerpt {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}
.search-result__excerpt p {
    margin: 0;
}
.search-result__readmore {
    display: inline-block;
    color: #042452;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}
.search-result:hover .search-result__readmore {
    color: #d4af37;
}

@media (max-width: 767px) {
    .search-result {
        padding: 20px;
    }
    .search-result__title {
        font-size: 18px;
    }
}


/* ==========================================================================
   v6 Popular Posts
   ========================================================================== */

.popular-posts {
    background: #f8fafb;
}

.popular-posts h2 {
    text-align: left;
    padding-bottom: 20px;
    color: #042452;
    font-weight: 800;
    font-size: 28px;
    position: relative;
}

.popular-posts h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #d4af37;
    margin-top: 10px;
    border-radius: 2px;
}


/* ==========================================================================
   v6 Sidebar
   ========================================================================== */

.blog .page-sidebar .widget {
    margin-bottom: 40px;
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.blog .page-sidebar .widget h3,
.blog .page-sidebar .widget h4 {
    color: #042452;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}


/* ==========================================================================
   FX Load More
   ========================================================================== */

.load-more {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.load-more__progress {
    margin-top: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 8px;
    border: 0;
    border-radius: 4px;
    min-width: 250px;
}

progress::-webkit-progress-bar,
progress::-webkit-progress-value,
progress::-moz-progress-bar {
    height: 8px;
    border: 0;
    border-radius: 4px;
}

progress::-webkit-progress-bar {
    background-color: #e8edf2;
}

progress::-webkit-progress-value {
    background-color: #042452;
}

/* Loading Indicator */
.is-loading:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 50px;
    height: 50px;
    border: 4px solid;
    border-color: #042452 #042452 transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: simpleSpin 1s linear infinite;
}

/* Load More Button */
.load-more__btn {
    position: relative;
    display: inline-block;
    color: #ffffff;
    border-radius: 100px;
    font-size: 16px;
    line-height: normal;
    font-weight: 700;
    padding: 12px 28px;
    vertical-align: middle;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #042452;
    border: 2px solid #042452;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.load-more__btn:hover {
    background: #011635;
    border-color: #011635;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 36, 82, 0.25);
}

.load-more__btn.is-loading {
    position: relative;
    opacity: 0.6;
    cursor: not-allowed;
}

.load-more__btn.is-loading:before {
    width: 20px;
    height: 20px;
    border-color: #ffffff #ffffff transparent;
}

.load-more__btn.is-disabled {
    cursor: not-allowed;
    background-color: #e0e0e0;
    border-color: #e0e0e0;
    color: #999;
}

/* Placeholder Space */
.placeholder-block {
    position: relative;
    display: flex;
}

.placeholder-block__inner {
    flex-grow: 1;
    background-color: #f8fafb;
}

.placeholder-block.is-loading:before {
    width: 50px;
    height: 50px;
}

@-webkit-keyframes simpleSpin {
    0% { transform: translate(-50%, -50%) rotateZ(0deg); }
    100% { transform: translate(-50%, -50%) rotateZ(360deg); }
}

@keyframes simpleSpin {
    0% { transform: translate(-50%, -50%) rotateZ(0deg); }
    100% { transform: translate(-50%, -50%) rotateZ(360deg); }
}


/* ==========================================================================
   v6 Responsive
   ========================================================================== */

@media (min-width: 600px) {
    .blog_title_bar input.search_bar_input,
    .search_bar input.search_bar_input {
        position: relative;
        top: 1px;
        left: 10px;
    }

    .right-title-bar input.search_bar_input {
        top: 1px;
    }

    .blog_title_bar input.search_bar_submit,
    .search_bar input.search_bar_submit {
        position: relative;
        background-color: #042452;
        color: #ffffff;
        padding-left: 24px;
        padding-right: 24px;
        width: auto;
        border-radius: 0 8px 8px 0;
    }
}

@media (max-width: 767px) {
    .search-result {
        flex-direction: column-reverse;
    }

    .blog-post__featured .blog-post__meta {
        padding: 20px;
    }

    .blog-post__featured .blog-post__title {
        font-size: 20px;
    }

    .blog-single-container h1 {
        font-size: 26px;
    }

    .post-pagination {
        flex-direction: column;
    }

    .btn-previous-post,
    .btn-next-post {
        max-width: 100%;
        flex: 1;
    }
}

@media (min-width: 768px) {
    .post-pagination-text {
        display: block;
    }

    .btn-previous-post,
    .btn-next-post {
        text-align: inherit;
    }

    .blog-single-container h1 {
        font-size: 38px;
    }

    .blog-single-container .wysiwyg {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .blog-post__featured .blog-post__meta {
        padding: 28px 28px 24px 0;
    }
}

@media (min-width: 1200px) {
    .blog-single-container h1 {
        font-size: 42px;
    }

    .blog-post__featured .blog-post__title {
        font-size: 28px;
    }
}