.blog .site-main {
    padding-top: 80px;
}

.blog .section-page-hero,
.single .section-post-hero {
    min-height: 520px;
}

.archive-content {
    padding-top: 40px;
}

.archive-content .page-sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.archive-content .page-sidebar .cat-item {
    padding: 12px 24px;
    box-shadow: 2px 0px 0px 0px rgba(0, 0, 0, 0.10) inset;
}

.archive-content .page-sidebar .cat-item a {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #2D2D2D;
    padding: 0;
    margin: 0;
    text-decoration: none;
}

.archive-content .page-sidebar .cat-item.current-cat {
    box-shadow: 2px 0px 0px 0px #0597A1 inset;
}

.archive-content .page-sidebar .cat-item.current-cat a {
    color: #0597A1;
    font-weight: 600;
}

.archive-content .page-body .row {
    row-gap: 64px;
}

.archive-content ul.page-numbers {
    margin: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 0 30px;
}

.archive-content .page-numbers a.page-numbers:not(.next):not(.prev),
.archive-content .page-numbers span.page-numbers.current,
.archive-content .page-numbers span.page-numbers.dots {
    width: 48px;
    height: 48px;
    border-radius: 500px;
    background: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    color: #2D2D2D;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.archive-content .page-numbers span.page-numbers.current {
    background: #0597A1;
    color: #fff;
}

.archive-content .page-numbers a.page-numbers.next,
.archive-content .page-numbers a.page-numbers.prev {
    padding: 15px 24px;
    border: 1px solid #B1325F;
    color: #B1325F;
    text-decoration: none;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    border-radius: 500px;
}

.archive-content .page-numbers a.page-numbers.next:hover,
.archive-content .page-numbers a.page-numbers.prev:hover {
    color: #fff;
    background: #B1325F;
}

.archive-content .page-numbers a.page-numbers:not(.next):not(.prev):hover {
    color: #0597A1;
}


.archive-content .section-cta-banner:before {
    content: none;
}

/* Post card */
.archive-content .post {
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    background: var(--White, #FFF);
    overflow: hidden;
    height: 100%;
}

.archive-content .post .post-thumbnail {
    height: 200px;
    overflow: hidden;
}

.archive-content .post .entry-content {
    padding: 38px 24px 40px;
    color: #2D2D2D;
    position: relative;
}

.archive-content .post .post-thumbnail img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.archive-content .post .post-thumbnail a {
    display: block;
    height: 100%;
}

.archive-content .post .entry-content .excerpt{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.archive-content .post .entry-content .excerpt p {
    margin: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;  
}

.archive-content .post .entry-title {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin: 0;
    margin-bottom: 8px;
}

.archive-content .post .entry-title a:hover {
    color: #0597A1;
}

.archive-content .post .entry-title a {
    text-decoration: none;
    color: #2D2D2D;
}

.archive-content .post .post-category {
    position: absolute;
    top: -12px;
    padding: 2px 12px;
    border-radius: 500px;
    background: #E6F4F5;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.archive-content .post .post-category a {
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    color: #0597A1;
    text-decoration: none;
}


@media (max-width: 767px) {
    .archive-content .page-sidebar {
        overflow-x: auto;
        width: 100%;
        margin-bottom: 32px;
    }

    .archive-content .page-sidebar ul {
        display: flex;
    }

    .archive-content .page-sidebar .cat-item {
        box-shadow: 0px -2px 0px -1px rgba(0, 0, 0, 0.10) inset;
        padding: 16px 10px;
        white-space: nowrap;
    }

    .archive-content .page-sidebar .cat-item.current-cat {
        box-shadow: 0px -2px 0px -1px #0597A1 inset;
    }

    .page-content {
        margin-top: 0;
        padding-top: 0;
    }

    .archive-content .page-body .row {
        row-gap: 30px;
    }

    .archive-content .section-cta-banner .container {
        padding: 0;
    }
}



/* Single post */

.single .page-content {
    padding-top: 80px;
}

.single .post-body {
    padding-top: 50px;
    position: relative;
}

.single .post-body:before {
    content: '';
	display: block;
	position: absolute;
	z-index: 0;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url('../img/bg-element-left-default.png');
	width: 26%;
	padding-bottom: 50%;
	top: -455px;
}

.single .page-content .container:not(.container-fixed) {
    max-width: 1254px;
    position: relative;
    z-index: 1;
}

.single .post-body .wp-block-heading,
.single .post-body p {
    max-width: 980px;
}

.single .post-body h2 {
    color: #000;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 38.4px */
    letter-spacing: -1px;
}

.single .post-body p {
    margin-top: 0;
}

.single .post-body p,
.single .post-body li {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #2D2D2D;
}

.single .post-body a {
    color: #2D2D2D;
}

.single .wp-block-separator {
    border-top: 1px solid;
    margin: 64px 0;
}

.single .section:last-of-type {
    padding-bottom: 60px;
}

.single .section-blog .container {
    padding-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.20);
}

.section-post-hero {
	min-height: 600px;
	margin-bottom: 50px;
	max-width: 2560px;
	margin: 0 auto 30px;
	position: relative;
	display: flex;
	align-items: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	z-index: 2;
}

.section-post-hero:after {
	position: absolute;
	content: "";
	background-image: url(../img/page-hero-el.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left bottom;
	bottom: 0;
	right: 0;
	width: 953.744px;
	height: 340px;
	bottom: 0;
}

.section-post-hero .background-overlay {
    background-color: #0000009E;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.section-post-hero .post-title {
	font-size: 67px;
	color: #fff;
	margin: 0;
	font-weight: 700;
	line-height: 120%; /* 80.4px */
	letter-spacing: -1px;
}

.section-post-hero .bottom-side {
	position: absolute;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
	bottom: 0;
	left: 0;
	padding: 32px;
}

.section-post-hero .hipaa-label {
	display: flex;
	gap: 12px;
	color: #fff;
	font-size: 12px;
	align-items: center;
}

.section-post-hero  .hipaa-label .bold {
	font-weight: 600;
	font-size: 14px;
}

.section-post-hero .container {
	position: relative;
	z-index: 3;
}

.section-post-hero .bottom-side {
	z-index: 2;
}

.section-post-hero .post-meta {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.section-post-hero .post-meta a {
    color: #fff;
    text-decoration: none;
}

@media (min-width: 1535px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1494px;
    }
}

@media (max-width: 1534px) {
    .single .page-content .container:not(.container-fixed) {
        max-width: 1146px;
    }
}

@media (max-width: 1280px) {
    .single .page-content .container:not(.container-fixed) {
        max-width: 960px;
    }
}



@media (max-width: 1535px) {
	.section-post-hero {
		margin-bottom: 40px;
	}

	.section-post-hero .post-title {
		font-size: 50px;
	}
}

@media (max-width: 1024px) {
	.section-post-hero .bottom-side {
		padding: 29px 24px;
	}
}

@media (max-width: 768px) {
	.section-post-hero {
		padding: 40px 12px;
		align-items: end;
	}
	.section-post-hero .video-wrapper {
		border-radius: 32px;
		overflow: hidden;
		height: calc(100vh - 90px);
		padding: 0 12px;
	}

	.section-post-hero .post-title {
		font-size: 40px;
	}

	.section-post-hero .bottom-side {
        top: 0;
        height: 100px;
        justify-content: flex-end;
    }

    .single .post-body h2 {
        font-size: 22px;
    }

    .single .post-body p,
    .single .post-body li {
        font-size: 14px;
    }
}

@media (max-width: 560px) {
	.section-post-hero {
        min-height: 475px;
		margin-bottom: 24px;
    }

	.section-post-hero .post-title {
		font-size: 32px;
		padding-right: 25%;
	}

	.section-post-hero .scroll-el {
		display: none;
	}

	.section-post-hero .background-overlay {
		background: linear-gradient(to bottom, rgba(118, 118, 118, 0.00) 0%, #2D2D2D 64%);
        opacity: 1;
	}

	.section-post-hero:after {
		content: none;
	}

    .single .section:last-of-type {
        padding-bottom: 30px;
    }

    .single .wp-block-separator {
        margin: 40px 0;
    }

    .single .post-body {
        padding-top: 20px;
    }

    .single .section-blog .container {
        padding-top: 48px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) 
and (orientation: portrait) {
	.section-post-hero{
		height: auto;
		min-height: 50vh;
	}
}




/* Providers archive */
.providers-archive .archive-content {
    padding-top: 48px;
}

.section.locations-select {
    padding: 24px 0 48px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.locations-select .heading {
	display: flex;
	column-gap: 70px;
	align-items: center;
	flex-wrap: wrap;
	row-gap: 16px;
}

.locations-select .pre-title {
	margin-bottom: 0;
}

.locations-select .states-navigation {
	display: flex;
	column-gap: 18px;
	align-items: center;
}

.locations-select .states-navigation .nav-item {
	border-radius: 500px;
	border: 1px solid rgba(45, 45, 45, 0.40);
	color: #2D2D2D;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%;
	background: transparent;
	padding: 12px 24px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
    display: inline-block;
    text-decoration: none;
}

.locations-select .states-navigation .nav-item:hover {
	background: rgba(45, 45, 45, 0.20);
}

.locations-select .states-navigation .nav-item.active:hover {
	background: #2D2D2D;
}

.locations-select .states-navigation .nav-item.active {
	border: 1px solid #2D2D2D;
	background: #2D2D2D;
	color: #fff;
}

.locations-select .pre-title {
	margin-bottom: 0;
}

.providers-archive .section-cta-banner .container {
    padding: 0;
}

.providers-archive .spec-title {
    color: #000;
    margin: 0;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 38.4px */
    letter-spacing: -1px;
    margin-bottom: 32px;
}


/* Provider card */
.provider-card {
    color: #2D2D2D;
}

.provider-card .post-thumbnail {
    height: 300px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 24px;
}

.provider-card .post-thumbnail a {
    display: block;
    height: 100%;
}

.provider-card .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.provider-card .entry-title {
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-top: 0;
    margin-bottom: 10px;
}

.provider-card .excerpt {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 24px;
}

.provider-card .btn-more {
    padding: 12px 24px;
    border-radius: 500px;
    border: 1px solid  #7F7F7F;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    text-align: center;
    color: #2D2D2D;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}


@media (max-width: 560px) {
    .providers-archive .section.locations-select {
        padding: 10px 0 32px;
    }

    .providers-archive .archive-content {
        padding-top: 32px;
    }

    .provider-card .btn-more {
        display: block;
        margin-bottom: 20px;
    }

    .providers-archive .spec-title {
        display: none;
    }
}
