
.categories-section {
    padding-block: 40px 20px;
    margin-block: 20px 0;
}

@media (min-width: 991.8px) {
    .categories-section {
        padding-block: 100px 0;
        margin-block: 40px;
    }
}

.categories-section .category-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--grey-300);
}

.categories-section .category-top .category-title {
    text-align: center;
    width: 100%;
}

@media (min-width: 991.8px) {
    .categories-section .category-top .category-title {
        text-align: left;
        width: auto;
    }
}

.categories-section .categories-post {
    margin-top: 20px;
    margin-bottom: 40px;
}

@media (min-width: 991.8px) {
    .categories-section .categories-post {
        margin-top: 40px;
    }
}

.post-grid {
    display: grid;
}

.post-grid .loop-article {
    position: relative;
    margin: 10px auto;
}

.post-grid .loop-article a {
    text-decoration: none;
}

.post-grid .loop-article .loop-article-inner {
    transition: 0.4s all;
    height: 100%;
    background-color: var(--white);
    box-shadow: 8px 7px 9px 2px rgba(0, 0, 0, .3);
    /*border-bottom: 5px solid var(--orange-200);*/
    border-bottom: 5px solid var(--green-700);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.post-grid .loop-article .loop-article-inner .image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 52.5%;
    /* 147 / 280 = 0.525 or 52.5% */
    background-color: var(--white);
}

.post-grid .loop-article .loop-article-inner .image-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    max-width: 100%;
    z-index: 2;
}

.post-grid .loop-article .loop-article-inner .text-wrapper {
    padding: 20px;
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
}

.post-grid .loop-article .loop-article-inner .text-wrapper .top {
    width: 100%;
}

.post-grid .loop-article .loop-article-inner .text-wrapper .top p {
    font-size: 14px;
    line-height: 18px;
}

.post-grid .loop-article .loop-article-inner .text-wrapper .title-wrapper {
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--grey-300);
}

.post-grid .loop-article .loop-article-inner .text-wrapper .title-wrapper h3 {
    font-size: 18px;
    text-align: left;
    font-weight: 700;
}

.post-grid .loop-article .loop-article-inner .text-wrapper .meta-description p {
    font-size: 14px;
    line-height: 18px;
}

.post-grid .loop-article a:hover .loop-article-inner {
    margin-top: -10px;
    margin-bottom: 10px;
    box-shadow: 8px 7px 9px 2px rgba(0, 0, 0, .5);
}

.post-grid.grid-3 {
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

@media (min-width: 575.8px) {
    .post-grid.grid-3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1280px) {
    .post-grid.grid-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.post-grid.grid-2 {
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

@media (min-width: 575.8px) {
    .post-grid.grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.post-grid.grid-4 {
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

@media (min-width: 575.8px) {
    .post-grid.grid-4 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1280px) {
    .post-grid.grid-4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

#search-wrapper-aside {
    margin-bottom: 20px;
}

#search-wrapper-aside input[type='search'] {
    width: 100%;
    margin-inline: auto;
    display: block;
    /*border: none;
    */
    outline: none;
    font-size: 18px;
    line-height: 20px;
    color: var(--black-200);
    padding: 14px 12px 14px 40px;
    border-radius: 14px;
    background: url(../images/search.svg) no-repeat left 10px center, var(--white);
    background-size: 24px;
    border: 1px solid var(--orange-200);
}

#hero-blog {
    position: relative;
    padding-block: 96px 48px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 40px;
    background-color: var(--green-600);
    background-image: url("/wp-content/uploads/2025/06/hero-banner-illustrations.png");
}

.single #hero-blog {
    margin-bottom: 0;
}

@media (min-width: 991.8px) {
    #hero-blog {
        padding-block: 100px;
        min-height: 300px;
    }
}

#hero-blog .container {
    position: relative;
    z-index: 2;
}

#hero-blog::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--green-600);
    background: -moz-linear-gradient(180deg, rgba(3, 168, 146, 0.6643251050420168) 24%, rgba(3, 168, 146, 0.6923363095238095) 40%, rgba(3, 168, 146, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(3, 168, 146, 0.6643251050420168) 24%, rgba(3, 168, 146, 0.6923363095238095) 40%, rgba(3, 168, 146, 1) 100%);
    background: linear-gradient(180deg, rgba(3, 168, 146, 0.6643251050420168) 24%, rgba(3, 168, 146, 0.6923363095238095) 40%, rgba(3, 168, 146, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#03a892", endColorstr="#03a892", GradientType=1);
}

#intro-blog {
    padding-block: 0;
    margin-bottom: 30px;
}

#intro-blog a {
    text-decoration: none;
}

.categories-post {
    margin-top: 20px;
    margin-bottom: 80px;
}

@media (min-width: 991.8px) {
    .categories-post {
        margin-top: 40px;
    }
}

.load-more-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.load-more-wrapper button {
    outline: none;
    border: none;
    cursor: pointer;
    min-width: 270px;
}

#back-to-top-posts-container {
    z-index: 3;
    position: sticky;
    top: 200px;
    padding-block: 0;
    opacity: 1;
    transition: 0.4s all;
    height: 0;
}

#back-to-top-posts-container .container-new {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    height: 0;
}

#back-to-top-posts-container a {
    background-color: var(--white);
    border-radius: 100px;
    border: 1px solid var(--grey-300);
    padding: 16px 24px;
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--black);
    margin-left: auto;
    margin-right: 0;
}

#back-to-top-posts-container a span {
    position: relative;
    -webkit-mask-image: url('../images/arrow.svg');
    mask-image: url('../images/arrow.svg');
    mask-repeat: no-repeat;
    background-color: var(--black);
    width: 12px;
    height: 14px;
    transition: 0.4s all;
}

#back-to-top-posts-container a:hover {
    color: var(--orange-200);
    border-color: var(--orange-200);
}

#back-to-top-posts-container a:hover span {
    background-color: var(--orange-200);
}

#back-to-top-posts-container.hidden {
    opacity: 0;
}

.archive-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.archive-top #search-wrapper-aside {
    width: 500px;
    flex-basis: 500px;
}

.archive-top #search-wrapper-aside form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.archive-top #search-wrapper-aside form input[type='search'] {
    flex: 100%;
    width: 100%;
}

@media (min-width: 575.8px) {
    .archive-top #search-wrapper-aside form input[type='search'] {
        flex: 1;
        width: auto;
    }
}

.archive-top #search-wrapper-aside form button {
    cursor: pointer;
    outline: none;
    appearance: none;
    border: none;
    box-shadow: none;
    width: 100%;
}

@media (min-width: 575.8px) {
    .archive-top #search-wrapper-aside form button {
        width: auto;
    }
}

.archive-top #search-wrapper-aside form button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.sort-posts-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    padding-top: 0;
    z-index: 3;
    position: relative;
}

.sort-posts-wrapper .sort {
    position: relative;
}

.sort-posts-wrapper .sort select {
    background-color: var(--white);
    color: var(--black);
    width: 320px;
    box-shadow: none;
    -webkit-appearance: button;
    appearance: none;
    outline: none;
    font-size: 16px;
    padding: 12px 42px 12px 18px;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    transition: 0.4s all;
}

.sort-posts-wrapper .sort select option {
    padding: 30px;
}

.sort-posts-wrapper .sort select:hover {
    border-color: var(--orange-200);
    color: var(--orange-200);
}

.sort-posts-wrapper .sort::before {
    content: "";
    mask: url('../images/arrow-down.svg') no-repeat center;
    -webkit-mask: url('../images/arrow-down.svg') no-repeat center;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    text-align: center;
    background: #353e50;
    pointer-events: none;
    transition: 0.4s all;
}

.sort-posts-wrapper .sort:hover::before {
    background: var(--orange-200);
}

#search-top h2 {
    margin-bottom: 30px;
}

#search-top #search-wrapper-aside {
    width: 500px;
    flex-basis: 500px;
}

#search-top #search-wrapper-aside form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

#search-top #search-wrapper-aside form input[type='search'] {
    flex: 100%;
    width: 100%;
}

@media (min-width: 575.8px) {
    #search-top #search-wrapper-aside form input[type='search'] {
        flex: 1;
        width: auto;
    }
}

#search-top #search-wrapper-aside form button {
    cursor: pointer;
    outline: none;
    appearance: none;
    border: none;
    box-shadow: none;
    width: 100%;
}

@media (min-width: 575.8px) {
    #search-top #search-wrapper-aside form button {
        width: auto;
    }
}

#search-top #search-wrapper-aside form button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#error-content {
    min-height: 60vh;
    padding-block: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: var(--green-300);
    background-image: url("/wp-content/uploads/2025/07/hero-banner-illustrations.png");
}

#error-content .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

#error-content .container > * {
    width: 100%;
    flex-basis: 100%;
}

#error-content .container .text-wrapper {
    max-width: 600px;
    width: 100%;
    flex-basis: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

#error-content .container .text-wrapper > * {
    width: 100%;
    flex-basis: 100%;
}

.blog #blog-top {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
}

@media (min-width: 991.8px) {
    .blog #blog-top {
        grid-template-columns: 1fr 3fr;
        grid-column-gap: 50px;
    }
}

.blog #blog-top h3 {
    text-align: left;
    padding-bottom: 20px;
}

.blog #blog-top .blog-aside {
    order: 2;
    margin-top: 30px;
}

@media (min-width: 991.8px) {
    .blog #blog-top .blog-aside {
        order: 1;
        margin-top: 0;
    }
}

.blog #blog-top .blog-top {
    order: 1;
}

@media (min-width: 991.8px) {
    .blog #blog-top .blog-top {
        order: 2;
    }
}

.blog #blog-top .blog-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    padding-top: 20px;
    border-top: 2px solid var(--grey-300);
}

.blog #blog-top .blog-menu li {
    padding: 5px 0;
}

.blog #blog-top .blog-menu li a {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
}

.blog #blog-top .blog-menu li a:hover {
    color: var(--orange-200);
}

.blog #blog-top .blog-menu li a.active {
    color: var(--purple-100);
}

.blog #blog-top form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.blog #blog-top form input[type='search'] {
    flex: 1;
    width: auto;
}

.blog #blog-top form button {
    cursor: pointer;
    outline: none;
    appearance: none;
    border: none;
    box-shadow: none;
    width: 100%;
}

.blog #blog-top form button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (min-width: 991.8px) {
    .blog .latest-article {
        margin-top: -200px;
    }
}

.blog .latest-article a {
    text-decoration: none;
}

.blog .latest-article a:hover img {
    transform: scale(1.1);
}

.blog .latest-article a:hover h2 {
    color: var(--orange-200);
}

.blog .latest-article .image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}

.blog .latest-article .image-wrapper img {
    height: auto;
    border-radius: 50px;
    transition: 0.4s all;
}

.blog .latest-article .text-wrapper {
    position: relative;
    background-color: #fff;
    /*border-top: 10px solid var(--orange-200);*/
    border-top: 10px solid var(--green-700);
    border-radius: 10px;
    padding: 20px;
    max-width: 100%;
    box-shadow: 0 0 11px 0 rgba(0, 0, 0, .3);
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: -20px;
}

@media (min-width: 991.8px) {
    .blog .latest-article .text-wrapper {
        padding: 20px 40px;
        max-width: 80%;
        margin-top: -70px;
    }
}

.blog .latest-article .text-wrapper h2 {
    text-align: left;
    transition: 0.4s all;
}

.blog .blog-two {
    margin-top: 40px;
}

.blog .mobile-more {
    margin-block: 30px 0;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 991.8px) {
    .blog .mobile-more {
        margin: 0;
    }
}

.blog .mobile-more a {
    width: 100%;
}

/* ======================= TEST PAGES ======================= */
.post-content-wrapper {
    /*padding-inline: 24px;*/
    padding-bottom: 48px;
    padding-top: 0;
    position: relative;
    z-index: 9;
}

@media (min-width: 991.8px) {
    .post-content-wrapper {
        padding-bottom: 80px;
    }
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-block: 0 40px;
    width: 100%;
    margin-inline: auto;
}

.single .breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-block: 0 40px;
    width: 100%;
    margin-inline: auto;
    @media screen and (min-width: 1280px) {
        width: calc(100% - 648px);
    }
}

.breadcrumbs .active {
    /*font-weight: 600;*/
    color: var(--green-700);
}

.breadcrumbs a,
.breadcrumbs span {
    position: relative;
    font-size: 14px;
    line-height: 18px;
    color: var(--grey-100);
    text-decoration-line: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.breadcrumbs a:hover {
    /*color: var(--green-10);*/
    color: var(--green-700);
}

.breadcrumbs a i {
    width: 20px;
    height: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: var(--grey-100);
    opacity: .5;
    font-size: 12px;
}

.breadcrumbs span.active {
    font-size: 14px;
    line-height: 18px;
    color: var(--grey-100);
}

.breadcrumbs a.home-link span {
    margin-right: 6px;
}

.breadcrumbs a:hover {
    /*color: var(--green-10);*/
    color: var(--green-600);
}

.post-content-wrapper .row {
    display: flex;
    @media screen and (min-width: 991.8px) {
        display: grid;
        grid-column-gap: 24px;
        grid-row-gap: 24px;
        margin-inline: auto;
        grid-template-columns: 300px auto;
    }
}

.post-content-wrapper.has-sidebar .row {
    display: flex;
    gap: 40px;
    @media screen and (min-width: 991.8px) {
        display: grid;
        grid-column-gap: 24px;
        grid-row-gap: 24px;
        margin-inline: auto;
        grid-template-columns: 300px auto 300px;
    }
}

.post-content-wrapper .post-content {
    width: 100%;
    flex-basis: 100%;
    order: 2;
    padding-inline: 24px;
    gap: 40px;
    @media screen and (min-width: 991.9px) {
        padding-inline: 0;
    }
}

@media (min-width: 991.8px) {
    .post-content .post-content {
        width: calc(100% - 450px);
        flex-basis: calc(100% - 450px);
        padding-inline: 0;
        order: 2;
        text-align: left;
        margin-top: 40px;
    }
}

.post-content #block-heading {
    width: 100%;
    padding-block: 0;
}

.post-content-wrapper .post-content #block-heading .container {
    padding: 0;
    width: 100%;
    padding-block: 0 40px;
}

.post-content-wrapper .post-content #block-heading .container h2 {
    color: var(--purple-10);
}

.post-content-wrapper .post-content h2, .post-content-wrapper .post-content h3, .post-content-wrapper .post-content h4, .post-content-wrapper .post-content h5, .post-content-wrapper .post-content h6 {
    text-align: left;
    margin-bottom: 20px;
    margin-top: 30px;
}

.post-content-wrapper .post-content .wp-block-image {
    margin-bottom: 20px;
}

.post-content-wrapper .post-content img {
    margin-bottom: 10px;
}

.post-content-wrapper .post-content p {
    margin-bottom: 15px;
}

.post-content-wrapper .post-content ul, .post-content-wrapper .post-content ol {
    margin-bottom: 20px;
}

.post-content-wrapper .post-content iframe {
    max-width: 100%;
}

.post-content-wrapper .post-content a:not(.btn) {
    /*color: var(--orange-200);*/
    color: var(--green-600);
}

.post-content-wrapper .post-content a.wp-block-button__link {
    /*color: var(--orange-200);*/
    background-color: var(--green-600);
    color: var(--white);
    font-size: 18px;
    line-height: 24px;
    padding: 12px 24px;

    @media (min-width: 575.8px) {
        font-size: 22px;
        line-height: 32px;
        padding: 16px 32px;
    }

}

.post-content-wrapper .post-content a.wp-block-button__link:hover {
    background-color: var(--orange-200);
    color: var(--white) !important;
}


.post-content-wrapper .post-content a:not(.btn):hover {
    color: var(--orange-200);
}


.post-content-wrapper .post-content blockquote {
    padding: 30px;
    background-color: #FAFAFA;
    color: var(--black);
    margin-bottom: 20px;
    border-left: none;
    /*border-left: 5px solid var(--green-700);*/
    border-radius: 15px;

}

.post-content-wrapper .post-content blockquote p {
    color: var(--black);
    font-weight: 600;
    margin-bottom: 0;
}

.post-content-wrapper .post-content table {
    margin-block: 15px 30px;
}

.post-content-wrapper .post-content.no-side-bar {
    width: 100%;
    flex-basis: 100%;
    order: 2;
}

@media (min-width: 991.8px) {
    .post-content-wrapper .post-content.no-side-bar {
        width: 100%;
        flex-basis: 100%;
        text-align: left;
        margin-top: 40px;
    }
}

.post-content-wrapper .post-aside {
    width: 100%;
    flex-basis: 100%;
    margin-bottom: 24px;
    padding-inline: 24px;
    @media screen and (min-width: 991.8px) {
        padding-inline: 0;
    }
}

.post-content-wrapper .post-aside-left {
    order: 1;
}

.post-content-wrapper .post-aside-right {
    order: 3;
}

.post-content-wrapper .post-aside-holder {
    position: -webkit-sticky;
    position: sticky;
    top: 90px;

    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    @media screen and (min-width: 991.8px) {
        padding-bottom: 40px;
    }

}

.post-content-wrapper .post-aside .sidebar {
    padding: 16px;
    border-radius: 12px;
    background-color: #FAFAFA;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.post-content-wrapper .post-aside .sidebar.hide-lg {
    display: none;
    @media screen and (min-width: 991.8px) {
        display: flex;
    }
}

.post-content-wrapper .post-aside .sidebar.show-lg {
    display: flex;

    @media screen and (min-width: 991.8px) {
        display: none;
    }
}

@media (min-width: 991.8px) {
    .post-content-wrapper .post-aside .sidebar.overflow {
        overflow-y: scroll;
        padding-bottom: 100px;
    }
}

.post-content-wrapper .post-aside .aside-title {
    font-size: 18px;
    color: #1E1E1E;
    font-weight: 600;
}

.post-content-wrapper .post-aside .sidebar-nav {
    @media screen and (max-width: 991.8px) {
        overflow-y: auto;
        max-height: calc(100vh - 300px);
    }
}

.post-content-wrapper .post-aside .sidebar-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 16px;
}

.post-content-wrapper .post-aside .sidebar-nav ul li {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 18px;
}

.post-content-wrapper .post-aside .sidebar-nav ul li a {
    /*color: var(--orange-10);*/
    /*color: var(--green-600);*/
    color: var(--orange-200);
    font-size: 14px;
    line-height: 18px;
    text-decoration-line: none;
}

.post-content-wrapper .post-aside .sidebar-nav ul li a:hover {
    /*color: var(--green-10);*/
    color: var(--green-600);
}

.post-content-wrapper .post-aside ul li:last-of-type {
    border-bottom: none;
}

.post-content-wrapper .post-aside .practice-button-wrapper-aside {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-block: 20px 0;
}


.hero-blog-single {
    position: relative;
    padding-block: 96px 48px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 40px;
    background-color: var(--green-600);
    background-image: url("/wp-content/uploads/2025/06/hero-banner-illustrations.png");
}

.hero-blog-single {
    margin-bottom: 80px;
}

@media (min-width: 991.8px) {
    .hero-blog-single {
        padding-block: 80px;
        min-height: 300px;
    }
}

.hero-blog-single .container {
    position: relative;
    z-index: 2;
    width: 800px;
    max-width: 100%;
}

.hero-blog-single::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--green-600);
    background: -moz-linear-gradient(180deg, rgba(3, 168, 146, 0.6643251050420168) 24%, rgba(3, 168, 146, 0.6923363095238095) 40%, rgba(3, 168, 146, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(3, 168, 146, 0.6643251050420168) 24%, rgba(3, 168, 146, 0.6923363095238095) 40%, rgba(3, 168, 146, 1) 100%);
    background: linear-gradient(180deg, rgba(3, 168, 146, 0.6643251050420168) 24%, rgba(3, 168, 146, 0.6923363095238095) 40%, rgba(3, 168, 146, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#03a892", endColorstr="#03a892", GradientType=1);
}

.hero-blog-single-meta {
    margin-block: 24px;
}

.hero-blog-single-meta p {
    font-size: 16px;
}

.single-hero-image {
    width: 846px;
    max-width: calc(100% - 48px);
    aspect-ratio: 17 / 8;
    position: relative;
    margin-inline: auto;
    margin-top: -128px;
    margin-bottom: 80px;
    border-radius: 30px;
    overflow: hidden;
    @media screen and (min-width: 991.8px) {
        margin-top: -160px;
    }
}

.single-hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-hero-wrapper {
    position: relative;
}

.author-hover-wrapper {
    position: relative;
    display: inline-block;
    margin-inline: auto;
    width: 100%;
    cursor: pointer;
}

.author-name-link {
    color: var(--white);
    cursor: pointer;
    text-decoration-line: none;
}

.author-name-link:hover {
    text-decoration-line: underline;
}

.hero-blog-single-meta .author-info-box {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 999;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-blog-single-meta .author-info-inner {
    background-color: var(--white);
    border-radius: 24px;
    padding: 24px;
    width: 465px;
    max-width: 100%;
    margin-top: 30px;
    cursor: initial;
}

.hero-blog-single-meta .author-hover-wrapper:hover .author-info-box {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.hero-blog-single-meta .author-hover-wrapper:hover .author-name-link {
    text-decoration-line: underline;
}

.hero-blog-single-meta .author-info-inner::before {
    content: "";
    display: block;
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translate(-50%, 0) rotate(45deg);
    width: 24px;
    height: 24px;
    background-color: var(--white);
    border-radius: 4px;
}

.hero-blog-single-meta .author-info-box a {
    text-decoration: none;
    cursor: pointer;
}

.hero-blog-single-meta .author-info-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.hero-blog-single-meta .author-info-inner .author-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: relative;
    background-color: var(--green-600);
    overflow: hidden;
}

.hero-blog-single-meta .author-info-inner .author-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-blog-single-meta .author-info-inner .author-name .name {
    font-size: 16px;
    line-height: 120%;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0;
}

.hero-blog-single-meta .author-info-inner .author-name .position {
    font-size: 12px;
    line-height: 16px;
    color: var(--grey-100);
}

.hero-blog-single-meta .author-info-inner .author-text {
    width: 100%;
    flex-basis: 100%;
}

.hero-blog-single-meta .author-info-inner .author-text p {
    font-size: 14px;
    line-height: 18px;
    color: var(--grey-100);
}

.single:before {
    display: none;
}

.share-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    padding: 16px;
    border-radius: 12px;
    background-color: #FAFAFA;
    gap: 16px;
    width: 100%;
}

.share-wrapper span {
    color: #1E1E1E;
    font-weight: 600;
}

.social-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.social-share li {
    border: none;
}

.post-content .h2,
.post-content .h2 {
    font-size: 28px;
    line-height: 32px;
    margin-block: 0;
    width: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

@media (min-width: 575.8px) {
    .post-content h2,
    .post-content .h2 {
        font-size: 30px;
        line-height: 36px;
    }
}

.post-content h3,
.post-content .h3 {
    font-size: 24px;
    line-height: 1;
    text-align: center;
    font-weight: 600;
}

@media (min-width: 575.8px) {
    .post-content h3,
    .post-content .h3 {
        font-size: 26px;
        line-height: 1;
    }
}

.post-content h4 {
    font-size: 24px;
    line-height: 1;
}

.toggle-sidebar,
.close-sidebar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border: none;
    outline: none;
    width: 100%;
    gap: 16px;
    font-size: 16px;
    color: #1E1E1E;
    font-weight: 600;
    padding: 16px;
    border-radius: 12px;
    background-color: #FAFAFA;
    align-items: center;
    @media screen and (min-width: 991.8px) {
        display: none;
    }
}

.toggle-sidebar:hover,
.close-sidebar:hover {
    background-color: var(--orange-200);
}

.sidebar-mobile-holder {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0;
    background-color: rgba(0, 0, 0, .5);

    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    display: none;

}

.sidebar-mobile-holder.visible {
    z-index: 899;
    opacity: 1;
    display: flex;
}

.sidebar-mobile-inner {
    position: relative;
    width: 660px;
    max-width: calc(100% - 48px);
    padding: 48px 24px;
    margin: 80px auto;
    gap: 24px;
    display: flex;
    flex-wrap: wrap;
}


.sidebar-mobile-inner.visible {
    opacity: 1;
}

/*
Content Author
 */
.content-author-info-box {
    position: relative;
    width: 100%;
}

.content-author-info-box .author-info-inner {
    background-color: #FAFAFA;
    border-radius: 24px;
    padding: 24px;
    max-width: 100%;
    margin-top: 30px;
    cursor: initial;
    width: 100%;
}


.content-author-info-box .author-info-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    position: relative;
}


.content-author-info-box .author-info-inner .author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    background-color: var(--green-600);
    overflow: hidden;
}

.content-author-info-box .author-info-inner .author-content {
    width: 100%;
    flex: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    @media screen and (min-width: 575.8px) {
        width: auto;
        flex: 1;
    }
}

.content-author-info-box .author-info-inner .author-name {
    width: auto;
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}

.content-author-info-box .author-name .social-links {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: 16px;
}

.content-author-info-box .author-info-inner .author-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-author-info-box .author-info-inner .author-name .name {
    font-size: 24px;
    line-height: 120%;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0;
}

.author-info-inner .author-name .position {
    font-size: 12px;
    line-height: 16px;
    color: var(--grey-100);
}

.author-info-inner .author-text {
    width: 100%;
    flex-basis: 100%;
}

.author-info-inner .author-text p {
    font-size: 14px;
    line-height: 18px;
    color: var(--grey-100);
}

.author-link {
    text-decoration: none;
}

.single-post main .container {
    width: 1320px;
}

.post-aside-right form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}

.post-aside-right form .gform_fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.post-aside-right form .gfield {
    width: 100%;
}

.post-aside-right form .gform_footer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.post-aside-right form .gform_footer .gform_button {
    width: 100% !important;
    background-color: var(--orange-100);
    color: var(--white);
    border-radius: 100px;
    padding: 16px;
}

.post-aside-right form .gform_footer input[type=submit] {
    background-color: var(--orange-100) !important;
    color: var(--white) !important;
    border-radius: 100px !important;
    padding: 11px 16px !important;
    font-size: 14px;
    transition: 0.4s ease-out;
}

.post-aside-right form .gform_footer input[type=submit]:hover {
    background-color: var(--purple-100) !important;
}

.post-aside-right .gform_wrapper {
    padding: 24px;
    border-radius: 24px;
    background-color: var(--green-700);
    width: 600px;
    max-width: 100%;
    margin-inline: auto;
}

.post-aside-right .gform_wrapper h4 {
    font-size: 18px;
    line-height: 24px;
    color: var(--white);
    text-align: center;
    margin-bottom: 10px;
    font-weight: 500;
}

.post-aside-right .gform_wrapper p {
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    color: var(--white);
}

.post-aside-right form input[type=email] {
    padding: 11px 12px;
    font-size: 12px;
    color: var(--black);
    border: none;
    outline: none;
    background-color: var(--white);
    border-radius: 8px;
}

.post-aside-right form input[type=email]::placeholder {
    color: var(--grey-100);
}

.post-aside-right .gform_validation_errors {
    display: none !important;
}

.post-aside-right .validation_message {
    font-size: 12px;
    line-height: 15px;
}