.cat-menu {
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
	gap: 16px;
	margin-bottom:24px;
	justify-content: center;
}

.cat-menu li {
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.cat-menu a {
    padding: 10px 20px;
    background: #fff;
    border-radius: 20px;
	transition: background-color 0.2s ease-in-out;
}
.cat-menu a:hover,
.current-cat a {
    background: #228378;
    color:#fff;
}
.category-wrapper {
	display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 50px;
}
.category .category-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px;
}
.category-section,
.category .type-post {
    flex-direction: column;
    display: flex;
}
.mobile .category-section,
.mobile .category  .type-post {
	flex: 100%;
}
.category .type-post {
    flex-direction: column;
    display: flex;
}
.cat-title {
	display: flex;
    flex-direction: row;
	justify-content: space-between;
    align-items: center;
}
.cat-title h2 {
    margin: 10px 0;
}
.entry-title {
    min-height: 60px;
    display: flex;
    align-items: end;
}
.mobile .entry-title {
    min-height: auto;
}
.category-section a {
    flex-direction: column;
}
.category-section a p {
    margin-top:0;
}
.post-thumb {
	width: 100%; 
	height: 150px; 
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-bottom: 10px;
	border-radius: 10px;
	background-image: url(../../assets/images/postTitleBg.jpg);
}
.category .post-thumb {
	height: 250px; 
}

@media only screen and (max-width : 1280px) {

	.category-wrapper {
		grid-template-columns: repeat(2, minmax(0, 1fr))  !important;
	}
}
@media only screen and (max-width : 960px) {
	.category-wrapper {
		grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
		gap: 0;
	}
}


main > .contentPanelVert {
    max-width: 1100px;
}
article {
    margin-top: 0;
}
.custom-breadcrumbs {
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
}
.custom-breadcrumbs > div  {
    display: flex;
	gap:6px;
	align-items: center;
	margin-bottom: 20px;
}
.custom-breadcrumbs a,
.custom-breadcrumbs span  {
    padding:10px 0;
}
.entry-content  {
    display: flex;
	gap:80px;
	margin-top:10px;
}
.mobile .entry-content  {
    flex-wrap: wrap;
	gap:20px;
	margin-top:20px;
}
.entry-content-body  {
	margin-top: -80px;
    background: #f2f2f2;
    padding: 50px 0 0 50px;
    border-radius: 24px 0 0 0;
	flex: 1 1 100%;
}
.mobile .entry-content-body  {
	margin-top: 0;
    padding: 0;
}
.postImage {
    border-radius: 24px;
	height: 350px;
	background-image: url(../../assets/images/postTitleBg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.mobile .postImage {
    height: 200px;
}
.post-info {
    min-width: 20%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
    color: #555;
    font-size: 14px;
}
.mobile .post-info {
    min-width: 100%;
}
.cat-links {
	display: flex;
    flex-wrap: wrap;
}
.simplesocialbuttons {
    margin-top: 20px;
}
.simplesocialbuttons span {
	display:none;
}
.simplesocialbuttons button {
        width: 36px;
    padding-left: 0 !important;
    height: 36px !important;
    border-radius: 30px !important;
}

.simplesocialbuttons.simplesocial-round-txt button:after {
    width: 36px;
    height: 36px;
    line-height: 36px;
}
.simplesocialbuttons button.simplesocial-fb-share:after {
    content: "\e905";
}
.simplesocialbuttons button:after {
    font-size: 12px;
    top: -1px;
}
.single-post  .entry-title {
    padding-left: calc(20% + 130px);
}
.mobile .entry-title,
.mobile .custom-breadcrumbs {
    padding-left: 0;
}