/**
 * WCU Blog Styles
 */

/* Base Container */
.wcu-blog {
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px;
}

/* Section 1 */
.wcu-blog-section-1 {
    margin-bottom: 32px;
}
.wcu-blog-hero-container {
    width: 100%;
    max-width:1440px;
    padding: 96px 64px 64px 64px;
	margin:0 auto;
}
/* Blog Hero */
.wcu-blog-hero {
    margin-bottom: 0px;
    padding: 40px 0 0 0;
	background-color:#FAFAFA;
}

.wcu-blog-hero-label {
    font-size:14px;
    font-weight: 400;
    color:#525B53;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.blog .wcu-blog-hero-heading {
    color: #000;
    margin: 0 0 16px;
    line-height:57px;
}

.blog .wcu-blog-hero-description {
    font-size:18px;
    color:#525B53;
    margin: 0;
	font-weight:400;
	line-height:28px;
    max-width: 700px;
}

.wcu-blog-active-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    background: #e6f0ff;
    border-radius: 0.5rem;
}

.wcu-blog-active-filter-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0066cc;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wcu-blog-active-filter-term {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.wcu-blog-clear-filter-btn {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 0.375rem;
}

/* Featured Post */
.wcu-blog-featured {
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
}

.wcu-blog-featured-link {
    display: block;
    text-decoration: none;
}

.wcu-blog-featured-image {
    position: relative;
    height: 355px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.wcu-blog-featured-image img {
    width: 100%;
    height:100%;

    object-fit: cover;
    transition: transform 0.4s ease;
}

/* .wcu-blog-featured-link:hover .wcu-blog-featured-image img {
    transform: scale(1.05);
} */

.wcu-blog-featured-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.wcu-blog-featured-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.wcu-blog-featured-category {
    color:#525B53;
font-family: "Inter Tight";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 19.6px; 
text-transform: uppercase;
    padding-bottom: 8px;
}

.blog .wcu-blog-featured-title {
color:#000;
font-family: "Inter Tight";
font-size: 22px;
font-style: normal;
font-weight: 500;
line-height: 28.6px;
max-width:600px;
margin:0px;
}

.wcu-blog-featured-action {
    flex: 0 0 auto;
color:#0865FF;
font-family: "Inter Tight";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 25.6px; 
}

.wcu-blog-featured-link:hover .wcu-blog-featured-action {
    text-decoration:none;
}

/* Section 2 Layout */
.wcu-blog-section-2 {
    position: relative;
	margin-top:32px;
}

.wcu-blog-layout {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

/* Sidebar */
.wcu-blog-sidebar {
    flex: 0 0 300px;
    position: sticky;
    top: 120px;
}

/* Main Content */
.wcu-blog-main {
    flex: 1;
    position: relative;
}

/* Filters */
.wcu-blog-filters {
    background:transparent;
    padding: 0px;
    border-radius: 0px;
    margin-bottom:32px;
}

.blog .wcu-blog-filters-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 24px;
    color: #000;
	display:none;
}

.wcu-blog-filter {
    margin-bottom: 32px;
}

.wcu-blog-filter:last-child {
    margin-bottom: 16px;
}

.blog .wcu-blog-filter-title {
color:#525B53;
font-family: "Inter Tight";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 21px;
margin-bottom:4px;
}
/* select box css */
/* =========================================
   BLOG FILTER SELECT
========================================= */

/* =========================================
   BLOG FILTERS
========================================= */

.wcu-blog-filters {
    width: 100%;
}


/* =========================================
   FILTER TITLE
========================================= */

.wcu-blog-filters-title {
    margin: 0 0 20px;
}


/* =========================================
   EACH FILTER
========================================= */

.wcu-blog-filter {
    width: 100%;
    margin-bottom: 24px;
}


/* =========================================
   FILTER LABEL
========================================= */

.wcu-blog-filter-title {
    margin: 0 0 8px;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;

    color: #000;
}


/* =========================================
   SELECT
========================================= */

.wcu-blog-filter-select {
    display: block;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 0 32px 12px 12px;
    margin: 0;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #000;
    background-color: #fff;
    /* REMOVE ALL SIDES */
    border: none !important;
    /* ONLY BOTTOM BORDER */
    border-bottom: 0.6px solid #E4E7E5 !important;
    border-radius: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer;
    /* Remove browser select styling */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* Arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}


/* =========================================
   HOVER
========================================= */

.wcu-blog-filter-select:hover {
    border: none !important;
    border-bottom: 0.6px solid #E4E7E5 !important;
    outline: none !important;
    box-shadow: none !important;
    background-color: #fff;
}


/* =========================================
   FOCUS
========================================= */

.wcu-blog-filter-select:focus,
.wcu-blog-filter-select:focus-visible,
.wcu-blog-filter-select:active {
    border: none !important;
    border-bottom: 0.6px solid #E4E7E5 !important;
    outline: none !important;
    box-shadow: none !important;
    background-color: #fff;
}


/* =========================================
   OPTIONS
========================================= */

.wcu-blog-filter-select option {
    font-family: inherit;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #000 !important;
    background-color: #fff !important;
    padding: 8px 12px;
}


/* =========================================
   SELECTED OPTION
========================================= */

.wcu-blog-filter-select option:checked {
    color: #000 !important;
    background-color: #E4E7E5 !important;
}


/* =========================================
   OPTION HOVER
========================================= */

.wcu-blog-filter-select option:hover {
    color: #000 !important;
    background-color: #E4E7E5 !important;
}


/* =========================================
   ACTIVE OPTION
========================================= */

.wcu-blog-filter-select option:active {
    color: #000 !important;
    background-color: #E4E7E5 !important;
}
::selection {
    background: #E4E7E5;
    color: #000;
}

/* =========================================
   CLEAR FILTER BUTTON
========================================= */

.wcu-blog-clear-filters {
    width: 100%;
    padding: 12px 14px 0;
    background: none;
    border: none !important;
    border-radius: 0;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    outline: none !important;
    box-shadow: none !important;
}
/* .wcu-blog-clear-filters:hover {
    background: #0052a3;
} */

/* CTA */
.wcu-blog-cta {
    background: white;
    padding: 0;
    border-radius: 8px;
    border: 0.6px solid #E4E7E5;
    overflow: hidden;
    text-align: left;
	 display: flex;
    justify-content: end;
    align-items: end;
    align-self: end;
}
 

.wcu-blog-cta-content-wrapper {
    display: flex;
    gap: 16px;
    align-items: center;
}

.wcu-blog-cta-image {
    flex: 0 0 auto;
	    align-items: center;
    align-self: center;
    padding: 8px;
}

.wcu-blog-cta-image img {
    width: 125px;
    height:160px;
    border-radius: 8px;
    object-fit: cover;
}
.wcu-blog-cta-content-wrapper{
display:flex;
}
.wcu-blog-cta-content {
    flex: 1;
    padding: 0px 12px 0px 0px;
    display: flex;
    flex-direction: column;
    justify-content:center;
    gap: 16px;
}

.blog .wcu-blog-cta-heading {
    color:#000;
font-family: "Inter Tight";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 25.6px;
margin:0px;
}

.blog .wcu-blog-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background:#0865FF;
    color: white;
    border: none;
    border-radius: 8px;
color:#FFF;
font-family: "Inter Tight";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 25.6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: flex-start;
	height:34px;
}

.blog .wcu-blog-cta-btn:hover {
    background:#075CE8;
}

/* Responsive CTA */
@media screen and (min-width:1281px) and (max-width:1367px) {
  .wcu-blog-hero-container,
  .wcu-blog {
  padding-left: 30px;
padding-right: 30px;
}	
}
@media screen and (max-width:1024px){
	.wcu-blog-hero-container{
     padding:80px 24px 50px 24px;
}
	.wcu-blog{
   padding:50px 24px;
}
	.wcu-blog-card-content {
    padding: 24px 0px 0px 0px;
    display: flex;
    justify-content: start;
    flex-direction: column;
}
	.wcu-blog-featured-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    flex-direction: column;
}
	
}

@media (max-width: 900px) {
    .wcu-blog-cta-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .wcu-blog-cta-image img {
        width: 100%;
        height: 220px;
    }
    
    .wcu-blog-cta-content {
        padding: 0 24px 24px;
        text-align: center;
        gap: 16px;
    }
    
    .wcu-blog-cta-heading {
        font-size: 1.5rem;
    }
    
    .wcu-blog-cta-btn {
        width: 100%;
        justify-content: center;
        align-self: center;
    }
}

/* Buttons */
.blog .wcu-blog-btn {
    color:#0865FF !important;
font-family: "Inter Tight";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 25.6px;
cursor:pointer;
	margin-top:4px;
	height:fit-content;
    transition: all 0.2s ease;
}
.blog .wcu-blog-btn svg{
width:20px !important;
height:20px !important;
}
.wcu-blog-featured-btn {
    background: white;
    color: #1a1a1a;
}

.wcu-blog-featured-btn:hover {
    background: #f0f0f0;
}

.wcu-blog-cta-btn {
    background: white;
    color: #667eea;
}

.wcu-blog-cta-btn:hover {
    background: rgba(255,255,255,0.9);
}

/* Posts Grid */
.wcu-blog-grid-wrapper {
    position: relative;
}

.wcu-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Blog Card */
.wcu-blog-card {
    background: white;
    border-radius: 0px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.wcu-blog-card-link {
    text-decoration: none;
    display: block;
}

.wcu-blog-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
	border-radius:8px;
}

.wcu-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* .wcu-blog-card-link:hover .wcu-blog-card-image img {
    transform: scale(1.05);
} */

.wcu-blog-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.wcu-blog-card-content {
    padding: 24px 0px 0px 0px;
	display:flex;
	justify-content:space-between;
}

.wcu-blog-card-category {
    color:#525B53;
font-family: "Inter Tight";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 19.6px; /* 140% */
text-transform: uppercase;
    margin-bottom: 10px;
}

.blog .wcu-blog-card-title {
    font-size:18px;
    font-weight: 400;
    color: #000;
    margin:0px;
    line-height:28px;
	max-width:312px;
}

.blog .wcu-blog-card-btn {
    padding:0px;
    background:transparent;
    color:#0865FF;
}

/* No Posts */
.wcu-blog-no-posts {
    padding: 60px 20px;
    text-align: center;
    color: #666;
}

/* Pagination */
.wcu-blog-pagination {
    margin-top: 48px;
}

.wcu-blog-pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
    justify-content:end;
    flex-wrap: wrap;
}

.wcu-blog-pagination li {
    display: inline-block;
}

.wcu-blog-pagination a,
.wcu-blog-pagination span {
    display: flex;
width:36px;
height:36px;
justify-content: center;
align-items: center;
	color:#000;
font-family: "Inter Tight";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 21px;
    transition: all 0.2s ease;
}

.wcu-blog-pagination a:hover {
    border-color: #0066cc;
    color: #0066cc;
}

.wcu-blog-pagination span.current {
   border-radius:8px;
border: 0.6px solid #E4E7E5;
background:#FFF;
}

.wcu-blog-grid-wrapper {
    position: relative;
}

/* Loader */
.wcu-blog-loader {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.9);
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 12px;
    min-height: 200px;
}

.wcu-blog-loader.active {
    display: flex;
}

.wcu-blog-loader img {
    width: 60px;
    height: 60px;
}

/* Mobile Filter */
.wcu-blog-mobile-filter {
    display: none;
    margin-bottom: 24px;
}

.wcu-blog-mobile-filter-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    background: white;
    border: 1px solid #d6d6d6;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 400;
    color: #222;
    box-shadow: none;
}

.wcu-blog-mobile-filter-btn:hover {
    border-color: #c4c4c4;
    color: #222;
}

.wcu-blog-mobile-filter-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
}

.wcu-blog-mobile-filter-icon svg {
    width: 100%;
    height: 100%;
}

.wcu-blog-mobile-filter-content {
    display: none;
    margin-top: 16px;
    border: 1px solid #d9d9d9;
    background: #fff;
    overflow: hidden;
}

.wcu-blog-mobile-filter.active .wcu-blog-mobile-filter-content {
    display: block;
}

.wcu-blog-mobile-filter-content .wcu-blog-filters {
    margin-bottom: 0;
    padding: 0;
    background: #fff;
    border-radius: 0;
}

.wcu-blog-mobile-filter-content .wcu-blog-filters-title {
    margin: 0;
    padding: 0 0 8px;
    font-size: 1rem;
    font-weight: 400;
    color: #222;
}

.wcu-blog-mobile-filter-content .wcu-blog-filter {
    margin-bottom: 0;
    padding: 24px 16px 14px;
    border-bottom: 1px solid #d9d9d9;
}

.wcu-blog-mobile-filter-content .wcu-blog-filter-title {
    margin: 0 0 6px;
    font-size: 0.875rem;
    font-weight: 400;
    color: #767676;
}

.wcu-blog-mobile-filter-content .wcu-blog-filter-select {
    width: 100%;
    min-height: 44px;
    padding: 10px 36px 10px 16px;
    border: 1px solid #d4d4d8;
    border-radius: 0;
    background-color: #fff;
    background-position: right 8px center;
    background-size: 18px;
    font-size: 1rem;
    font-weight: 400;
    color: #222;
    box-shadow: none;
}

.wcu-blog-mobile-filter-content .wcu-blog-filter-select option {
    padding: 12px 20px;
    background: #fff;
    color: #222;
}

.wcu-blog-mobile-filter-content .wcu-blog-filter-select:focus {
    border-color: #d4d4d8;
    outline: none;
    box-shadow: none;
}

.wcu-blog-mobile-clear-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    border: 0;
    background: #fff;
    color: #222;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
}

.wcu-blog-mobile-clear-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.wcu-blog-cta-mobile {
    display: none;
    margin-top: 40px;
}

/* Responsive Styles - Shared for ≤900px (tablet + mobile) */
@media (max-width: 900px) {
    .wcu-blog-layout {
        flex-direction: column;
		gap:24px;
    }
    
    .wcu-blog-sidebar {
        display: none;
    }
    
    .wcu-blog-mobile-filter {
        display: block;
		margin:0px;
		width:100%;
    }
    
    .wcu-blog-cta-mobile {
        display:none;
    }
    
    .wcu-blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablet range: 766px - 900px — show sidebar-style filters inline (no toggle) */
@media (min-width: 766px) and (max-width: 900px) {
	/* Hide the mobile toggle button */
	.blog #wcuMobileFilterBtn {
		display: none !important;
	}

	/* Force filter content always open (no .active class required) */
	.wcu-blog-mobile-filter-content {
		display: block !important;
		margin-top: 0;
		border: none;
		background: transparent;
	}

	.wcu-blog-mobile-filter.active .wcu-blog-mobile-filter-content {
		display: block !important;
	}

	/* Hide the mobile clear filters button (desktop sidebar style has no inline clear btn) */
	.blog #wcuMobileClearFilters {
		display: none !important;
	}

	/* Reset filters wrapper from mobile panel style */
	.wcu-blog-mobile-filter-content .wcu-blog-filters {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 32px;
		margin-bottom: 0;
		padding: 0;
		background: transparent;
		border-radius: 0;
	}

	/* Hide "Filters" heading in tablet range (matches sidebar behaviour where it's display:none) */
	.wcu-blog-mobile-filter-content .wcu-blog-filters-title {
		display: none !important;
	}

	/* Reset individual filter blocks from mobile panel style → sidebar style */
	.wcu-blog-mobile-filter-content .wcu-blog-filter {
		margin-bottom: 0;
		padding: 0;
		border-bottom: none;
	}

	/* Titles match sidebar (small, light, uppercase-ish tone) */
	.wcu-blog-mobile-filter-content .wcu-blog-filter-title {
		color: #525B53;
		font-family: "Inter Tight";
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 21px;
		margin-bottom: 4px;
	}

	/* Selects match sidebar bottom-border-only aesthetic */
	.wcu-blog-mobile-filter-content .wcu-blog-filter-select {
		width: 100%;
		padding: 0 0 12px 12px;
		font-size: 14px;
		border-top: none;
		border-right: none;
		border-left: none;
		border-bottom: 0.6px solid #E4E7E5;
		border-radius: 0;
		background: white;
		color: #000;
		cursor: pointer;
		appearance: none;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
		background-repeat: no-repeat;
		background-position: right 12px center;
		background-size: 16px;
		box-shadow: none;
		font-family: "Inter Tight";
		font-weight: 400;
	}

	.wcu-blog-mobile-filter-content .wcu-blog-filter-select:focus {
		outline: none;
		border-color: #E4E7E5;
		box-shadow: none;
	}
}

/* Mobile range: ≤765px — toggle button + collapsible panel (original mobile design) */
@media (max-width: 765px) {
	.wcu-blog-mobile-filter-content .wcu-blog-filters{
    display:flex;
	flex-direction:column;
	gap:24px;
}
	.blog #wcuMobileFilterBtn{
display: flex;
width:100%;
padding: 8px 14px;
justify-content: center;
align-items: center;
gap: 4px;
color:#27272A;
font-family: "Inter Tight";
font-size: 14px;
font-weight: 400;
border-radius: 8px;
border: 0.6px solid #D4D4D8;
background:#FFF;
}
	.wcu-blog-mobile-filter-content{
    border:none;
}
	.wcu-blog-mobile-filter-content .wcu-blog-filters-title{
    display:block;
		color:#27272A;
font-family: "Inter Tight";
font-size: 16px;
font-weight: 400;
padding:0px;
}
	.wcu-blog-mobile-filter-content .wcu-blog-filter-title{
   color:#71717A;
}
	.wcu-blog-mobile-filter-content .wcu-blog-filter-select{
color:#27272A;
font-family: "Inter Tight";
font-size: 14px;
font-weight: 400;
}
	.wcu-blog-mobile-filter-content .wcu-blog-filter {
    margin-bottom: 0;
    padding: 12px 14px;
    border-bottom: 0.6px solid #D4D4D8;
}
	.blog #wcuMobileClearFilters{
display: flex;
width:100%;
padding: 8px 14px;
justify-content: center;
align-items: center;
gap: 4px;
color:#27272A;
font-family: "Inter Tight";
font-size: 14px;
font-weight: 400;
margin-top:24px;
border-radius: 8px;
border: 0.6px solid  #D4D4D8;
background:none;
}
	
}
@media screen and (max-width:800px){
    .wcu-blog-hero-container {
        padding: 64px 24px 32px 24px;
    }
	.wcu-blog-hero-label{
     margin:0px 0px 8px 0px;
}
	    .wcu-blog {
        padding: 32px 24px;
    }
}
@media (max-width: 600px) {
    .wcu-blog {
        padding: 32px 16px 0px 16px; 
    }
    
    .wcu-blog-heading {
        font-size: 1.75rem;
    }
    
    .wcu-blog-featured-image {
        height: 255px;
    }

    .wcu-blog-featured-content {
        flex-direction: column;
        gap:4px;
    }

    .wcu-blog-featured-title {
        font-size: 1.375rem;
    }

    .wcu-blog-featured-action {
        margin-top: 0;
    }
    
    .wcu-blog-section-1 {
        margin-bottom: 32px;
    }
	.wcu-blog-layout{
     gap:24px;
}
	.wcu-blog-grid{
    display:grid;
	grid-template-columns:1fr;
}
}
@media screen and (max-width:500px){
	.wcu-blog-hero-container{
    padding:64px 16px 32px 16px;
}
	.wcu-blog-hero{
     padding:32px 0 0;
}
	.blog .wcu-blog-hero-heading {
    color: #000;
    margin: 0 0 16px;
    line-height: 38px;
}
	.wcu-blog-featured-image img{
    object-fit:cover;
  }
	.blog .wcu-blog-featured-title{
font-size: 18px;
line-height: 23.4px;
}
	.wcu-blog-card-content{
display: flex;
    justify-content: start;
    flex-direction: column;
}
	.wcu-blog-card-category{
    margin-bottom:8px;
	}
	.blog .wcu-blog-card-title{
     color:#000;
font-size: 18px;
font-weight: 500;
line-height: 23.4px;
margin-bottom:4px;
max-width:100%;
}
	.wcu-blog-pagination{
margin-top:24px;
}
	.wcu-blog-cta-mobile{
    display:none;
}

}
