/*Tabbed Content Styling*/
.tab-block-content {
  display: none;
  padding:20px;
}
.tab-block-content.active {
  display: block;
}

.tab-block-title {
  display: flex;
  gap: 1rem;
  cursor: pointer;
  border-bottom: solid 3px #e7f2e0;
  padding:10px;
}

.tab-block-title:hover {
	border-bottom: solid 3px #255c4e;
	background-color: #e7f2e0;
}

.tab-block-title.active {
  font-weight: bold;
  border-bottom: solid 3px #255c4e;
  background-color: #e7f2e0;
}

[data-quickedit-field-id*="field_tab_title"] {
  font-weight: bold;
  color: #255c4E;
  display: flex;
  gap: 20px;
  align-items:flex-end;
  justify-content:flex-start;
    padding:20px;
}

@media screen and (max-width: 875px) {
	[data-quickedit-field-id*="field_tab_title"] {
		display:block;
	}
}

.block-type-tabbed-content {
	  margin: auto;
    max-width: 1100px;
}