article .video-block {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

article .video-block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

article .tabs {
	display: flex;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	margin-top: 25px;
}
article .tab {
	flex: 1;
	padding: 1rem;
	text-align: left;
	cursor: pointer;
	background: #f1f1f1;
	font-weight: bold;
}
article .tab.active {
	background: white;
	border-bottom: 2px solid var(--brunswick_green);
}
article .tab-content {
	padding: 1rem;
	display: none;
}
article .tab-content.active {
	display: block;
}

article .single-head .section-title {
	max-width: 100%;
	margin-top: 1rem;
}

article .section-nexio {
    color: var(--brunswick_green);
    background: #fff;
}

article .section-nexio .tab-content, article .section-nexio .tabs {
    color: var(--gray_text);
}

article .section-nexio .section-title {
    font-size: 1.75rem;
}

article .section-nexio .item .block {
	width: 100%; 
}

article .section-nexio, article .single-head {
    padding: 0;
}