@charset "utf-8";

/* GLOBAL: RESET
-------------------------------------------------------------------------------*/
*,
*::before,
*::after {
	box-sizing: border-box;
}
html:focus-within {
	scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
	html:focus-within {
		scroll-behavior: auto;
	}
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
a, button {
	cursor: revert;
}
a:not([class]) {
	text-decoration-skip-ink: auto;
}
nav a {
	text-decoration: none;
}
nav ul, nav ol, menu {
	list-style: none;
	margin: 0;
	padding: 0;
}
nav li {
	margin: 0;
	padding: 0;
}
.list-reset {
	list-style: none;
	padding: 0;
	margin: 0;
}
img, picture, video, iframe, canvas, object, embed, svg {
  display: block;
  max-width: 100%;
}
.wp-block-embed iframe {
	height: 100%;
	width: 100%;
}
svg {
	position: relative;
	vertical-align: top;
	transition: fill var(--motion-d) var(--motion-t);
}
.svg-symbol {
	width: 100%;
	height: auto;	
}
table {
	border-collapse: collapse;
	table-layout: fixed;
	width: 100%;
}
input, button, textarea, select {
	color: inherit;
	font: inherit;
	letter-spacing: inherit;
}
input, textarea {
	-webkit-user-select: auto;
	user-select: auto;
}
input[type="text"], textarea {
	width: 100%;
	white-space: revert;
}
input[type="password"] {
	font-family: Verdana;
	letter-spacing: 0.125em;
}
meter {
	-webkit-appearance: revert;
	appearance: revert;
}
::placeholder {
	color: unset;
}
.toggle-content {
	display: none;
}
.toggle-content.is-visible {
	display: block;
}


/* GLOBAL: FORMS
-------------------------------------------------------------------------------*/
input,
input::placeholder {
	font-family: var(--wp--preset--font-family--sans);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 1px;
	padding: 8px;
	text-transform: uppercase;
	opacity: 1;
}
input:focus::placeholder {
	opacity: .35;
}
input,
textarea {
	width: 100%;
	border: 3px solid var(--wp--preset--color--black);
	margin-bottom: 20px;
	font-size: 14px;
}
input:focus,
input:active,
textarea:focus,
textarea:active {
	border: 3px solid var(--wp--preset--color--black);
	outline: none;
}
form button,
input[type="button"],
input[type="submit"] {
	border: unset;
	background-color: var(--wp--preset--color--green);
	color: var(--wp--preset--color--black);
	display: block;
	font-family: var(--wp--preset--font-family--accent);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 1.2;
	padding: 12px 12px !important;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color var(--motion-d) var(--motion-t), color var(--motion-d) var(--motion-t), border var(--motion-d) var(--motion-t);
	white-space: nowrap;
	width: 100%;
}
form button:hover,
input[type="button"]:hover,
input[type="submit"] {
	background-color: var(--wp--preset--color--black);
	color: var(--wp--preset--color--white);
	cursor: pointer;
}


/* STRUCTURE: CONTAINERS
-------------------------------------------------------------------------------*/
body {
	padding-block: unset !important;
	background-color: var(--wp--preset--color--white);
	background-repeat: no-repeat;
}
body:not(.home) {
	min-width: 300px;
	background-image: linear-gradient(180deg, rgba(229,229,229,.4) 50%, rgba(255,255,255,1) 100%); 
	background-size: 100% 130px;
	background-repeat: no-repeat;
}
.container {
	width: 100vw;
	max-width: var(--wp--custom--width--wide);
	padding-left: 1rem;
	padding-right: 1rem;
	margin: auto;
}
main {
	margin-top: 70px;
	margin-bottom: 70px;
}


/* STRUCTURE: HEADER
-------------------------------------------------------------------------------*/
.wp-site-blocks > .wp-block-template-part {
	transition: transform 600ms;	
	position: sticky;
	top: 0;
	z-index: 100;
}
.site-header {
	font-family: var(--wp--preset--font-family--sans);
	background-color: var(--wp--preset--color--white);
	width: 100%;
	height: 48px;
}
.site-header svg {
	max-height: 48px;
}
@media screen and (min-width: 1070px) {
	.site-header {
		height: 76px;
	}
}
.site-header .container {
	height: 100%;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: var(--wp--style--global--wide-size);
}

/* MOBILE */
.site-mobile {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 48px;
	margin-bottom: 12px;
}
.site-mobile-wrap {
	position: relative;
	height: 48px;
	width: 100%;
}
.site-mobile a {
	display: block;
	background-color: var(--wp--preset--color--black);
	width: 77px;
	height: 100%;
	position: absolute;
	top: 0;
}
.site-mobile a:hover {
	background-color: var(--wp--preset--color--green);
}
#site-toggle svg {
	stroke: var(--wp--preset--color--white);
}
.site-mobile .site-mobile-search {
	right: 77px;
	background: #FFF;
}
.site-mobile .site-mobile-search svg {
	width: 26px;
	opacity: .2;
	left: 25px;
}
.site-mobile .site-mobile-menu {
	right: 0;
}


/* LOGO */
.site-logo {
	width: 170px;
	height: 100%;
	margin-right: 1em;
}
.site-logo .sixty-logo {
	fill: var(--wp--preset--color--black);
}
.site-logo:hover .sixty-logo {
	fill: var(--wp--preset--color--green);
}
@media screen and (min-width: 1700px) { 
	.header-mark { margin: 0 15px 0 -105px; 
	}
}


/* NAVIGATION */
.site-nav {
	flex-flow: row nowrap;
	align-items: center;
	width: 100%;
}
.site-menu ul {
	display: none;
	margin: 0;
	list-style: none;
	flex-flow: row nowrap;
	align-items: center;
	height: 100%;
	padding: 0;
}

/* FIRST LEVEL */
.site-menu .menu-item-depth-0 {
	position: relative;
}
.site-menu .menu-item-depth-0 > a {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--wp--preset--color--black);
	padding: 10px;
	text-decoration: none;
}
.site-menu .menu-item-depth-0 > a span {
	border-bottom: 2px solid transparent;
}
.site-menu .menu-item-depth-0:not(.menu-item-has-children):hover > a span {
	border-bottom: 3px solid var(--wp--preset--color--green);
	padding-bottom: 3px;
}

/* SECOND LEVEL */
.site-menu div.submenu-wrap {
	display: none;
	position: absolute;
	padding-top: 15px;
	z-index: 100;
	min-width: 100%;
	left: 50%;
	transform: translateX(-50%);
}
.site-menu ul.submenu {
	display: block;
	flex-flow: row wrap;
	background-color: var(--wp--preset--color--green);
	font-size: .9rem;
	width: 100%;
	padding: 0.35em 1em 0.75em 1em;
	box-shadow: 0px 2px 1px #2F465177;
	border-radius: 1px;
	z-index: 2;
	position: relative;
}
.site-menu ul.submenu:before {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	background: #999;
	background-color: var(--wp--preset--color--green);
	transform: rotate(45deg);
	top: -10px;
	left: calc(50% - 10px);
	z-index: -1;
}
.site-menu ul.submenu li {
	display: block;
	min-width: 160px;
}
.site-menu li.menu-item-depth-1 a {
	display: block;
	padding: 0.65em 0 0.1em 0;
	font-size: 0.9rem !important;
	line-height: 1.35;
	font-weight: 500;
	color: var(--wp--preset--color--black);
	text-decoration: none;
	border-bottom: 2px solid transparent;
}
.site-menu li.menu-item-depth-1 a:hover {
	color: var(--wp--preset--color--black);
}
.site-menu li.menu-item-depth-1 a:hover span {
	border-bottom: 2px solid var(--wp--preset--color--black);	
}


/* UTILITY */
.site-header button,
.site-header .wp-block-button__link {
	font-size: 15px;
	padding: 10px 12px !important;
	white-space: nowrap;
}
.site-util {
	flex: 1;
	display: none;
	flex-flow: row nowrap;
	justify-content: flex-end;
	align-items: stretch;
}
.site-search {
	display: flex;
	position: relative;
	margin-right: 12px;
	align-items: stretch;
	justify-content: stretch;
}
.site-search-icon {
	position: absolute;
	width: 20px;
	height: 20px !important;
	left: -4px;
	top: calc( 50% - 10px );
}
.site-search input {
	display: flex;
	flex: 1;
	max-width: 140px;
	border: 0;
	height: 100%;
	border-bottom: 1px solid var(--wp--preset--color--black);
	margin-bottom: 0;
	padding-left: 25px;
	background-color: transparent;
}
.site-signup {
	margin-right: 12px;
}
.site-signup-action {
	border: 3px solid var(--wp--preset--color--black);
	background-color: var(--wp--preset--color--white);
	color: var(--wp--preset--color--black);
}
.site-signup-action:hover,
.site-signup-action.is-active {
	border: 3px solid var(--wp--preset--color--black);
	background-color: var(--wp--preset--color--black);
	color: var(--wp--preset--color--white);
	box-shadow: 0 0 0 transparent;
}
.site-signup-form {
	display: none;
	flex-flow: column nowrap;
	background-color: var(--wp--preset--color--white);
	border: 3px solid var(--wp--preset--color--black);
	padding: 24px 20px;
	margin-right: 20px;
	max-width: 340px;
}
.site-donate.wp-block-button__link {
	border: 3px solid var(--wp--preset--color--green);
	background-color: var(--wp--preset--color--green);
	color: var(--wp--preset--color--black);
	box-shadow: 6px 6px 0 var(--wp--preset--color--black);
	margin-right: 6px;
	padding: 10px 16px 10px 16px !important;
}
.site-donate:hover {
	border: 3px solid var(--wp--preset--color--black);
	background-color: var(--wp--preset--color--black);
	color: var(--wp--preset--color--white);
	box-shadow: 6px 6px 0 var(--wp--preset--color--green);
}


/* VISIBILITY */
.site-menu .menu-item-depth-0:hover div.submenu-wrap {
	display: block;
	z-index: 1000;
}
@media screen and (min-width: 1070px) {
	.site-mobile {
		display: none;
	}
	.site-nav,
	.site-menu ul,
	.site-mark,
	.site-util {
		display: flex;
	}
	.site-signup-form {
		position: absolute;
		z-index: 1000;
	}
}


/* STRUCTURE: MMENU
-------------------------------------------------------------------------------*/
#menu:not( .mm-menu ) {
	display: none;
}
.mm-navbar {
	font-family: var(--wp--preset--font-family--accent);	
	font-size: 15px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--wp--preset--color--green);
}
.mm-listview a {
	font-family: var(--wp--preset--font-family--sans);
	font-size: 18px;
	line-height: 1.35;
	font-weight: 600;
}
.mm-listview a:hover {
	color: var(--wp--preset--color--white);
}
.mm-btn_next:hover::after,
.mm-btn_prev:hover::before {
	border-color: var(--wp--preset--color--white);
}
.mm-wrapper_opening [class*="mm-menu_pagedim"].mm-menu_opened ~ .mm-wrapper__blocker {
	opacity: .5;
}


/* STRUCTURE: FOOTER
-------------------------------------------------------------------------------*/
@media screen and (max-width: 1300px) {	
	.site-footer > .wp-block-group:first-of-type { 
		border-width: 1px 0;
		border-style: solid;
		border-color: var(--wp--preset--color--gray);
	}
	.site-footer .wp-block-columns {
		border-color: transparent !important;
	}
}
@media screen and (max-width: 959px) {
	.site-footer .wp-block-columns {
		flex-flow: column nowrap;
	}
	.site-footer .wp-block-column {
		width: clamp(300px, 100%, 400px);
		margin-inline: auto;
	}
	.site-footer h3 {
		text-align: center;
	}
	.site-footer .wp-block-social-links {
		justify-content: center !important;
	}
}
.site-footer .wp-block-navigation__container {
	display: flex;
	flex-flow: row wrap;
}
.site-footer .wp-block-navigation__container li {
	flex: 0 0 49%;
}
.site-footer .wp-block-navigation a {
	display: inline-block;
	white-space: nowrap;
	text-decoration: none;
	padding: 3px 0;
}
.site-footer .has-small-font-size a {
	font-weight: 400;
}



/* COMPONENTS: BANNER
-------------------------------------------------------------------------------*/
.six-banner .wp-block-columns {
	box-shadow: 8px 8px 0 var(--wp--preset--color--silver);
	margin-right: 8px !important;
	padding: 2rem !important;
}
.six-banner .wp-block-columns h1,
.six-banner .wp-block-columns h2,
.six-banner .wp-block-columns h3 {
	margin-bottom: 0;
	line-height: 1.15;
}

.six-banner-donate .wp-block-column {
	display: flex;
}
.six-banner-donatebtns {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax( min(100%, 110px), 1fr)) ;
	gap: 12px !important;
	width: 100%;
}
.six-banner-donatebtns .wp-block-button {
	height: 100%;
	width: revert !important;
}
.six-banner-donatebtns .wp-block-button__link {
	white-space: nowrap;
}


/* COMPONENTS: BLOCKQUOTE
-------------------------------------------------------------------------------*/
.wp-block-pullquote {
	padding: 0;
}
blockquote {
	font-style: normal;
	margin: 1.5em 0 !important;
	padding: 30px;
	margin-bottom: 2em;
	background-color: var(--wp--preset--color--green);
	font-family: var(--wp--preset--font-family--accent);
	font-size: .75em !important;
	font-weight: 400 !important;
	background: none !important;
}
blockquote cite:before {
	content: "— ";
}
blockquote,
blockquote p {
	font-size: 20px !important;
	line-height: 1.5 !important;
}
blockquote cite {
	font-size: 16px !important;
	font-style: normal !important;
}

@media screen and (min-width: 960px) {
  blockquote {
		padding: 40px;
	}
	blockquote,
	blockquote p {
		font-size: 28px !important;
	}
	blockquote cite {
		font-size: 18px !important;
	}
}


/* COMPONENTS: EMBEDS
-------------------------------------------------------------------------------*/
svg {
	position: relative;
	vertical-align: top;
	transition: fill var(--wp--custom--motion);
}
.wp-caption {
	background-color: #FDFDFD;
	font-size: 0.9em;
	margin: 2em 0 2em 0;
}
.wp-caption,
.wp-caption img {
  max-width: 100%;
}
.wp-caption img {
	width: 100vw;
	max-width: var(--wp--custom--width--slim);
	margin: 0 auto;
	max-height: 80vh;
	object-fit: contain;
}
figcaption,
.wp-caption-text {
	display: block;
	font-size: 0.95rem !important;
	font-family: var(--wp--preset--font-family--sans);
	border-left: 1px solid #707070;
	color: #707070;
	font-style: normal !important;
	margin-top: 1.5em !important;
	padding: 0.5em 1em 0.5em 1.5em;
	text-align: left !important;
}
figcaption:empty,
.wp-caption-text:empty {
	display: none;
}
.wp-caption.alignwide {
	width: 100vw !important;
	max-width: var(--wp--custom--width--wide) !important;
	margin-left: -240px;
	margin-right: -240px;
}
.wp-caption.alignwide img {
	max-width: var(--wp--custom--width--wide) !important;
}
.wp-block-image,
.wp-block-gallery {
	margin-top: 1.5em;
	margin-bottom: 1.5em;
}
.wp-block-image img,
.wp-block-gallery img {
	background-color: var(--wp--preset--color--silver);
}
.wp-block-image:not(.alignwide),
.wp-block-gallery:not(.alignwide) {
	margin-left: auto;
	margin-right: auto;
}
.wp-block-image.alignwide img {
	max-height: calc(90vh - 76px);
	margin-left: auto;
	margin-right: auto;
}
.wp-block-embed__wrapper {
	display: flex;
	justify-content: center;
}
.wp-block-embed-youtube .wp-block-embed__wrapper {
	aspect-ratio: 16 / 9;
} 


/* COMPONENTS: EDITORIAL CURATED
-------------------------------------------------------------------------------*/
.curated-cloud {
	font-weight: 300;
	line-height: 1.65em;
	display: flex;
	flex-wrap: wrap;
	gap: 0 6px;
}
.curated-cloud a:hover {
	text-decoration: underline;
}
.curated-cloud span:last-child {
  display: none;
}


/* COMPONENTS: EDITORIAL DROPDOWNS
-------------------------------------------------------------------------------*/
.wp-block-categories-dropdown,
.wp-block-archives-dropdown {
	position: relative;
	max-width: 300px;
	height: 46px;
	background-color: var(--wp--preset--color--white);
	background-repeat: no-repeat;
	background-position: right;
	background-image: url('data:image/svg+xml,<svg viewBox="0 0 40 46" xmlns="http://www.w3.org/2000/svg" fill="%23000"><path d="M0 0v46h40V0H0zm37 43H3V24.5h34V43zm0-21.5H3V3h34v18.5zM19.7 8.6 11.4 15h17.2l-8.9-6.4zM28.6 31H11.4l8.9 6.4 8.3-6.4z"/></svg>');
}
.wp-block-categories-dropdown:hover,
.wp-block-categories-dropdown:focus-within,
.wp-block-archives-dropdown:hover,
.wp-block-archives-dropdown:focus-within {
	background-image: url('data:image/svg+xml,<svg viewBox="0 0 40 46" xmlns="http://www.w3.org/2000/svg" fill="%23888"><path d="M0 0v46h40V0H0zm37 43H3V24.5h34V43zm0-21.5H3V3h34v18.5zM19.7 8.6 11.4 15h17.2l-8.9-6.4zM28.6 31H11.4l8.9 6.4 8.3-6.4z"/></svg>');
}
.wp-block-categories-dropdown select,
.wp-block-archives-dropdown select {
	display: block;
	width: 100%;
	height: 46px;
	font-size: 13px;
	line-height: 1.3;
	padding: 12px 36px 12px 18px;
	border: 3px solid var(--wp--preset--color--black);
	border-radius: 0px;
	appearance: none;
	background-color: transparent;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: bold;
	z-index: 2;
	cursor: pointer;
	transition: border-color var(--motion-d) var(--motion-t);
}
.wp-block-categories-dropdown select:hover,
.wp-block-archives-dropdown select:hover {
	border-color: #888;
}
.wp-block-categories-dropdown select:focus,
.wp-block-archives-dropdown select:focus {
	border-color: #aaa;
	box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
	color: #222;
	outline: none;
}
.wp-block-categories-dropdown select option,
.wp-block-archives-dropdown select option {
	font-weight: normal;
}


/* COMPONENTS: GROUP
-------------------------------------------------------------------------------*/
.wp-block-group.has-background {
	padding: 1em;
}


/* COMPONENTS: PAGINATION
-------------------------------------------------------------------------------*/
.wp-block-query-pagination,
.wp-block-query-pagination-numbers {
	gap: revert;
	
}
.wp-block-query-pagination > .wp-block-query-pagination-next,
.wp-block-query-pagination > .wp-block-query-pagination-numbers,
.wp-block-query-pagination > .wp-block-query-pagination-previous {
	margin: 3px;
}
.wp-block-query-pagination a,
.wp-block-query-pagination .page-numbers {
	background: var(--wp--preset--color--white);
	padding: 8px 18px;
	color: var(--wp--preset--color--black);
	border-radius: 3px;
}
.wp-block-query-pagination a:hover {
	background-color: var(--wp--preset--color--silver);
	color: var(--wp--preset--color--black);
	text-decoration: none;
}
.wp-block-query-pagination .current {
	color: var(--wp--preset--color--white);
	background: var(--wp--preset--color--black);
}
.wp-block-query-pagination .dots {
	display: none;
}


/* COMPONENTS: SEPARATOR
-------------------------------------------------------------------------------*/
body .is-layout-flow .wp-block-spacer {
	margin-block-start: 0;
}
.wp-block-separator {
	border: transparent;
	border-bottom: 1px solid #CCC;
	height: 1px;
	margin: 40px 0 60px;
}


/* LAYOUTS: SINGLE
-------------------------------------------------------------------------------*/
.single-title {
	font-size: 3rem !important;
	line-height: 1;
	margin-bottom: 1.5rem;
	font-weight: 500 !important;
}
.single-thumb {
	width: 100%;
	height: auto;
	object-fit: cover;
}
.single-byline {
	display: inline-flex;
	margin-bottom: 1rem;
}
.single-byline * {
	display: inline-flex;
	font-weight: 600;
	font-size: 1.4rem;
	padding-right: 0.25em;
}
.single-byline a {
	text-decoration: none;
}
.single-byline a:hover {
	text-decoration: underline;
}
.single-meta {
	font-size: 15px;
	margin-bottom: 2em;
	font-weight: 300;
}
.single-excerpt {
	font-size: 1.35em;
	line-height: 1.3;
}
.single-body {
	font-size: 1.25rem;
	margin-top: 120px;
}


/* LAYOUTS: ARCHIVES
-------------------------------------------------------------------------------*/
.site-card-meta,
.site-card-meta > * {
	display: inline !important;
}

.archive-excerpts ul {
	display: grid;
  gap: 0 clamp(1em, 3vw, var(--wp--preset--spacing--l));
}
@media (min-width: 360px) and (max-width: 820px) {
  .archive-excerpts ul {
    grid-template-columns: 1fr !important;
  }
}
.archive-excerpts ul li .wp-block-columns {
	flex-wrap: nowrap !important;
	gap: clamp(1em, 3vw, var(--wp--preset--spacing--l));
	height: 100%;
}


/* COMPONENT: HOME EXCERPTS
-------------------------------------------------------------------------------*/
.six-clip .six-block-post-meta,
.six-clip .six-block-post-meta * {
	display: inline !important;
}
.six-clip .six-block-post-byline {
	font-weight: 500 !important;
}


/* COMPONENT: EXCERPTS
-------------------------------------------------------------------------------*/
[class*="shortcode-related-"] {
	display: flex;
	flex-flow: wrap;
	gap: 2em;
	margin-bottom: var(--wp--preset--spacing--xl);
}
@media screen and (min-width: 760px) {
	[class*="shortcode-related-"] {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}
}
[class*="shortcode-related-"] .wp-block-post-featured-image {
	max-width: 500px;
}


.wp-block-post-featured-image {
	width: 100%;
	height: unset !important;
	margin-bottom: 16px;
	aspect-ratio: 3 / 2;
}
.wp-block-post-featured-image img {
	aspect-ratio: 3 / 2;
	object-fit: cover;
}
.site-excerpts figure a {
  display: block;
	background-color: var(--wp--preset--color--silver);
}
.site-excerpts figure img {
	aspect-ratio: 3 / 2;
	object-fit: cover;
	max-width: 600px;
	max-height: 400px;
}
.site-excerpts h2 {
	margin-top: 0;
	margin-bottom: 8px;
	font-weight: 500;
}
.site-excerpts h2 a {
	text-decoration: none;
	font-size: clamp( 1.275rem, 2.5vw, 1.675rem );
	line-height: 1.2;
}
.site-excerpts h2 a:hover {
	opacity: 0.8;
}
.site-excerpts .site-excerpts-byline {
	font-weight: 500;
	width: auto;
	padding-right: 0.3em;
}
.site-excerpts .site-excerpts-byline a {
	text-decoration: underline;
}
.site-excerpts .site-excerpts-intro {
	font-size: 0.89em;
}
.site-excerpts-meta {
	display: inline-flex;
	flex-flow: wrap;
	gap: 0 8px !important;
}
.site-excerpts-meta * {
	font-size: 15px;
	margin-bottom: 1em;
	font-weight: 300;
}
.site-excerpts-meta * {
	margin: unset;
}
.site-excerpts-meta a:hover {
	text-decoration: underline;
}


/* OVERRIDES: SEARCH
-------------------------------------------------------------------------------*/
body.search .wp-block-search__inside-wrapper {
	display: flex;
	flex-flow: row;
	max-width: 500px;
}
body.search .wp-block-search__input {
	border-width: 3px;
	margin-bottom: unset;
}
body.search .wp-block-search__input:focus-within {
	border-width: 3px;
	border-color: var(--wp--preset--color--black);
}
body.search .wp-block-search__button {
	color: var(--wp--preset--color--white);
	flex: 0 0 150px;
}
body.search .wp-block-search__button:hover {
	background-color: var(--wp--preset--color--green);
	border-color: var(--wp--preset--color--green);
	color: var(--wp--preset--color--black);
}
