/* GENERAL */
.flex {
  display: flex;
}
.space-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.gap-20 {
  gap:20px;
}

/* DARK LAYOUT */

.dark-grid .dpc-title-bar h2 {
  color: #fff !important;
}

.dark-grid .dpc-card {
  background: #011F2A;
}

.dark-grid .dpc-card:hover {
	background: #01161E;
}
	
.dark-grid .dpc-title a {
  color:#fff !important;
}

.dark-grid .dpc-author-meta {
  color: #BABABA;
}

.dark-grid .dpc-excerpt  {
  color:#fff;
}

.dark-grid .dpc-view-all {
	display: none;
}

.dpc-excerpt-grid.dark-grid .dpc-card {
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}

/* TABS */

.blog-tabs .tab-titles-2 {
	text-align: left;
    display: inline-flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 29px;
    flex-wrap: wrap;
	padding: 0 10px;
    /* overflow: scroll;*/
}

.blog-tabs .title-item-2 {
    background-color: #00424D;
    border-radius: 25px;
    padding: 10px 30px;
    border: 1px solid #00424D;
    color: #fff;
    text-align: center;
    min-width: unset;
    margin-left:0;
}

.blog-tabs .title-item-2  h5 {
  color:#fff !important;
  font-size: 18px;
  font-weight: bold;
}

.blog-tabs .title-item-2.tab-active, .blog-tabs .title-item-2:hover {
  background-color: #00B5CF;
  border:1px solid #00B5CF;
}

.blog-tabs .tab-titles-2 .title-item-2:last-child {
  display: none;
}

/* SEARCH */

.dashtera-search-wrapper {
  display: flex;
  align-items: center;
  gap:20px;
  position: relative;
}

.dashtera-search-wrapper .blog-filter-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: #018EA3;
    border-radius: 7px;
    font-size:18px;
    font-weight: 600;
}

.dashtera-search-wrapper .blog-filter-button:hover {
  background-color: #00424D;
}

.search-results-line {
  opacity: 0;
  transition: opacity 0.3s ease;
  height: auto;
  visibility: hidden;
  text-align: center;
  margin-bottom: 40px;
  color: #011F2A;
  font-weight: 500;
  font-size: 36px;
}

.search-results-line #search-query {
    font-style: italic;
}

.search-results-line.visible {
  opacity: 1;
  visibility: visible;
}

.dashtera-search-wrapper .search-container {
  width: 350px;
}

.dashtera-search-wrapper .dashtera-search-blog {
    width: 100%;
    padding: 16px 40px 16px 16px !important;
    border: 1px solid #011F2A !important;
    border-radius: 7px !important;
    background-color: #fff !important;
    color: #212121 !important;
    font-size: 16px;
    font-weight: 400;
    transition: border 0.2s ease-in-out;
}

.dashtera-search-wrapper .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashtera-search-wrapper .icon.clear-icon {
    display: none;
}

.dashtera-search-wrapper  .search-container .dashtera-search-blog:focus {
  border:1px solid #018EA3 !important;
}

/* SEARCH FILTERS */
/* Modal background */
.filters-modal {
    background: white;
    border-radius: 22px;
    width: 600px;
    margin: auto;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: absolute;
    z-index: 9;
    right: -4px;
    margin-top: 10px;
    border: 2px solid #011F2A;
}

/* Header */
.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #018EA3;
    padding-bottom: 20px;
    margin-bottom: 20px !important;
}

.filters-header h4 {
    margin: 0;
    font-size: 28px !important;
    line-height: 100%;
    font-weight: 600;
    color: #212121 !important;
}

.close-filters {
  	background: none;
  	border: none;
  	cursor: pointer;
  	line-height: 1;
    color: #212121;
    padding: 0;
    font-size: 42px !important;
}

.close-filters:hover {
  background-color: transparent;
  color: #018EA3;
}

/* Section layout */
.filters-body {
  margin-top: 15px;
}

.filters-row {
  display: flex;
  gap: 50px;
  margin-bottom: 20px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.filter-group label {
    display: block;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
}

.filter-group input[type="date"],
.filter-group select {
	padding: 8px 10px;
    border-radius: 9px;
    border: 1px solid #0F343C;
    min-width: 150px;
	font-size: 16px;
    font-weight: 300;
}

.filters-modal {
    display: none;
}

.filters-modal.open {
    display: block;
}

/* Industry tags */
.filters-section {
  margin-top: 15px;
}

.filters-section label {
    color: #212121;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 30px;
    margin-top: 20px;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.filter-tags .tag {
    background: #EFF6FE;
    color: #212121;
    padding: 8px 14px;
    border-radius: 9px;
    cursor: pointer;
    font-size: 14px;
	border: 1px solid #ADD3FF;
}

.filter-tags .tag:hover, .filter-tags .tag.active {
    background: #018EA3;
    color: white;
	border: 1px solid #018EA3;
}

/* Footer buttons */
.filters-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 40px;
}

.clear-btn {
    background: #DE3323;
    border: 1px solid #FF5040;
    border-radius: 20px;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 20px;
}

.clear-btn:hover, .clear-btn:focus  {
  background-color: #219ebc;
  color:#fff;
  border:1px solid #219ebc;
}

.apply-btn {
    background: #219ebc;
    color: white;
    border: none;
    padding: 8px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.apply-btn:hover {
  background-color: #0F343C;
}


/* CATEGORIES */
.dpc-categories {
	display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dpc-card-content .dpc-categories a {
	color:#fff;
}

.dpc-cat {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    padding: 5px 20px;
    margin-right: 0;
	margin-bottom: 0;
    border-radius: 7px;
    text-transform: capitalize;
    line-height: 1;
    background: #011F2A;
}

/*
.cat-news { background: #834702; }
.cat-tutorials { background: #175AEA; }
.cat-showcase { background: #C08F08; }
.cat-performance { background: #00C8A7; }
.cat-case-studies { background: #DE5D23; }
.cat-updates { background: #834702; }
.cat-articles   { background: #DE5D23; }
.cat-latest   { background: #00C8A7; }
*/

/* CARD CONTENT */

.dpc-card-content {
    display: flex;
    flex-direction: column;
	justify-content: space-between;
	flex: 1;
    gap: 20px;
}

/* TITLE */
.dpc-title {
    font-weight: 700;
    margin: 0;
    line-height: 100% !important;
}
.dpc-title a {
  color: #212121 !important;
  font-size: 20px !important;
  line-height: 100% !important;
}
.dpc-title a:hover {
  text-decoration: underline;
}

.dpc-excerpt-grid .dpc-title a {
  font-size: 36px !important;
  line-height: 100% !important;
}

.dpc-excerpt-grid .dpc-card .dpc-image {
	border-radius: 14px;
}

/* AUTHOR */
.dpc-author-meta {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #212121;
  gap: 10px;
}
.dpc-avatar {
    width: 24px;
    height: 24px !important;
    border-radius: 50% !important;
    object-fit: cover;
}


/* CONTENT */

.dpc-excerpt {
  font-size: 14px;
  line-height: 26px;
}

/* TITLE BAR */
.dpc-title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.dpc-title-bar h2 {
    font-size: 28px !important;
    font-weight: 600;
    margin: 0;
    color: #005864 !important;
}
.dpc-view-all {
    font-size: 20px !important;
    font-weight: 400;
    padding: 8px 20px;
    border: 1px solid #011F2A;
    border-radius: 10px;
    text-decoration: none;
    color: #011F2A !important;
    transition: all 0.2s ease;
}
.dpc-view-all:hover {
  background-color: #00424D;
  color: #fff !important;
}

/* VERTICAL LIST */
.dpc-vertical-list {
  display: flex;
  flex-direction: column;
  gap: 37px;
}

.dpc-vertical-list .dpc-card {
  flex-direction: row;
}

.dpc-vertical-list .dpc-card .dpc-categories {
  margin-top: 0;
}

.dpc-vertical-list .dpc-card .dpc-image {
  width: 40%;
}

.dpc-vertical-list .dpc-card .dpc-card-content {
  width: 60%;
}

/* GRID WRAPPER */
.dpc-grid-wrapper {
  margin-bottom: 40px;
}

/* HORIZONTAL LIST */

.dpc-horizontal-slider .slick-slide {
  margin: 0 10px; /* Horizontal gap */
}
.dpc-horizontal-slider .slick-list {
  margin: 0 -10px; /* Cancels padding on first/last slide */
}

.dpc-horizontal-slider .slick-slide.dpc-view-more-card {
    background-color: #00343D;
    align-items: center;
    justify-content: center;
    position: relative;
	cursor: pointer;
}

.dpc-horizontal-slider .slick-slide.dpc-view-more-card:hover {
	background-color: #127885;
}

.dpc-horizontal-slider .slick-slide.dpc-view-more-card  a.dpc-view-more {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
}

.dpc-horizontal-slider .slick-slide.dpc-view-more-card  a.dpc-view-more:hover {
  text-decoration: underline;
}

.dpc-horizontal-slider  .dpc-view-more-svg {
	transition: transform 0.3s ease;
    position: absolute;
    bottom: 40px;
    right: 30px;
    width: 64px;
    height: 64px;
    background-color: #D8EAFF26;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dpc-horizontal-slider  .dpc-view-more-svg:hover {
  transform: scale(1.05);
}

.dpc-horizontal-slider .slick-track {
    display: flex !important;
	margin-left: unset !important;
}

.dpc-horizontal-slider .slick-track .slick-slide {
    height: inherit !important;
	display: flex !important;
}

.dpc-horizontal-slider { display: none; }
.dpc-horizontal-slider.slick-initialized { display: block; }

.dpc-horizontal-slider .dpc-card .dpc-title {
	margin-bottom: auto;
}

/* POST GRID */
.dpc-post-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dpc-post-grid .dpc-title {
	margin-bottom: auto;
}

@media (max-width: 1024px) {
  .dpc-post-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .dpc-post-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.dpc-card {
  background: #EFF6FE;
  border-radius: 14px;
  box-shadow: 0px 2.56px 8.7px rgba(0, 0, 0, 0.25);
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dpc-card .dpc-image {
  width: 100%;
  height: auto;
  border-radius: 14px;
}
.dpc-card .dpc-image img {
  width: 100%;
  /*height: 100%;
  object-fit: cover;
  object-position: center center;*/
  border-radius: 8px;
}

/* FEATURED */
.dpc-featured-wrapper {
  margin-bottom: 40px;
}
.dpc-featured-grid {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.dpc-featured-grid .dpc-card-content .dpc-title {
	margin-bottom: auto;
}
.dpc-featured-main {
  width: 45%;
  background: #EFF6FE;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0px 2.97px 10.1px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}
.dpc-featured-main .dpc-image img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  /*height: 100%;
  object-fit: cover;
  object-position: center center;*/
}
.dpc-featured-main .dpc-title {
  font-weight: 400;
  margin: 0;
}
.dpc-featured-main .dpc-title a {
  font-size: 36px !important;
  line-height: 100% !important;
}
.dpc-featured-list {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 37px;
}

/* PAGINATION */
.dpc-pagination {
  margin-top: 60px;
  text-align: center;
}

.dpc-pagination .page-numbers:not(li) {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    justify-content: center;
    gap: 20px;
}

.dpc-pagination li .page-numbers {
    padding: 6px 12px;
    border-radius: 20px;
    color: #212121;
    font-size: 24px;
    font-weight: 400;
    transition: all 0.2s ease;
}

.dpc-pagination li .page-numbers.current, .dpc-pagination li .page-numbers:hover {
  background-color: #00B5CF;
  color: #fff;
  border-color: #00B5CF;
}

.dpc-pagination .page-numbers .prev, .dpc-pagination .page-numbers .next {
	font-size:0;
	padding: 0;
	width: 64px;
	height:65px;
	background-color: #D8EAFF;
	border-radius: 100px;
}

.dpc-pagination .page-numbers .prev:hover, .dpc-pagination .page-numbers .next:hover {
	background-color: #D8EAFF;
}

.dpc-pagination .page-numbers .prev:before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url("data:image/svg+xml;utf8,<svg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'><mask id='mask0_1934_8319' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='32' height='32'><rect width='31.2896' height='31.2896' fill='%23002F3F'/></mask><g mask='url(%23mask0_1934_8319)'><path d='M20.8654 28.6818L7.82812 15.6445L20.8654 2.60718L23.1796 4.9213L12.4564 15.6445L23.1796 26.3677L20.8654 28.6818Z' fill='%23002F3F'/></g></svg>") no-repeat center / contain;
	left: 10px;
    position: relative;
}

.dpc-pagination .page-numbers .next:before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url("data:image/svg+xml;utf8,<svg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'><mask id='mask0_1934_8320' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='32' height='32'><rect width='31.2896' height='31.2896' fill='%23002F3F'/></mask><g mask='url(%23mask0_1934_8320)'><path d='M11.1342 2.60718L24.1715 15.6445L11.1342 28.6818L8.82004 26.3677L19.5432 15.6445L8.82004 4.9213L11.1342 2.60718Z' fill='%23002F3F'/></g></svg>") no-repeat center / contain;
	left: 10px;
    position: relative;
}

/* SLICK PAGINATIONS */

.dpc-horizontal-slider  .slick-track {
  padding: 5px 0;
}

.dpc-horizontal-slider .slick-dots {
    display: none !important;
    justify-content: center;
	align-items: center;
    gap: 15px;
}

.dpc-horizontal-slider .slick-dots li {
	margin: 0;
}

.dpc-horizontal-slider .slick-dots li button {
	padding: 0;
    margin: 0;
    width: 8px;
    height: 8px;
    line-height: 0;
    background-color: #B4C4C7;
    border-radius: 100px;
}

.dpc-horizontal-slider .slick-dots li.slick-active button {
	width: 16px;
	height: 16px;
	background-color: #00B5CF;
}

.dpc-horizontal-slider .slick-dots li button:before {
  display: none;
}

.dpc-horizontal-slider .slick-arrow:before {
	display: none;
}

.dpc-horizontal-slider .slick-arrow:focus {
	background-color: #D8EAFF;
}

.dpc-horizontal-slider .slick-arrow {
    width: 64px;
    height: 64px;
    border-radius: 100px;
    position: absolute;
    top: unset;
    left: unset !important;
    margin-top: 0;
    background: #D8EAFF;
	bottom: -90px;
	transform: none;
}

.dpc-horizontal-slider .slick-arrow:hover {
	background: #D8EAFF !important;
}

.dpc-horizontal-slider .slick-arrow.slick-prev {
	right: 100px;
} 

.dpc-horizontal-slider .slick-arrow.slick-next {
	right: 10px;
}

/* NEWSLETTER */
.nl-subscribe-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nl-subscribe-form input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.nl-subscribe-form button {
  background-color: #f26522; /* orange */
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  font-weight: bold;
}

.nl-subscribe-form button:hover {
  background-color: #d9531e;
}

.nl-subscribe-form .email-field {
	flex:1;
}

.nl-subscribe-form .email-field input[type="text"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.nl-subscribe-form .subscribe-button input[type="button"] {
  background-color: #f26522; /* orange */
  color: white;
  border: none;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  font-weight: bold;
}

.nl-subscribe-form .subscribe-button input[type="button"]:hover {
  background-color: #d9531e;
}

/* DASHTERA BLOG ARCHIVE PAGE */

.archive.category .site,
.archive.tag .site {
    background-color: #EFF6FE;
    width: 100%;
    max-width: unset;
}

.archive.category .site .site-content,
.archive.tag .site .site-content {
    max-width: 1470px;
    margin: auto;
    padding: 60px 15px;
}

/*  BREADCRUMBS */

.dpc-breadcrumbs,
.dpc-breadcrumbs p {
    margin-bottom: 0;
}

.dpc-breadcrumbs a,
.dpc-breadcrumbs span {
    color: #018EA3 !important;
    font-size: 18px !important;
    font-weight: bold;
}

/* PAGE HEADER */

.archive.category .page-header,
.archive.tag .page-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0;
    margin: 0px 0 40px !important;
    border-bottom: 0;
}

.archive.category .page-header .category-title {
    display: flex;
    gap: 10px;
    position: relative;
}

.archive.category .page-header .page-title,
.archive.tag .page-header .page-title {
    margin: 0;
    font-size: 45px;
    font-weight: bold;
}

.archive.category .page-header .dpc-cat-search {
    position: relative;
}

/* CATEGORY DROPDOWN */

/* Wrapper around the button + dropdown */
.dpc-cat-switcher {
    display: inline-block;
}

/* Button that visually replaces the archive title */
.dpc-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: 0;
    border: none;
    background: transparent !important;
    cursor: pointer;
    font: inherit;
}

/* Make it look like your archive H1 */
.dpc-cat-btn-label {
    font-size: 2.3rem;  /* tweak to taste */
    font-weight: 700;
    color: #01161E;
}

.dpc-cat-arrow {
    font-size: 1.1rem;
}

/* Dropdown panel (hidden by default) */
.dpc-cat-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 430px;
    background: #ffffff;
    border: 1px solid #011F2A;
    border-radius: 20px;
    padding: 20px 30px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .16s ease, transform .16s ease;
    z-index: 999;
}

/* OPEN on focus (works for click/tap on both desktop + mobile) */
.dpc-cat-switcher:focus-within .dpc-cat-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* ADDITIONAL: hover behavior ONLY on devices that actually support hover (desktop) */
@media (hover: hover) and (pointer: fine) {
    .dpc-cat-switcher:hover .dpc-cat-dropdown {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}

/* Dropdown items */
.dpc-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #000000 !important;
    font-size: 28px !important;
    line-height: 100% !important;
    padding: 15px 0;
}

.dpc-cat-item.is-current {
    color: #7A64F7 !important;
}

.dpc-cat-item:hover {
    color: #7A64F7 !important;
    text-decoration: none;
}

/* POSTS & FEATURED WRAPPER */

.archive.category .post {
    padding-bottom: 15px !important;
	box-shadow: 0px 2.97px 10.1px rgba(0, 0, 0, 0.25);
}

.archive.category .dpc-featured-wrapper {
    margin-bottom: 40px !important;
}

/* PAGINATION */

.paging-navigation {
    margin-top: 40px;
    text-align: center;
}

.paging-navigation .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.paging-navigation .page-numbers {
    padding: 6px 12px !important;
    border-radius: 20px;
    color: #212121 !important;
    font-size: 24px;
    font-weight: 400 !important;
    transition: all 0.2s ease;
}

.paging-navigation .page-numbers.current,
.paging-navigation .page-numbers:hover {
    background-color: #00B5CF !important;
    color: #fff !important;
    border-color: #00B5CF !important;
    text-decoration: none !important;
}

.paging-navigation .nav-links .prev,
.paging-navigation .nav-links .next {
    font-size: 0;
    padding: 0 !important;
    width: 64px;
    height: 65px;
    background-color: #D8EAFF;
    border-radius: 100px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.paging-navigation .nav-links .prev:hover,
.paging-navigation .nav-links .next:hover {
    background-color: #D8EAFF !important;
}

.paging-navigation .nav-links .prev:before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url("data:image/svg+xml;utf8,<svg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'><mask id='mask0_1934_8319' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='32' height='32'><rect width='31.2896' height='31.2896' fill='%23002F3F'/></mask><g mask='url(%23mask0_1934_8319)'><path d='M20.8654 28.6818L7.82812 15.6445L20.8654 2.60718L23.1796 4.9213L12.4564 15.6445L23.1796 26.3677L20.8654 28.6818Z' fill='%23002F3F'/></g></svg>") no-repeat center / contain;
    left: 0;
    position: relative;
}

.paging-navigation .nav-links .next:before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url("data:image/svg+xml;utf8,<svg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'><mask id='mask0_1934_8320' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='32' height='32'><rect width='31.2896' height='31.2896' fill='%23002F3F'/></mask><g mask='url(%23mask0_1934_8320)'><path d='M11.1342 2.60718L24.1715 15.6445L11.1342 28.6818L8.82004 26.3677L19.5432 15.6445L8.82004 4.9213L11.1342 2.60718Z' fill='%23002F3F'/></g></svg>") no-repeat center / contain;
    left: 0;
    position: relative;
}

/* RESPONSIVE */

@media (min-width: 1025px) and (max-width: 1200px) {

.dpc-excerpt-grid .dpc-title a {
    font-size: 24px !important;
    line-height: 100% !important;
}
	
	.dpc-card {
		gap: 15px;
		padding: 10px;
	}
	
	.dpc-card-content {
		gap:15px;
	}
	
.dpc-title, .dpc-title a {
    font-size: 16px !important;
    line-height: 20px !important;
}

	.dpc-author-meta {
		font-size: 11px;
		gap: 7px;
	}
	
	.dpc-cat {
		font-size: 14px;
	}
	

.dpc-featured-main .dpc-title a {
    font-size: 28px !important;
    line-height: 32px !important;
}
	
.dpc-post-grid .dpc-categories a {
    font-size: 14px;
    padding: 5px 15px;
}
	
}

@media (min-width: 768px) and (max-width: 1024px) {

	
.dpc-title-bar h2 {
	font-size: 15px !important;
}

.dpc-excerpt-grid .dpc-title a {
    font-size: 25px !important;
    font-weight: 500;
	line-height: 35pX !important;
}

.dpc-card {
	padding: 10px;
	gap:10px;
}

.dpc-card-content {
	gap: 10px;
	justify-content: flex-start;
}	
	
.dpc-categories {
	gap: 4px;
}	
	
.dpc-cat {
	font-size: 10px;
	border-radius: 3px;
	padding: 5px 10px;
}
	
.dark-grid .dpc-excerpt {
    color: #fff;
    font-size: 13px;
    line-height: 22px;
}

.dpc-excerpt {
    font-size: 13px;
    line-height: 22px;
}

.dpc-title, .dpc-title a {
    font-size: 13px !important;
    line-height: 20px !important;
    font-weight: 600;
}
	
.dpc-author-meta {
	font-size: 9px;
	gap: 5px;
}
	
.dpc-avatar {
    width: 12px;
    height: 12px !important;
}

	.dashtera-search-wrapper .blog-filter-button {
		font-size: 14px;
		padding: 0px 20px;
	}
	
	.dashtera-search-wrapper .dashtera-search-blog {
		font-size: 14px;
		padding: 7px 40px 7px 16px !important;
	}

	.blog-tabs .tab-titles-2 {
		gap:15px;
		padding: 0;
	}
	
	.blog-tabs .title-item-2 {
		width: auto;
	}
	
	.blog-tabs .title-item-2 h5 {
		font-size: 13px;
	}

	.dpc-view-all {
		font-size: 14px !important;
		line-height: 16px;
		padding: 5px 20px;
	}

	.dpc-featured-main {
		padding: 10px;
		width: 50%;
	}
	
	.dpc-featured-list {
		width: 50%;
		gap: 20px;
	}
	
	.dpc-featured-main .dpc-title a {
		font-size: 22px !important;
        font-weight: 500 !important;
	}
	
	.dpc-featured-main .dpc-card-content {
		gap:30px;
	}
	
	.dpc-featured-grid {
		gap: 5%;
	}
	
	.dpc-card-content .dpc-categories a {
		font-size: 10px !important;
	}
	
	.nl-subscribe-form {
		gap: 20px;
    	flex-direction: column;
	}
	
	.nl-subscribe-form input[type="email"] {
		width: 100%;
	}
	
	.nl-subscribe-form .email-field {
		width:100%;
	}

/* Archive page */
.archive .dashtera-search-wrapper .search-container {
    width: 200px;
}

.archive.category .page-header, .archive.tag .page-header {
	align-items: center;
}
	
.archive.category .page-header .page-title, .archive.tag .page-header .page-title {
	font-size: 28px;
	line-height: 100%;
}
	
.dpc-cat-switcher {
	padding-top: 5px;
}
	
.dpc-cat-item {
	font-size: 18px !important;
    padding: 10px 0;	
}
	
.dpc-cat-dropdown .dpc-check {
	top: 3px;
    position: relative;	
}
	
}

@media (min-width: 577px) and (max-width: 767px) {

    .dpc-title-bar h2 {
        font-size: 24px !important;
    }
	
.dpc-cat {
        font-size: 10px;
    }
	
    .dpc-excerpt-grid .dpc-title a {
        font-size: 24px !important;
        line-height: 32px !important;
    }
	
    .dpc-excerpt {
        margin-top: 0;
        font-size: 12px;
        line-height: 18px;
    }
	
    .dpc-author-meta {
        font-size: 9px;
    }
	
    .dpc-card {
        padding: 10px;
        gap: 10px;
    }
	
    .dpc-card-content {
        gap: 10px;
    }
	
    .dpc-title, .dpc-title a {
        font-size: 12px !important;
        line-height: 20px !important;
        font-weight: 600;
    }
	
    .dpc-avatar {
        width: 12px;
        height: 12px !important;
    }

    .dashtera-search-wrapper {
        flex-direction: row-reverse;
    }
	
    .dashtera-search-wrapper .search-container {
        position: relative;
    }
	
.dashtera-search-wrapper .search-container {
    width: 767px;
}
	
    .dashtera-search-wrapper .dashtera-search-blog {
        font-size: 12px;
        padding: 14px 40px 13px 16px !important;
    }
	
    .dashtera-search-wrapper .blog-filter-button {
        gap: 10px;
        font-size: 12px;
        padding: 5px 20px;
    }
	
	.filters-header h4 {
		font-size: 18px !important;
	}
	.filter-group label {
		font-size: 12px;
	}
	
	.filter-group input[type="date"], .filter-group select {
		font-size:12px;
	}
	
	.apply-btn, .clear-btn {
		font-size: 12px;
	}
	
.filters-modal {
  width: 100%;
  right: 0;
}
	
.blog-tabs .tab-titles-2 {
        gap: 10px;
		padding: 0px;
    }
	
    .blog-tabs .title-item-2 {
        width: auto;
    }
	
    .blog-tabs .title-item-2 h5 {
        font-size: 12px;
    }
	
.dpc-view-all {
	font-size: 15px !important;
	}
	
    .dpc-horizontal-slider .slick-arrow {
        display: none !important;
    }

    .dpc-horizontal-slider .slick-dots {
        display: flex !important;
    }
	
    .dpc-featured-grid {
        flex-direction: column;
    }
	
    .dpc-featured-main, .dpc-featured-list {
        width: 100%;
    }
	
.dpc-featured-grid .dpc-featured-main .dpc-title a {
    font-size: 16px !important;
	font-weight: bold;
}
	
.dpc-featured-grid .dpc-featured-main .dpc-card-content {
	gap:20px;
}
	
.dpc-featured-grid .dpc-card-content .dpc-title {
    margin-bottom: unset;
}
	
/* POST GRID */
	
.dpc-post-grid {
	grid-template-columns: repeat(1, 1fr);
	margin-top: 30px;
	gap: 30px;
}
	
.dpc-post-grid .dpc-card {
	flex-direction: row;
}
	
.dpc-post-grid .dpc-card .dpc-image {
	width: 40%;
}
	
.dpc-post-grid .dpc-card .dpc-card-content {
	width: 60%;
}
	
.dpc-post-grid .dpc-title {
    margin-bottom: unset;
}
	
.dpc-card-content .dpc-categories a {
	font-size: 10px;
}

.dpc-pagination .page-numbers .prev, .dpc-pagination .page-numbers .next {
    width: 48px;
    height: 48px;
}
	
.dpc-pagination .page-numbers .next:before {
	width: 23px;
    height: 23px;
	left: 5px;
}

.dpc-pagination .page-numbers:not(li) {
  gap:10px;
}

.dpc-pagination li .page-numbers {
  font-size:12px;
  padding: 3px 12px;
}
	
/* Archive page */
.archive .dashtera-search-wrapper .search-container {
    width: 200px;
}

.archive.category .page-header, .archive.tag .page-header {
	display: block;
}

.archive.category .page-header .dpc-cat-search {
	margin-top: 10px;
}
	
.archive .dashtera-search-wrapper .search-container {
	width: 100%;
}
	
.archive.category .page-header .page-title, .archive.tag .page-header .page-title {
	font-size: 28px;
	line-height: 100%;
}
	
.dpc-cat-switcher {
	padding-top: 5px;
}
	
.dpc-cat-item {
	font-size: 18px !important;
    padding: 10px 0;	
}
	
.dpc-cat-dropdown .dpc-check {
	top: 3px;
    position: relative;	
}

.paging-navigation .page-numbers {
	font-size: 12px;
	padding: 3px 12px !important;
}
	
.paging-navigation .nav-links .prev, .paging-navigation .nav-links .next {
	width: 48px;
	height: 48px;
}
	
.paging-navigation .nav-links .next:before {
	width: 23px;
	height: 23px;
}
	
}

@media only screen and (max-width: 576px) {

/* FEATURED GRID */

.dpc-featured-grid {
  flex-direction: column;
	gap: 37px;
}
	
.dpc-post-grid {
	gap: 37px;
}

.dpc-featured-wrapper {
    margin-bottom: 15px !important;
}
	
.dpc-featured-main, .dpc-featured-list {
  width: 100%;
}

.dpc-excerpt-grid .dpc-title a {
	font-size: 24px !important;
    line-height: 32px !important;
}
	
.dpc-excerpt-grid .dpc-cat {
	font-size: 15px;
}
	
.dpc-excerpt-grid .dpc-excerpt {
	font-size: 15px;
	line-height: 24px;
}

.dpc-author-meta {
  font-size: 9px;
}

.dpc-title-bar h2 {
  font-size: 24px !important;
}

.dpc-excerpt {
    margin-top: 20px;
    font-size: 12px;
    line-height: 18px;
}

	.dpc-card-content {
		gap: 10px;
	}

	.dpc-card {
		padding: 10px;
		gap: 10px;
	}
.dpc-title {
  font-size: 12px !important;
  line-height: 120% !important;
}

	.blog-tabs .title-item-2 {
		width: auto;
	}
	
	.blog-tabs .tab-titles-2 {
		gap: 10px;
		padding: 0px;
	}
	
	.filters-header h4 {
		font-size: 18px !important;
	}
	.filter-group label {
		font-size: 12px;
	}
	
	.filter-group input[type="date"], .filter-group select {
		font-size:12px;
	}
	
	.apply-btn, .clear-btn {
		font-size: 12px;
	}

.dpc-title a {
  font-size: 12px !important;
  line-height: 120% !important;
}

.dpc-cat {
  font-size: 10px;
}

.dashtera-search-wrapper .search-container {
    position: relative;
}

.dashtera-search-wrapper {
  flex-direction: row-reverse;
}

.dashtera-search-wrapper .blog-filter-button {
  gap: 10px;
  font-size: 12px;
  padding: 5px 20px;
}
	
.dashtera-search-wrapper .dashtera-search-blog {
	font-size: 12px;
	padding: 14px 40px 13px 16px !important;
}

.filters-modal {
  width: 100%;
  right: 0;
}

.filters-header h2 {
  font-size: 20px;
}

.filters-row {
	gap: 20px;
	flex-direction: column;
	margin-bottom: 0;
}

.filter-group label {
  width: 70px;
}

.filters-section label {
  font-size: 18px !important;
}

.filter-tags {
  gap: 10px;
  justify-content: flex-start;
}

.filter-tags .tag {
  font-size: 12px;
}

.filters-footer {
  justify-content: center;
}

.blog-tabs .title-item-2 h5 {
  font-size: 12px;
}

.dpc-view-all {
  font-size: 15px !important;
}

.nl-subscribe-form {
  flex-direction: column;
}

.nl-subscribe-form input[type="email"] {
  width: calc(100% - 35px);
}

.nl-subscribe-form .email-field {
  width: 100%;
}
	
.nl-subscribe-form button {
  padding: 10px 25px;
  font-size: 16px;
  margin-top: 40px;
}
	
.nl-subscribe-form .subscribe-button input[type="button"] {
  padding: 10px 25px;
  font-size: 16px;
  margin-top: 30px;
}

.dpc-featured-grid .dpc-featured-main .dpc-title a {
    font-size: 16px !important;
	font-weight: bold;
}
	
.dpc-featured-grid .dpc-featured-main .dpc-card-content {
	gap:20px;
}
	
.dpc-featured-grid .dpc-card-content .dpc-title {
    margin-bottom: unset;
}

.search-results-line {
  font-size: 20px;
}
	
.dpc-horizontal-slider .slick-arrow {
	display: none !important;
}
	
.dpc-horizontal-slider .slick-dots {
	display: flex !important;	
}

.dpc-avatar {
	width: 12px;
	height: 12px !important;
}

/* POST GRID */
	
.dpc-post-grid .dpc-card {
	flex-direction: row;
}
	
.dpc-post-grid .dpc-card .dpc-image {
	width: 40%;
}
	
.dpc-post-grid .dpc-card .dpc-card-content {
	width: 60%;
}
	
.dpc-post-grid .dpc-title {
    margin-bottom: unset;
}
	
.dpc-card-content .dpc-categories a {
	font-size: 10px;
}

.dpc-pagination .page-numbers .prev, .dpc-pagination .page-numbers .next {
    width: 48px;
    height: 48px;
}
	
.dpc-pagination .page-numbers .next:before {
	width: 23px;
    height: 23px;
	left: 5px;
}
	
.dpc-pagination .page-numbers:not(li) {
  gap:10px;
}

.dpc-pagination li .page-numbers {
  font-size:12px;
  padding: 3px 12px;
}
	
/* Archive page */
.archive .dashtera-search-wrapper .search-container {
    width: 200px;
}

.archive.category .page-header, .archive.tag .page-header {
	display: block;
}

.archive.category .page-header .dpc-cat-search {
	margin-top: 10px;
}
	
.archive .dashtera-search-wrapper .search-container {
	width: 100%;
}
	
.archive.category .page-header .page-title, .archive.tag .page-header .page-title {
	font-size: 28px;
	line-height: 100%;
}
	
.dpc-cat-switcher {
	padding-top: 5px;
}
	
.dpc-cat-item {
	font-size: 18px !important;
    padding: 10px 0;	
}
	
.dpc-cat-dropdown .dpc-check {
	top: 3px;
    position: relative;	
}
	
.paging-navigation .page-numbers {
	font-size: 12px;
	padding: 3px 12px !important;
}
	
.paging-navigation .nav-links .prev, .paging-navigation .nav-links .next {
	width: 48px;
	height: 48px;
}
	
.paging-navigation .nav-links .next:before {
	width: 23px;
	height: 23px;
}	

}