nav.news-filter-bar {
    background-color: #E3F1F4;
    padding: 1.25rem;
    border-radius: 999px;
    margin-top: 8.25rem;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-content: center;
    align-items: center;
}

span.filter-label {
    font-weight: bold;
    font-size: 1.2rem;
    margin-left: 1.75rem;
    margin-right: .5rem;
    color: #6c7576;
    text-transform: uppercase;
}

a.filter-option {
    border-radius: 999px;
    border: 0 none;
    padding: .52rem 1rem;
    background: #bee6e4;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--color-glooko-dark-blue);
	cursor:pointer;
	text-decoration:none;
}


section.media-center-section {
    margin-top: 5.5rem;
}

section.media-center-section h2 {
	margin-top:0;
}

main.media-center-template .container {
    width: 80%;
    max-width: 1525px;
    margin: 0 auto;
	position: relative;
}

.articles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0;
}

.articles-container article {
    flex: 0 0 calc((100% - 4rem) / 3);
    max-width: calc((100% - 4rem) / 3);
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(270deg, #f5f9fd 0%, #e5f6f4 100%);
    border-radius: 30px 30px 0 0;
    position: relative;
    border: 1px solid #e5f6f4;
    box-sizing: border-box;
}

.article-image {
    overflow: hidden;
    border-radius: 30px 30px 0 0;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    margin: 2rem 2rem 2rem;
}

.article-content h3 {
    font-size: var(--font-size-hero-copy);
    margin-top: 0;
    margin-bottom: .5rem;
}

.article-content a {
	text-decoration: none;
    color: var(--color-glooko-dark-blue);
}

section.media-center-section.media-kit {
    background: #DDEAF5;
    margin-bottom: 0;
}

section.media-center-section.insights {
    background:#EFF8F8;
    margin-bottom: 0;
	margin-top:0;
}

section.media-center-section.media-kit .container,
section.media-center-section.insights .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

section.media-center-section.media-kit .container h2,
section.media-center-section.insights .container h2 {
    margin-top: 0;
    margin-bottom: 1.8rem;
}

section.media-center-section.media-kit .container p,
section.media-center-section.insights .container p {
    margin-top: 0;
    margin-bottom: 0
}

section.media-center-section.media-kit .container .content-left,
section.media-center-section.insights .container .content-left {
    padding: 2rem 0 3rem;
}

section.media-center-section.stay-connected {
	padding-bottom:7rem;
	padding-top:7rem;
    background-image:linear-gradient(62deg, rgb(197 219 239 / 32%) 0%, rgb(64 138 201 / 36%) 76%, rgb(167 204 214 / 81%) 100%);
	margin-top:0
}

section.media-center-section.stay-connected .container {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

section.media-center-section.stay-connected h3 {
	margin-top:0;
	text-align:center;
	margin-bottom:5rem;
	font-size: var(--font-size-header);
	color: var(--color-glooko-dark-blue);
	width:50%;
}

section.media-center-section.stay-connected .social-icons {
    display: flex;
    gap: 3rem;
}

section.media-center-section.stay-connected .social-icons img {
	width:9rem;
	height:9rem;
	display:block;
}




.site-footer { margin-top:0; }

/* style the carousel */

/* Swiper container sizing */
.swiper {
	width: 100%;
	margin-bottom: 2rem;
}

.swiper-slide {
	box-sizing: border-box;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background-image: linear-gradient(270deg, #f5f9fd 0%, #e5f6f4 100%);
	background-color:white;
}

.swiper-slide img {
	width: 100%;        
	height: auto;        
	object-fit: cover;    
	margin-bottom: 1rem;
	display: block;
	max-height:200px;
}

.swiper-slide h3 {
	margin: 0 0 1rem;
	font-size: 1.25rem;
}

.swiper-slide p {
	flex-grow: 1;
	margin: 0;
}


.swiper-slide .award-image {
    height: 200px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
	width:100%;
}

.swiper-slide .award-image img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    margin: 0;
}

.swiper-slide .award-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.swiper-slide .award-content h3 { color:var(--color-glooko-dark-blue); }

#scrub {
  -webkit-appearance: none;
  width: 50%;            
  height: 44px;           
  background: #f1f1f3;
  border-radius: 9999px;  
  outline: none;
  margin: 0 auto 1rem auto; 
  cursor: pointer;
  display: block;
}

/* Webkit browsers */
#scrub::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 142px;             
  height: 44px;           
  background: var(--color-glooko-light-blue);
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 0;      
}

#scrub::-webkit-slider-thumb:hover {
  background: var(--color-glooko-light-blue);
}

/* Firefox */
#scrub::-moz-range-track {
  height: 44px;
  background: #F1F1F3;
  border-radius: 9999px;
}

#scrub::-moz-range-thumb {
  width: 142px;
  height: 44px;
  background: var(--color-glooko-light-blue);
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#scrub::-moz-range-thumb:hover {
  background: var(--color-glooko-light-blue);
}

/* Focus outline */
#scrub:focus {
  outline: none;
  box-shadow: none;
}

/* Responsive */
@media (max-width:1240px) {
	nav.news-filter-bar {
		gap: 1rem;
		padding:1rem;
		margin-top:4rem;
	}

	a.filter-option,
	span.filter-label {
    	font-size: 1rem;
	}

	span.filter-label {
    	font-size: 1rem;
		margin-left:1rem;
		margin-right:0;
	}

	section.media-center-section {
		margin-top:4rem;
	}

	section.media-center-section.stay-connected h3 {
		width:80%;
		margin-bottom:2rem;
	}

	section.media-center-section.stay-connected .social-icons img {
    	width: 5rem;
    	height: 5rem;
	}
}

@media (max-width:1024px) {
	#scrub { width:100%; }

	#scrub::-webkit-slider-thumb,
	#scrub::-moz-range-thumb {
		width:80px !important;
	}
}


@media (max-width:960px) {
	nav.news-filter-bar {
        gap: .5rem 1rem;
        padding: 1rem;
		flex-wrap:wrap;
		border-radius:1rem;
    }

	a.filter-option,
	span.filter-label {
    	font-size: 1rem;
	}

	span.filter-label {
		width:100%;
    	font-size: 1rem;
		margin-left:.5rem;
		margin-right:0;
	}

	section.media-center-section {
		margin-top:2rem;
	}

	.articles-container {
    	flex-direction: column;
	}

	.articles-container article { width:100%; }

	section.media-center-section.media-kit .container .content-left, section.media-center-section.insights .container .content-left {
		width:75%;
	}

	section.media-center-section.media-kit .container, section.media-center-section.insights .container {
		flex-direction: column;
        align-items: flex-start;
        padding: 2rem 0;
        gap: 2rem;
	}

	section.media-center-section.media-kit .container .content-left, section.media-center-section.insights .container .content-left {
		width:100%;
		margin-top:0;
		padding:0;
	}

	section.media-center-section.media-kit .container .content-left h2, section.media-center-section.insights .container .content-left h2 {
		margin-bottom:1rem;
	}



}

@media (max-width:760px) {
	section.media-center-section.stay-connected {
		padding:4rem 0;
	}
	section.media-center-section.stay-connected .social-icons {
		gap:1rem;
	}
	section.media-center-section.stay-connected .social-icons img {
		width:3rem;
		height:3rem;
	}
	section.media-center-section.stay-connected h3 {
		font-size:2rem;
	}

	#scrub::-webkit-slider-thumb {
		width: 88px !important;
		height: 44px !important;
	}

	/* Firefox */
	#scrub::-moz-range-thumb {
		width: 88px !important;
		height: 44px !important;
	}
}


/* Individual News Sections */
.media-center-template.press-releases {
    margin-bottom: 7rem;
}

header.page-header {
    margin-top: 4rem;
	margin-bottom:2.75rem;
}

header.page-header h1 {
    margin: 1rem 0;
}

header .return-link {
	color:#797B7A;
	text-decoration: none;
	font-weight:bold;
}

nav.news-filter-bar.news-page {
    margin-top: 0;
    margin-bottom: 3.5rem;
}

.news-featured {
    display: flex;
    flex-direction: row;
    padding: 3.8rem 2.8rem;
    background-image: var(--gradient-glooko-teal);
    border-radius: 35px;
    gap: 3rem;
	margin-bottom:3.5rem;
}

.news-featured-image {
    width: 35%;
}

.news-featured-image img {
    width: 100%;
	border:1px solid #ccc;
}

.news-featured-content {
    width: 65%;
}

.news-featured-content small,
.news-card small {
    color: #69AEA0;
    font-weight: bold;
    font-size: 1.25rem;
}

.news-featured-content h2 {
    margin: 1.5rem 0 3rem;
    font-size: var(--font-size-header);
    line-height: 1.2;
}

.news-card h2 {
    margin: 1.5rem 0 2rem;
    font-size: 1.4rem;
    line-height: 1.2;
}

.news-featured-content h2 a,
.news-card h2 a {
    color: var(--color-glooko-dark-blue);
    text-decoration: none;
}

.card-read-more {
    color:var(--color-glooko-coral);
    text-decoration:none;
    font-weight:bold;
} 

.card-read-more::after {
    content: " >";
}

.card-read-more.in-the-news::after {
    content: " ↗";
}

.news-featured-content a.glooko-btn.glooko-btn-outline {
    margin-top: 1.5rem;
}

.news-listing {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: flex-start;
}

.news-column{
    flex: 0 0 calc((100% - 2 * 2rem) / 3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--color-glooko-blue);
    padding: 1.5rem 2.65rem;
    box-sizing: border-box;
    border-radius: 48px;
    gap: 2rem;
}

.know-seemore.countevidencemore {
    margin-top: 4.5rem;
    text-align: center;
}

.news-filter-bar-left {
    display: flex;
    flex-direction: column;
	gap:.75rem;
	min-width:190px;
}

.news-filter-bar-right {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: flex-start;
}

.news-filter-bar-right a.filter-option {
	padding:.52rem 1.5rem;
}

.news-filter-bar-left a.clear {
	margin-left: 1.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background-color: var(--color-glooko-blue);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    user-select: none;
	max-width:70px
}

.news-filter-bar-left a.clear.disabled, .news-filter-bar-left a[aria-disabled="true"] {
    background-color: #cccccc;
    color: #666666;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
    text-decoration: none;
}

.filter-option.active, .filter-option.active:hover, .filter-option.active:focus {
    background-color: var(--color-glooko-dark-blue);
    color: var(--color-glooko-teal);
}

/* News Pages / Responsive */

@media (max-width:1024px) {
	header.page-header {
		margin-bottom:0;
	}

    .news-featured {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
		margin-bottom:2rem;
    }

	.news-featured-image,
	.news-featured-content {
    	width: 100%;
	}

	.news-featured-image img {
		border-radius:18px 18px 0 0
	}

	.news-column {
    	flex: 0 0 calc((100% - 1 * 2rem) / 2);
	}

	.news-featured-content h2 {
    	margin: 1rem 0;
    	font-size: 2rem;
	}

	nav.news-filter-bar.news-page {
    	flex-direction: column;
    	border-radius: 15px;
		margin-bottom:2rem;
	}

	.news-filter-bar-left {
		width: 100%;
		flex-direction: row;
		border-bottom: 1px solid #ccc;
		padding-bottom: 10px;
		gap: 10px;
		align-items:center
	}

	.news-filter-bar-left span.filter-label,
	.news-filter-bar-left a.clear {
		margin-left:0;
	}
}

@media (max-width:840px) {
	header.page-header h1 {
    	margin: 0 0 2rem;
	}
	.news-column {
		flex: 100%;
		padding: 20px;
		border-radius: 15px;
	}
}