/*
Theme Name: PFMC
Theme URI: https://github.com/happyprime/pfmc
Author: Happy Prime
Author URI: https://happyprime.co
Description: Theme for the Pacific Fishery Management Council
Version: 3.4.2
License: GNU General Public License v3 or later
License URI: LICENSE

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share
what you've learned with others.
*/

/**
 * Custom Media Queries
 * Works like Custom Properties, except for media queries.
 *
 * @link: https://drafts.csswg.org/mediaqueries-5/#custom-mq
 **/

/**
 * Custom Properties
 * aka CSS variables.
 *
 * @link: https://developer.mozilla.org/en-US/docs/Web/CSS/--*
 **/

:root {
	--global-font-color: #0e0e0e;
	--global-font-family: "Raleway", sans-serif;
	--global-font-size: 18;
	--global-font-line-height: 1.45;
	--global-spacing: 3rem;
	--content-width: 100%;
	--dropdown-symbol-width: 1em;

	/* Custom editor colors */
	--color-theme-primary: #0871a6;
	--color-theme-primary-dark: #076492;
	--color-theme-secondary: #37474f;
	--color-theme-black: #0e0e0e;
	--color-theme-gray-dark: #2d2d2d;
	--color-theme-mocha: #939393;
	--color-theme-stone: #c4c5c6;
	--color-theme-silver: #dfe0e2;
	--color-theme-gray-light: #f1f1f1;
	--color-theme-gray-lighter: #f7f7f7;
	--color-theme-gray: #7f889b;
	--color-theme-red: #dd273b;
	--color-theme-red-dark: #b51c2e;
	--color-theme-aqua: #29e7cf;
	--color-theme-blue: #04cafa;
	--color-theme-white: #fff;
	--color-theme-purple: #5850f9;
	--color-theme-purple-dark: #4f48e0;

	--color-red-transparent: rgba(181, 28, 46, 0.85);

	--color-bg: var(--color-theme-gray-light);

	--color-bg-landing: var(--color-bg);

	--color-link: #071e91;
	--color-link-visited: var(--color-theme-gray-dark);
	--color-link-active: var(--color-theme-red-dark);

	/* Custom editor font sizes */
	--font-size-smaller: calc(14 / var(--global-font-size) * 1em);
	--font-size-small: calc(16 / var(--global-font-size) * 1em);
	--font-size-regular: calc(var(--global-font-size) / 16 * 1em);
	--font-size-large: calc(27 / var(--global-font-size) * 1em);
	--font-size-larger: calc(45 / var(--global-font-size) * 1em);
}

/*
CSS normalization based in part on normalize.css by
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
	margin: 0;
}

link {
	display: none;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
	box-sizing: content-box; /* 1 */
	height: 0; /* 1 */
	overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
	font-family: monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
	border-bottom: none; /* 1 */
	-webkit-text-decoration: underline;
	text-decoration: underline; /* 2 */
	text-decoration: underline;
	-webkit-text-decoration: underline dotted;
	        text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
	font-weight: bolder; /* stylelint-disable-line */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
	font-family: monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
	border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
	overflow: visible; /* 1 */
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
	text-transform: none; /* 1 */
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
	box-sizing: border-box; /* 1 */
	color: inherit; /* 2 */
	display: table; /* 1 */
	max-width: 100%; /* 1 */
	padding: 0; /* 3 */
	white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box; /* 1 */
	padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
	display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
	display: none;
}

/**
 * Hide lazy load placeholders when browser does not have JS enabled.
 * Should override everything, therefore !important.
 */

.no-js .lazy {
	display: none !important;
}

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Imports
   # Custom media
   # Custom properties
   # Normalize
# Accessibility
# Layout
# Typography
# Elements
# Links
# Forms
# Header
  # Main navigation menu
# Content navigation
# Footer
# Infinite scroll
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Imports
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/

/**
 * Text meant only for screen readers.
 * Re: word-wrap: Many screen reader and browser combinations announce broken
 * words as they would appear visually.
 */

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	-webkit-text-decoration: none;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */

#primary[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

.site {
	display: grid;
	grid-template:
		"header"
		"toolbar"
		"nav"
		"main"
		"footer" /
		100%;
	margin: 0 auto;
	max-width: 100%;
}

@media screen and (min-width: 60em) {

	.site {
		display: grid;
		grid-template:
			"header toolbar"
			"nav main"
			"nav footer" /
			300px 1fr;
		margin: 0 auto;
		max-width: 100%;
	}
}

.site-header {
	grid-area: header;
}

.toolbar {
	grid-area: toolbar;
}

.site-main {
	grid-area: main;
	min-width: 0;
}

.main-navigation {
	grid-area: nav;
}

.site-footer {
	grid-area: footer;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

::selection {
	background: var(--color-theme-primary-dark);
	color: var(--color-theme-white);
}

body,
button,
input,
select,
optgroup,
textarea {
	color: var(--global-font-color);
	font-family: var(--global-font-family);
	font-size: var(--font-size-regular);
	line-height: var(--global-font-line-height);
}

h2 {
	line-height: 1.15;
	margin-top: 2em;
}

h3 {
	color: var(--color-theme-primary);
	font-weight: 400;
	margin-top: 2em;
}

.entry-header h1.entry-title,
.page-header .page-title,
h1 {
	font-size: 3.5rem;
	font-weight: 900;
	line-height: 1.1;
	margin-top: 0;
	margin-bottom: var(--global-spacing);
	padding-top: var(--global-spacing);
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 0.8rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	-webkit-text-decoration: none;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/

html {
	box-sizing: border-box;
	background-image: linear-gradient(90deg, #29e7cf 0, var(--color-theme-primary));
	padding-top: 4px;
}

body::before {
	content: " ";
	background-image: linear-gradient(90deg, #29e7cf 0, var(--color-theme-primary));
	height: 4px;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 5;
}

/**
 * Inherit box-sizing to make it easier to change the property for
 * components that leverage other behavior; see
 * http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */

*,
*::before,
*::after {
	box-sizing: inherit;
}

/* Fallback for when there is no custom background color defined. */

body {
	background: var(--color-bg);
}

body.managed_fishery-template-default,
body.home {
	background: var(--color-bg-landing);
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em;
	padding: 0;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

ol ol {
	list-style: lower-alpha;
}

ol ol ol {
	list-style: lower-roman;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	display: block;
	height: auto;
	max-width: 100%;
}

/* Extra wide images within figure tags don't overflow the content area. */

figure {
	margin: 0.5em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/

a {
	color: var(--color-link);
	-webkit-text-decoration: none;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:visited {
	color: var(--color-link-visited);
}

a:hover,
a:focus,
a:active {
	color: var(--color-link-active);
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

.site-main a {
	background-image: linear-gradient(180deg, transparent 0, rgba(55, 71, 79, 0.25) 0);
	background-position: 0 calc(1em + 2px);
	background-repeat: no-repeat;
	color: var(--color-link);
	transition: all 0.3s ease;
}

.site-main a:hover {
	background-image: linear-gradient(180deg, transparent 0, rgba(55, 71, 79, 0.05) 0);
	background-position: 0 0;
}

.is-grid a,
.wp-block-button a,
.is-grid a:hover,
.wp-block-button a:hover,
.block-box a,
.sc_events_list a {
	background-image: none;
	color: inherit;
}

.site-main a:visited {
	background-image: none;
	color: var(--color-link-visited);
}

.site-main h1 a,
.site-main h2 a,
.site-main h3 a,
.site-main h4 a,
.site-main h5 a {
	background: none;
	color: inherit;
}

.site-main h1 a:visited,
.site-main h2 a:visited,
.site-main h3 a:visited,
.site-main h4 a:visited,
.site-main h5 a:visited {
	background: none;
	color: inherit;
}

/* offsite links */

.entry-content a[href*="//"]:not([href*="pcouncil.org"]):not(.wp-block-button__link) {
	margin-right: 0.75em;
}

.entry-content a[href*="//"]:not([href*="pcouncil.org"]):not(.wp-block-button__link)::after {
	background: url(./images/icon-offsite.svg) no-repeat;
	background-position: center;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 1em;
	margin-left: 0.1em;
	opacity: 0.67;
	position: absolute;
	width: 0.5em;
}

.entry-content a[href*="//"]:not([href*="pfmc.missingcolors.com"]):hover::after {
	opacity: 1;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/

textarea {
	width: 100%;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	font-size: 0.75rem;
	line-height: 1;
	padding: 0.6em 1em 0.4em;
	cursor: pointer;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

/* stylelint-disable no-duplicate-selectors */

.site-header {
	height: 90px;
	z-index: 3;
}

.home .site-header {
	position: absolute;
	top: auto;
}

.header-image {
	margin: 0 auto;
}

.header-image img {
	display: block;
	margin: 0 auto;
}

.custom-logo-link {
	display: inline-block;
	margin: 0 auto 1em;
}

.site-branding {
	position: fixed;
}

.site-title {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0;
	padding: 1.5rem;
	width: 300px;
}

.site-title a {
	color: var(--color-theme-secondary);
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1;
	-webkit-text-decoration: none;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 0.3s ease;
}

.site-title.color--transparent a {
	color: transparent;
}

@media (min-width: 48em) {

	.site-title.color--dark {
		background: var(--color-theme-white);
	}

	.site-title.color--dark a {
		color: var(--color-theme-secondary);
	}
}

.site-title a span {
	display: block;
	font-weight: 400;
	font-size: 0.75em;
	letter-spacing: 0.07em;
}

.site-title a:hover {
	color: var(--color-theme-primary);
}

.site-description {
	margin: 0.4375em 0 0;
	font-size: 17px;
	font-weight: inherit;
	line-height: 1.4;
	word-wrap: break-word;
	color: #757575;
}

@media screen and (max-width: 60em) {

	.site-header {
		height: auto;
		width: 100%;
	}

	.site-branding {
		position: relative;
	}

	.site-title {
		margin: 0.75rem 1.5rem;
	}
}

/*--------------------------------------------------------------
## Main navigation menu
--------------------------------------------------------------*/

.main-navigation {
	background: var(--color-theme-white);
	border-radius: 0 5px 0 0;
	box-shadow: 3px 0 9px 0 rgba(0, 0, 0, 0.25);
	clear: both;
	display: block;
	margin: 4rem 0 0;
	max-width: var(--content-width);
	z-index: 2;
}

.menu-toggle {
	border: none;
	border-radius: 0;
	color: var(--color-theme-white);
	display: block;
	height: 65px;
	padding: 0.6em 1.2em 0.5em;
	position: fixed;
	right: 0;
	top: 0;
	font-size: 80%;
	font-weight: 600;
	text-transform: uppercase;
	background: var(--color-theme-secondary);
	z-index: 1;
}

.pfmc-alert + .site .menu-toggle {
	bottom: 0;
}

.main-navigation a {
	display: block;
	width: 100%;
	padding: 0.5em 0;
	-webkit-text-decoration: none;
	text-decoration: none;
	color: #000;
}

.main-navigation a:hover,
.main-navigation a:focus {
	-webkit-text-decoration: underline;
	text-decoration: underline;
}

.main-navigation ul {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-navigation li {
	padding-left: 1.5rem;
	position: relative;
}

.main-navigation ul li {
	margin: 0;
}

.main-navigation .menu > li {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
	color: var(--color-theme-primary);
	font-weight: 700;
}

.main-navigation .menu > li a {
	line-height: 1.125;
	padding: 0.75rem var(--global-spacing) 0.75rem 0;
}

.main-navigation .menu > .menu-item-has-children.toggled-on,
.main-navigation .menu > .menu-item-has-children.current-menu-item {
	background: rgba(0, 0, 0, 0.05);
	border-left: 6px solid var(--color-theme-primary);
	padding-left: calc(1.5rem - 6px);
}

.main-navigation .menu > .current-menu-ancestor,
.main-navigation .menu > .current-menu-item.menu-item-has-children.toggled-on,
.main-navigation .menu > .current-menu-item.menu-item-has-children.current-menu-item {
	background: rgba(0, 0, 0, 0.05);
}

.main-navigation .menu > .toggled-on > .sub-menu,
.main-navigation .menu > .current-menu-item:not(.toggled-off) > .sub-menu {
	padding-bottom: 1em;
}

.main-navigation .menu .current-menu-ancestor > a {
	font-weight: 600;
}

.main-navigation ul li:first-child {
	margin-left: 0;
}

.main-navigation .menu {
	display: flex;
	flex-direction: column;
}

.main-navigation .sub-menu {
	display: none;
}

.main-navigation .toggled-on > .sub-menu,
.main-navigation .current-menu-item:not(.toggled-off) > .sub-menu {
	display: block;
}

.main-navigation .sub-menu .sub-menu {
	border-left: 2px solid var(--color-theme-silver);
	margin-bottom: 1em;
}

.main-navigation .sub-menu .sub-menu li {
	padding-left: 1.5rem;
}

.main-navigation .dropdown-toggle {
	background: transparent;
	border: none;
	border-radius: 0;
	display: block;
	height: 2.65rem;
	margin: 0;
	overflow: visible;
	padding: 0.75rem 0 0.85rem;
	position: absolute;
	right: 0;
	top: 0;
	width: 3rem;
	transition: background 0.3s ease;
}

:is(.main-navigation .dropdown-toggle):hover {
		background: rgba(0, 0, 0, 0.05);
	}

:is(.main-navigation .dropdown-toggle)::before {
		content: "";
		background: url(./images/icon-plus-blue.svg) no-repeat center;
		display: inline-block;
		height: 100%;
		width: 100%;
		transition: transform 0.3s ease;
	}

:is(.main-navigation .toggled-on,.main-navigation .current-menu-item:not(.toggled-off))  > .dropdown-toggle::before {
			transform: rotate(-135deg);
		}

@media screen and (max-width: 60em) {

	.main-navigation {
		background: var(--color-theme-white);
		margin: 0;
		position: absolute;
		width: 100%;
		z-index: 4;
	}

	.home .main-navigation {
		margin-top: 0;
	}

	.main-navigation .menu {
		background: var(--color-theme-white);
		height: 100%;
		min-height: 100vh;
		overflow: scroll;
		padding: 65px 2rem 2rem;
		position: fixed;
		top: 0;
		transform: translate(-100vw);
		transition: all 0.3s ease;
		width: 100vw;
	}

	.main-navigation.toggled-on .menu {
		transform: translate(0);
	}

	.main-navigation .dropdown-toggle {
		height: 2.75rem;
	}

	.menu-toggle {
		width: 78px;
	}
}

@media screen and (min-width: 60em) {

	.home .main-navigation {
		background: var(--color-theme-white);
	}

	.menu-toggle {
		display: none;
	}

	.primary-menu-container {
		font-size: var(--font-size-small);
		padding-bottom: 2rem;
		position: sticky;
		top: 120px;
	}
}

@supports not (mix-blend-mode: multiply) {

	.primary-menu-container {
		background: #fff;
		z-index: 1;
	}

	.main-navigation .menu {
		z-index: 1;
	}
}

/*--------------------------------------------------------------
# Content navigation
--------------------------------------------------------------*/

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation,
.site-main .pagination {
	border-bottom: 1px solid #111;
	margin: 0 auto 2em;
	max-width: 720px;
	overflow: hidden;
	padding: 0 1.5rem 2em;
}

@media screen and (min-width: 48em) {

	.site-main .comment-navigation,
	.site-main .posts-navigation,
	.site-main .post-navigation,
	.site-main .pagination {
		padding-left: 0;
		padding-right: 0;
	}
}

.nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	width: 50%;
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

.post-navigation-sub span {
	color: var(--global-font-color);
	-webkit-text-decoration: none;
	text-decoration: none;
	display: inline-block;
}

.site-main .pagination {
	margin-bottom: 1.5em;
}

.pagination .nav-links {
	justify-content: center;
	flex-wrap: wrap;
}

.pagination .page-numbers {
	display: inline-block;
	margin-bottom: 0.5em;
	margin-right: 1em;
	border: 1px solid var(--color-link);
	min-width: 1.75em;
	line-height: 1.75;
	text-align: center;
	-webkit-text-decoration: none;
	text-decoration: none;
}

.pagination a {
	background: none;
}

.pagination a:visited {
	color: var(--color-link);
}

.pagination a:hover,
.pagination a:focus,
.pagination a:active {
	background: var(--color-theme-silver);
	border-color: var(--color-theme-red);
}

.pagination .prev,
.pagination .next {
	min-width: auto;
	border-color: transparent;
	-webkit-text-decoration: underline;
	text-decoration: underline;
}

.pagination .prev:hover,
.pagination .prev:focus,
.pagination .prev:active,
.pagination .next:hover,
.pagination .next:focus,
.pagination .next:active {
	border-color: transparent;
}

.pagination .dots {
	min-width: auto;
	border: none;
}

.pagination .current {
	border-color: var(--global-font-color);
}

/*--------------------------------------------------------------
# Toolbar
--------------------------------------------------------------*/

.toolbar {
	align-items: center;
	display: flex;
	z-index: 3;
}

/* toolbar nav */

.menu-toolbar-menu-container .menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu-toolbar-menu-container a {
	color: var(--color-theme-primary);
	font-size: var(--font-size-smaller);
	margin-right: calc(var(--global-spacing) / 2);
	text-transform: uppercase;
}

.home .menu-toolbar-menu-container a {
	color: var(--color-theme-white);
}

.menu-toolbar-menu-container a:hover {
	-webkit-text-decoration: underline;
	text-decoration: underline;
}

@media screen and (max-width: 60em) {

	.menu-toolbar-menu-container {
		display: none;
	}
}

/* search bar */

.toolbar .topbar__search__button {
	background: var(--color-theme-primary);
	border: none;
	border-radius: 0;
	display: block;
	height: 100%;
	margin-left: auto;
	padding: 1rem 1.5rem;
	width: 78px;
	transition: background 0.3s ease;
}

.toolbar .topbar__search__button:hover {
	background: var(--color-theme-blue);
}

.toolbar .topbar__search__button.close {
	background: var(--color-theme-secondary);
}

.toolbar .topbar__search__button svg {
	width: 20px;
}

.search-icon-path,
.close .search-icon-path {
	fill: #fff;
}

.page-search {
	display: none;
}

.page-search .search-form {
	align-items: center;
	display: flex;
}

.page-search .search-form label {
	width: 100%;
}

.page-search.visible {
	background: linear-gradient(90deg, #0b9ae3 0, #04cafa);
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	padding-right: 1.5rem;
	width: 100%;
}

.page-search input.search-field {
	background: transparent;
	border: none;
	border-radius: 0;
	color: #fff;
	font-size: 1.5em;
	margin-left: 1rem;
	padding-left: 2rem;
	width: 100%;
}

.page-search input.search-field:focus {
	border-bottom: 1px solid #fff;
	outline: none;
	padding-bottom: 2px;
}

.page-search input.search-field::placeholder {
	color: rgba(255, 255, 255, 0.75);
}

.page-search input.search-submit {
	background-color: transparent;
	background-image: url(./images/icon-arrow-white.svg);
	background-position: center center;
	background-repeat: no-repeat;
	border: 0;
	margin-left: 1rem;
	text-indent: -999999px;
}

@media screen and (max-width: 60em) {

	.toolbar {
		background: transparent;
		position: fixed;
		top: 70px;
		right: 0;
		width: auto;
	}

	.page-search.visible {
		height: 54px;
	}

	.admin-bar .toolbar {
		top: calc(70px + 46px);
	}
}

@media screen and (min-width: 60em) {

	.toolbar {
		position: fixed;
		right: 0;
		height: 90px;
	}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.site-footer {
	background: var(--color-theme-secondary);
	color: #f1f1f1;
	font-size: 0.8em;
	margin: 0;
	padding: var(--global-spacing);
}

.site-info {
	text-align: center;
}

.site-footer a {
	color: var(--color-theme-blue);
	-webkit-text-decoration: none;
	text-decoration: none;
}

.site-footer a:hover {
	-webkit-text-decoration: underline;
	text-decoration: underline;
}

/* Footer menu */

.menu-footer-menu-container .menu {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu-footer-menu-container .menu li {
	font-weight: 600;
	margin: 0 2rem 1rem 0;
}

/* Footer org details */

.footer-details {
	line-height: 2;
	margin-top: 4rem;
}

.footer-details .header {
	color: var(--color-theme-white);
	font-weight: 600;
}

.tele-numbers {
	margin-top: 2rem;
}

.tele-numbers a {
	color: inherit;
	-webkit-text-decoration: none;
	text-decoration: none;
}

.tele-numbers span {
	border-right: 1px solid #f1f1f1;
	margin-right: 1em;
	padding-right: 1em;
	text-transform: uppercase;
}

.tele-numbers span:last-child {
	border-right: none;
	margin-right: 0;
	padding-right: 0;
}

.footer-logo {
	margin: 1rem auto 3rem;
	max-width: 200px;
}

@media screen and (min-width: 600px) {

	.footer-logo {
		float: right;
		margin: 0 0 0 1.5rem;
	}
}

/* footer bottom -> social bar */

.footer-bottom {
	display: flex;
}

.social-bar {
	display: flex;
	list-style: none;
	margin: var(--global-spacing) 0 0;
	padding: 0;
}

.social-bar li {
	margin-right: 1rem;
	width: 30px;
}

.social-bar path {
	fill: var(--color-theme-blue);
	transition: fill 0.3s ease;
}

.social-bar a:hover path {
	fill: var(--color-theme-silver);
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/

/* Globally hidden elements when Infinite Scroll is supported and in use. */

.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {

	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that
were hidden (via .neverending) before. */

.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Alert bar
--------------------------------------------------------------*/

.pfmc-alert {
	background: var(--color-theme-gray-dark);
	display: flex;
}

.pfmc-alert.high {
	background: var(--color-theme-red);
}

.pfmc-alert > * {
	color: #fff;
	font-size: var(--font-size-small);
	line-height: 1.3;
	margin: 0;
	padding: 0.25em;
}

.pfmc-alert h1 {
	font-weight: 700;
}

.pfmc-alert a {
	background-image: none;
	color: #fff;
	-webkit-text-decoration: underline;
	text-decoration: underline;
}

.pfmc-alert a:visited {
	color: #fff;
}

.pfmc-alert a:hover,
.pfmc-alert a:focus {
	background-image: none;
	color: var(--color-theme-aqua);
}

.pfmc-alert {
	flex-wrap: wrap;
	justify-content: center;
	padding: calc(var(--global-spacing) / 4) var(--global-spacing);
}

/* Handles moving the logo and toolbar into the correct place when the alert bar is present */

.pfmc-alert + .site .site-branding,
.pfmc-alert + .site .toolbar {
	position: absolute;
	top: auto;
}

.pfmc-alert + .site .fix-to-top {
	position: fixed;
	top: 0;
}

@media (max-width: 48em) {

	.pfmc-alert + .site .fix-to-top {
		position: absolute;
	}
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/

.comments-wrap {
	margin: 0 var(--global-spacing);
}

#comments {
	border-bottom: 1px solid;
	margin-bottom: 2rem;
	padding-bottom: 1rem;

}

.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

.comments-title,
.comment-reply-title {
	margin-bottom: 1em;
	font-size: 2em;
	font-weight: 900;
}

.comment-list {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.comment-list ol {
	list-style-type: none;
}

.children {
	margin-left: 1em;
	padding-left: 0;
}

@media screen and (min-width: 48em) {

	.children {
		margin-left: 2em;
	}
}

.comment-body {
	border-bottom: 1px solid #c3c3c3;
	margin-bottom: 3em;
}

.comment-meta {
	position: relative;
	margin-left: 70px;
	font-size: 80%;
}

.comment-meta a,
.comment-form a {
	-webkit-text-decoration: none;
	text-decoration: none;
	border: none;
}

.comment-meta a:hover,
.comment-meta a:focus,
.comment-form a:hover,
.comment-form a:focus {
	-webkit-text-decoration: underline;
	text-decoration: underline;
}

.comment .avatar {
	position: absolute;
	left: -70px;
	width: 50px;
	height: 50px;
	border-radius: 50px;
}

.bypostauthor .avatar {
	box-sizing: content-box;
	border: 5px solid #ccc;
	margin-top: -5px;
	margin-left: -5px;
}

.comment-author {
	font-size: 1.4em;
	line-height: 1.3;
}

.says {
	font-size: 80%;
}

.comment-metadata {
	padding-bottom: 0.5em;
}

.comment-content a {
	word-wrap: break-word;
}

/* stylelint-enable no-duplicate-selectors */

.comment-content ul,
.comment-content ol {
	margin: 0;
	padding-right: 3em;
	padding-left: 3em;
}

.comment-content ol {
	list-style-type: decimal;
}

.comment-content ul ul,
.comment-content ol ol {
	margin-right: 0;
	margin-left: 0;
}

@media screen and (min-width: 48em) {

	.comment-content ul,
	.comment-content ol {
		padding-right: 1.5em;
		padding-left: 1.5em;
	}
}

.comment-content blockquote {
	margin-bottom: 0.75em;
	font-size: 1.6em;
	line-height: 1.25;
}

.comment-content cite {
	font-size: 1.2em;
}

.reply {
	margin-bottom: 1.5em;
	text-align: right;
}

.comment-reply-link,
.comment-form .form-submit input {
	display: inline-block;
	padding: 0.5em 1.4em;
	font-size: 85%;
	color: #000;
	line-height: 1.3;
	-webkit-text-decoration: none;
	text-decoration: none;
	background: transparent;
	border: 1px solid #c3c3c3;
	border-radius: 0;
}

.comment-reply-link:hover,
.comment-reply-link:focus,
.comment-form .form-submit input:hover,
.comment-form .form-submit input:focus {
	border-color: #000;
	cursor: pointer;
}

/* Comment Form */

.comment-form {
	line-height: 1.3;
}

.comment-notes {
	margin-top: -1em;
	font-size: 0.9em;
	font-style: italic;
	background: hsl(0, 0%, 95%);
}

.comment-form a {
	font-weight: 500;
}

.comment-form label {
	width: 13em;
	display: block;
	font-size: 0.9em;
	padding-bottom: 0.4em;
}

.comment-form-cookies-consent {
	display: flex;
}

.comment-form .comment-form-cookies-consent input {
	margin-top: 0.2em;
}

.comment-form .comment-form-cookies-consent label {
	display: inline-block;
	margin-left: 0.6em;
}

.comment-form .required {
	color: #d54e21;
}

.comment-form .form-submit {
	text-align: right;
}

.pingback .comment-body {
	padding: 1em 0;
}

.pingback a {
	font-style: italic;
	-webkit-text-decoration: none;
	text-decoration: none;
}

.reply a.comment-reply-link {
	background: transparent;
}

.commentlist,
.commentlist .children {
	list-style: none;
}

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Post and page content
	# Alignments
	# Blocks
	# Custom block colors
	# Custom font sizes
	# Media
		# Captions
		# Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Post and page content
--------------------------------------------------------------*/

/* Custom rule  for sticky posts:
.sticky {

}
*/

.entry {
	margin-bottom: 1rem;
}

.entry-meta .updated {
	padding-left: 2em;
	font-style: italic;
}

.posted-by {
	font-size: var(--font-size-small);
	margin-top: 0.5em;
}

@media screen and (min-width: 48em) {

	.post-thumbnail {
		float: right;
		margin: 0 0 var(--global-spacing) var(--global-spacing);
		width: 45%;
	}
}

.post-thumbnail img {
	margin: 0 auto;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 4rem 0 0;
}

.page-content > *,
.entry-content > * {
	margin-right: auto;
	margin-left: auto;
	padding-right: 2rem;
	padding-left: 2rem;
	max-width: var(--content-width);
}

@media screen and (min-width: 48em) {

	.page-content > *,
	.entry-content > * {
		padding-right: var(--global-spacing);
		padding-left: var(--global-spacing);
	}
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content h3,
.entry-content h4,
.entry-content h5 {
	margin-left: 0;
	max-width: 900px;
}

.page-header,
.entry-header,
.entry-footer,
.site-info,
.post-navigation,
.page-navigation,
.comments-area,
.sc_events_calendar {
	margin: var(--global-spacing) auto;
	padding-right: 2rem;
	padding-left: 2rem;
	max-width: var(--content-width);
}

@media screen and (min-width: 48em) {

	.page-header,
	.entry-header,
	.entry-footer,
	.site-info,
	.post-navigation,
	.page-navigation,
	.comments-area,
	.sc_events_calendar {
		padding-right: var(--global-spacing);
		padding-left: var(--global-spacing);
	}
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

.entry-footer span {
	margin-right: 1em;
}

.entry-footer {
	clear: both;
	padding-top: var(--global-spacing);
	padding-bottom: var(--global-spacing);
}

.entry-taxonomies {
	font-size: var(--font-size-smaller);
}

.page .entry-taxonomies,
.single-council_meeting .entry-taxonomies {
	display: none;
}

.entry-taxonomies-title {
	font-weight: 700;
}

.term-links {
	display: block;
}

/* Filterable archives */

.archive-filters {
	align-items: center;
	display: flex;
	gap: var(--global-spacing);
	margin-top: var(--global-spacing);
}

@media (--larger-viewport) {

.archive-filters {
		flex-wrap: wrap;
}
	}

.archive-filters  > * {
		flex: 1;
		position: relative;
		min-width: 12rem;
		max-width: 22rem;
	}

@media (max-width: 34rem) {

.archive-filters  > * {
			max-width: 100%;
	}
		}

:is(.archive-filters > *) span,:is(.archive-filters > *) label {
			width: 100%;
		}

:is(.archive-filters > *) input,:is(.archive-filters > *) select {
			height: 3rem;
			padding: 0 0.5em;
			width: 100%;
		}

.deck.loading {
		position: relative;
	}

.deck.loading  > * {
			opacity: 0.25;
		}

.deck.loading::before {
			animation: loading 1s steps(4, end) infinite;
			color: var(--color-theme-primary);
			content: "\2026";
			display: inline-block;
			font-size: 10rem;
			left: 50%;
			line-height: 1;
			margin-left: -0.435em;
			opacity: 1;
			overflow: hidden;
			position: absolute;
			top: -5rem;
			width: 0;
			z-index: 1;
		}

@keyframes loading {

	to {
		width: 1ch;
	}
}

/*--------------------------------------------------------------
## Alignments
--------------------------------------------------------------*/

.alignleft {
	float: left;
	margin-right: 1.5rem;
}

.alignright {
	float: right;
	margin-left: 1.5rem;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.has-text-align-left {
	text-align: left;
}

.has-text-align-right {
	text-align: right;
}

.has-text-align-center {
	text-align: center;
}

/*--------------------------------------------------------------
## Blocks
--------------------------------------------------------------*/

/*
 * Available block selectors:
 * .wp-block-image
 * .wp-block-media-text
 * .wp-block-gallery
 * .wp-block-audio
 * .wp-block-video
 * .wp-block-quote
 * .wp-block-cover
 * .wp-block-file
 * .wp-block-button
 * .wp-block-gallery
 * .wp-block-embed
 * .wp-block-audio
 * .wp-block-pullquote
 * .wp-block-preformatted
 * .wp-block-code
 * .wp-block-verse
 * .wp-block-table
 * .wp-block-separator
 * .wp-block-columns
 * .wp-block-column
 * .wp-block-latest-posts
 * .wp-block-categories
 * .wp-block-archives
 */

.wp-block-image figcaption {
	padding: 0.5em;
	text-align: left;
}

.wp-block-media-text {
	align-items: flex-start;
}

.wp-block-quote {
	background: transparent;
	border-width: 0;
	font-size: 1.75em;
	margin: var(--global-spacing) 0 6rem;
}

.wp-block-quote::before {
	color: var(--color-theme-primary);
	content: "\201C";
	display: block;
	font-size: 4em;
	font-weight: 900;
	margin-bottom: -0.67em;
}

.wp-block-quote cite {
	display: block;
	font-size: var(--font-size-regular);
}

.wp-block-quote.is-large,
.wp-block-quote.is-style-large,
.wp-block-quote[style*="text-align:center"],
.wp-block-quote[style*="text-align: center"] {
	padding-left: var(--global-spacing);
	padding-right: var(--global-spacing);
}

ul.block-box.alignright,
ul.block-box.alignleft,
ol.block-box.alignright,
ol.block-box.alignleft {
	margin-right: var(--global-spacing);
	margin-left: var(--global-spacing);
	padding: 2.5em;
}

.entry-content ul ul,
.entry-content ol ol {
	margin-right: 0;
	margin-left: 0;
	padding-right: 1.5em;
	padding-left: 0;
}

.entry-content li {
	margin: 0.5em 0 0.5em calc(var(--global-spacing) / 1.5);
	padding-left: 0.25em;
}

.entry-content li li {
	margin-left: 1.75em;
}

.entry-content li ul {
	list-style-type: circle;
}

.entry-content li li ul {
	list-style-type: square;
}

.alignwide {
	max-width: calc(50% + var(--content-width) / 2);
}

.alignfull {
	max-width: 100%;
	padding: 0;
}

.wp-block-cover {
	min-height: 60vh;
}

.wp-block-cover,
.wp-block-cover-image {
	margin: 0;
}

.wp-block-cover .wp-block-cover-text {
	margin-top: 0;
}

.wp-block-cover h2 {
	font-size: var(--global-spacing);
	font-weight: 900;
	line-height: 1;
	margin-bottom: 1rem;
	padding: 0;
	text-align: left;
}

/* Columns Block */

.wp-block-columns {
	display: flex;
	width: 100%;
}

.wp-block-column,
.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column,
.wp-block-column:not(:first-child),
.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:not(:first-child) {
	flex-basis: 100%;
	margin-right: 0.25em;
	margin-left: 0.25em;
}

.wp-block-latest-posts,
.wp-block-latest-comments {
	margin-top: 1.5em;
	margin-bottom: 1.5em;
}

.wp-block-column .wp-block-latest-posts__list {
	padding: 1em 0.5em 0.5em;
}

.wp-block-group .wp-block-latest-posts__list {
	padding: 1em 0.5em 0.5em 0;
}

.wp-block-column .wp-block-latest-posts.is-grid,
.wp-block-group .wp-block-latest-posts.is-grid {
	margin-right: 0;
	padding: 0;
}

.wp-block-latest-posts.wp-block-latest-posts__list:not(.is-grid) {
	background: rgba(255, 255, 255, 0.5);
	border: none;
	padding-top: 1em;
}

.entry-content > .wp-block-latest-posts.wp-block-latest-posts__list {
	background: rgba(255, 255, 255, 0.75);
	border-left: 8px solid var(--color-theme-stone);
	margin-top: calc(var(--global-spacing) / 2);
	margin-bottom: calc(var(--global-spacing) / 2);
	padding-left: calc(var(--global-spacing) - 8px);
}

.wp-block-latest-posts.wp-block-latest-posts__list li,
.sc_events_list .sc_event {
	border-bottom: 1px solid var(--color-theme-silver);
	font-size: var(--font-size-small);
	margin: 0 0 calc(var(--global-spacing) / 4);
	padding-left: 0;
	padding-bottom: calc(var(--global-spacing) / 4);
}

.wp-block-latest-posts.wp-block-latest-posts__list li:last-of-type,
.sc_events_list .sc_event:last-of-type {
	border: none;
}

.wp-block-latest-posts.is-grid {
	border: none;
	border-radius: 3px;
	display: grid;
	gap: 1px;
	margin-top: var(--global-spacing);
	overflow: hidden;
	padding-right: var(--global-spacing);
	padding-left: var(--global-spacing);
	max-width: 100%;
}

.wp-block-latest-posts.columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.wp-block-latest-posts.columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.wp-block-latest-posts.columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.wp-block-latest-posts.columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.wp-block-latest-posts.columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.wp-block-latest-posts.is-grid li {
	background: #fff;
	border: none;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 1em 1.5em 1em 1em;
}

.wp-block-latest-posts.columns-2 li,
.wp-block-latest-posts.columns-3 li,
.wp-block-latest-posts.columns-4 li,
.wp-block-latest-posts.columns-5 li,
.wp-block-latest-posts.columns-6 li {
	width: 100%;
}

.wp-block-latest-posts a,
.wp-block-latest-posts .arrow a {
	background-image: none;
	color: #32373c;
	-webkit-text-decoration: none;
	text-decoration: none;
}

.wp-block-latest-posts a:hover {
	color: var(--color-theme-primary);
}

.wp-block-latest-posts__post-date {
	color: var(--color-theme-primary-dark);
	display: flex;
	margin-bottom: 0.25em;
	order: -1;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignfull {
	padding: 0 1.5em;
}

@media screen and (min-width: 48em) {

	.wp-block-latest-posts.alignright,
	.wp-block-latest-posts.alignleft {
		width: 40%;
		min-width: 250px;
	}
}

.site-main .wp-block-button__link:active,
.site-main .wp-block-button__link:focus,
.site-main .wp-block-button__link:hover,
.site-main .wp-block-button__link:visited {
	color: inherit;
}

.wp-block-buttons .wp-block-button {
	margin-top: 1rem;
}

.wp-block-button .wp-block-button__link {
		background: var(--color-theme-secondary);
		border-radius: 3px;
		color: var(--color-theme-white);
		font-size: 0.9rem;
		transition: all 0.3s ease;
	}

:is(.wp-block-button .wp-block-button__link):visited {
			color: inherit;
		}

:is(.wp-block-button .wp-block-button__link):hover {
			background: var(--color-theme-primary);
			color: var(--color-theme-white);
		}

.wp-block-button.is-style-outline .wp-block-button__link {
			background-color: transparent;
			border-color: var(--color-theme-gray);
			border-width: 1px;
			color: inherit;
		}

:is(.wp-block-button.is-style-outline .wp-block-button__link):visited {
				color: inherit;
			}

:is(.wp-block-button.is-style-outline .wp-block-button__link):hover {
				background: transparent;
				color: var(--color-theme-red);
				border-color: var(--color-theme-red);
			}

.is-style-arrow-link {
	margin-top: 1rem;
}

.is-style-arrow-link .wp-block-button__link,.is-style-arrow-link a {
		background-color: transparent;
		color: var(--color-theme-red-dark);
		font-size: 1rem;
		padding: 0;
		-webkit-text-decoration: underline;
		text-decoration: underline;
		text-underline-offset: 2px;
		text-decoration-thickness: 1px;
	}

:is(.is-style-arrow-link .wp-block-button__link,.is-style-arrow-link a)::after {
			box-sizing: content-box;
			content: url(./images/icon-arrow-red.svg);
			display: inline-block;
			padding: 0.05em 0 0 0.5em;
			position: absolute;
			width: 0.8em;
			transition: padding 0.3s ease;
		}

:is(.is-style-arrow-link .wp-block-button__link,.is-style-arrow-link a):visited {
			color: inherit;
		}

:is(.is-style-arrow-link .wp-block-button__link,.is-style-arrow-link a):hover {
			background-color: transparent;
			-webkit-text-decoration: none;
			text-decoration: none;
		}

:is(.is-style-arrow-link .wp-block-button__link,.is-style-arrow-link a):hover::after {
				padding-left: 1em;
			}

.council-meeting-box .is-style-arrow-link {
		margin: 1rem 0;
	}

:is(.council-meeting-box .is-style-arrow-link) .wp-block-button__link,:is(.council-meeting-box .is-style-arrow-link) a {
			color: var(--global-font-color);
		}

table {
	border-spacing: 0;
	border-collapse: collapse;
}

.wp-block-table td,
.wp-block-table th {
	border: 1px solid var(--color-theme-stone);
}

.wp-block-table th {
	background: var(--color-theme-secondary);
	color: var(--color-theme-white);
}

.wp-block-table tr:nth-child(even) {
	background: var(--color-theme-silver);
}

.wp-block-separator {
	background: var(--color-theme-stone);
	border: none;
	clear: both;
	margin: 2em 0;
}

/*--------------------------------------------------------------
## Custom block colors.
--------------------------------------------------------------*/

.has-background,
.wp-block-group.has-background {
	margin: var(--global-spacing) 0;
	padding: var(--global-spacing);
}

.has-theme-primary-color,
.has-theme-primary-color a {
	color: var(--color-theme-primary);
}

.has-theme-primary-background-color {
	background-color: var(--color-theme-primary);
}

.has-theme-secondary-color,
.has-theme-secondary-color a {
	color: var(--color-theme-secondary);
}

.has-theme-secondary-background-color {
	background-color: var(--color-theme-secondary);
}

.has-theme-white-color,
.has-theme-white-color a {
	color: var(--color-theme-white);
}

.has-theme-white-background-color {
	background-color: var(--color-theme-white);
}

.has-theme-silver-color,
.has-theme-silver-color a {
	color: var(--color-theme-silver);
}

.has-theme-silver-background-color {
	background-color: var(--color-theme-silver);
}

/*--------------------------------------------------------------
## Custom block font sizes.
--------------------------------------------------------------*/

.has-small-font-size {
	font-size: var(--font-size-small);
}

.has-regular-font-size {
	font-size: var(--font-size-regular);
}

.has-large-font-size {
	font-size: var(--font-size-large);
}

.has-larger-font-size {
	font-size: var(--font-size-larger);
}

/*--------------------------------------------------------------
## Media
--------------------------------------------------------------*/

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */

embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
### Captions
--------------------------------------------------------------*/

.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption-text {
	text-align: center;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
### Gallery Block - overrides core styles
--------------------------------------------------------------*/

.wp-block-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	grid-gap: 0.5em;
}

.wp-block-gallery:not(.components-placeholder) {
	margin: 1.5em auto;
}

/* Override standard ul indentation. */

.entry-content .wp-block-gallery {
	padding-right: 1.5em;
	padding-left: 1.5em;
}

@media screen and (min-width: 48em) {

	.entry-content .wp-block-gallery {
		padding-right: 0;
		padding-left: 0;
	}
}

.wp-block-gallery.columns-2 .blocks-gallery-item,
.wp-block-gallery.columns-3 .blocks-gallery-item,
.wp-block-gallery.columns-4 .blocks-gallery-item,
.wp-block-gallery.columns-5 .blocks-gallery-item,
.wp-block-gallery.columns-6 .blocks-gallery-item,
.wp-block-gallery.columns-7 .blocks-gallery-item,
.wp-block-gallery.columns-8 .blocks-gallery-item,
.wp-block-gallery.columns-9 .blocks-gallery-item {
	grid-column: span 1;
	margin: 0;
	width: inherit;
}

@media screen and (min-width: 40em) {

	.wp-block-gallery.columns-2 {
		grid-template-columns: repeat(2, 1fr);
	}

	.wp-block-gallery.columns-3 {
		grid-template-columns: repeat(3, 1fr);
	}

	.wp-block-gallery.columns-4 {
		grid-template-columns: repeat(4, 1fr);
	}

	.wp-block-gallery.columns-5 {
		grid-template-columns: repeat(5, 1fr);
	}

	.wp-block-gallery.columns-6 {
		grid-template-columns: repeat(6, 1fr);
	}

	.wp-block-gallery.columns-7 {
		grid-template-columns: repeat(7, 1fr);
	}

	.wp-block-gallery.columns-8 {
		grid-template-columns: repeat(8, 1fr);
	}

	.wp-block-gallery.columns-9 {
		grid-template-columns: repeat(9, 1fr);
	}
}

/*--------------------------------------------------------------
### Galleries (Legacy)
--------------------------------------------------------------*/

.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	grid-gap: 0.5em;
}

@media screen and (min-width: 40em) {

	.gallery-columns-2 {
		grid-template-columns: repeat(2, 1fr);
	}

	.gallery-columns-3 {
		grid-template-columns: repeat(3, 1fr);
	}

	.gallery-columns-4 {
		grid-template-columns: repeat(4, 1fr);
	}

	.gallery-columns-5 {
		grid-template-columns: repeat(5, 1fr);
	}

	.gallery-columns-6 {
		grid-template-columns: repeat(6, 1fr);
	}

	.gallery-columns-7 {
		grid-template-columns: repeat(7, 1fr);
	}

	.gallery-columns-8 {
		grid-template-columns: repeat(8, 1fr);
	}

	.gallery-columns-9 {
		grid-template-columns: repeat(9, 1fr);
	}
}

.gallery-item {
	padding: 0.5em;
	border: 1px solid rgb(222, 222, 222);
}

.gallery-icon {
	display: flex;
	justify-content: center;
}

.gallery-caption {
	font-size: 80%;
}

/*--------------------------------------------------------------
### Hero block (class added to cover block)
--------------------------------------------------------------*/

.hero {
	display: flex;
	min-height: calc(60vh + 90px);
	justify-content: flex-start;
	padding: 0 2rem;
	width: 100vw;
	max-width: 100vw;
}

@media screen and (min-width: 60em) {

	.hero {
		margin-left: -300px;
		padding: 0;
	}
}

.hero::after {
	background-image: linear-gradient(to right, #29e7cf 0%, #0b9ae3 100%);
	mix-blend-mode: multiply;
	content: "";
	display: block;
	opacity: 1;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

@supports not (mix-blend-mode: multiply) {

	.hero::after {
		opacity: 0.75;
	}
}

.hero h2 {
	font-size: 3em;
	font-weight: 900;
	line-height: 1;
	margin-top: 0;
	padding: 0;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
	max-width: 100%;
	animation-name: fadeIn;
	animation-duration: 1.5s;
	animation-timing-function: ease-in;
}

.hero .wp-block-cover__inner-container {
	margin: 90px 0 0;
}

@media screen and (min-width: 60em) {

	.hero .wp-block-cover__inner-container {
		margin: 0 0 0 calc(300px + var(--global-spacing));
		max-width: 900px;
	}

	.entry-content .hero h2 {
		font-size: 4.5em;
	}
}

.hero h2::before {
	background: var(--color-theme-aqua);
	content: "";
	display: block;
	height: 12px;
	margin: 2rem 0 1rem;
	width: 5rem;
}

.hero p {
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
	animation-name: fadeIn;
	animation-duration: 1.75s;
	animation-timing-function: ease-in;
	margin: 0.5em 0 1em;
}

.hero .wp-block-button {
	animation-name: fadeIn;
	animation-duration: 2s;
	animation-timing-function: ease-in;
	margin-top: 1.5rem;
}

.hero .wp-block-button__link {
	background: var(--color-red-transparent);
	border-radius: 2px;
	font-size: 0.9em;
	font-weight: 600;
	padding: 1rem 2rem;
}

.hero .wp-block-button__link:hover {
	background: var(--color-theme-red-dark);
}

/*--------------------------------------------------------------
### block-box and general box styles
--------------------------------------------------------------*/

.block-box {
	background: #fff;
	border-radius: 3px;
	float: none;
	padding: calc(var(--global-spacing) / 2);
	width: 100%;
}

.block-box > h2:first-child,
.block-box > h3:first-child,
.block-box > h4:first-child,
.block-box-head {
	color: var(--global-font-color);
	font-size: var(--font-size-small);
	font-weight: 900;
	letter-spacing: 0.1em;
	line-height: 1.35;
	margin: 1em 0 1.75em;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
}

.block-box > h2:first-child::after,
.block-box > h3:first-child::after,
.block-box > h4:first-child::after,
.block-box-head::after {
	content: " ";
	width: 25%;
	height: 1px;
	background: var(--color-theme-blue);
	display: block;
	margin: 1.5em auto 0;
}

.block-column-head {
	font-size: 1.5rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	margin: 0;
	padding-top: 2rem;
	text-transform: uppercase;
}

.block-column-head::before {
	background: var(--color-theme-aqua);
	content: "";
	display: block;
	height: 12px;
	margin: -2rem 0 1.5rem;
	width: 4rem;
}

.block-date,
.posted-on,
.sc_event_date,
.sc_event_time {
	font-size: var(--font-size-smaller);
	line-height: 1.15;
	padding-left: 1.4em;
	position: relative;
}

.posted-on .sc_event_date,
.posted-on .sc_event_time,
.posted-on .entry-date {
	font-size: 1em;
}

.block-date::before,
.posted-on::before,
.sc_event_date::before {
	content: url(./images/icon-date.svg);
	display: block;
	position: absolute;
	top: 1px;
	left: 0;
	width: 1em;
}

.block-location,
.sc_event_location {
	font-size: var(--font-size-smaller);
	margin: 0 0 1.5em;
	padding-left: 1.4em;
	position: relative;
}

.block-location::before,
.sc_event_location::before {
	content: url(./images/icon-location.svg);
	display: block;
	position: absolute;
	top: 0.1em;
	left: -0.1em;
	width: 1.2em;
}

.block-descr {
	font-size: var(--font-size-smaller);
	margin-bottom: 2em;
}

.block-box .wp-block-button {
	margin: 0 0 0.5em;
}

.block-box .wp-block-button__link {
	width: 100%;
}

.block-box .is-style-arrow-link {
	margin-top: 1.5em;
}

.intro-half > .wp-block-column:first-child {
	padding-right: 0;
}

.block-box .is-style-arrow-link.cm-link {
	color: var(--color-theme-red-dark);
	font-size: var(--font-size-smaller);
	margin-top: 0;
	margin-bottom: calc(var(--global-spacing) / 2);
}

:is(.block-box .is-style-arrow-link.cm-link) a {
		color: inherit;
	}

.block-box .is-style-arrow-link.cm-link:hover {
	color: var(--color-theme-red);
}

.council-meeting-box h3 {
		color: var(--color-theme-gray-dark);
		font-size: 1.2rem;
		font-weight: 600;
		margin-bottom: 0.5rem;
	}

@media screen and (min-width: 48em) {

	.intro-half > .wp-block-column:first-child {
		padding-right: 3em;
	}
}

.intro-half > .wp-block-column:last-child {
	margin-top: 1.5rem;
}

/* News grid */

.block-news-wrapper {
	--bg-color: var(--color-theme-silver);
	background-color: var(--bg-color);
	border-top: 1px solid var(--color-theme-white);
	padding-bottom: calc(var(--global-spacing) / 2);
}

.block-news-wrapper .wp-block-group__inner-container {
	max-width: 1200px;
}

.block-news-wrapper .wp-block-columns {
	margin-bottom: 0;
}

.block-news-wrapper .wp-block-columns > * {
	display: flex;
	flex-direction: column;
}

main .block-news-wrapper .wp-block-latest-posts.is-grid {
	border-left: 3px solid var(--color-theme-primary-dark);
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	margin-bottom: 0;
	padding: 0;
}

.block-news-wrapper .sc_events_list {
	border-left: 3px solid var(--color-theme-red-dark);
	margin-top: var(--global-spacing);
}

.block-news-wrapper .sc_events_list .sc_event {
	border-color: var(--bg-color);
	margin: 0;
	padding: 1em;
}

.block-news-wrapper .wp-block-buttons {
	margin-top: auto;
}

/* Webinar icon */

.lcpb-category-webinar a {
	position: relative;
}

.lcpb-category-webinar a::before {
	background: url(images/icon-video-camera.svg) no-repeat center, var(--color-theme-primary);
	background-size: 75%;
	content: "";
	display: inline-block;
	height: 1em;
	margin-right: 0.25em;
	margin-bottom: -2px;
	width: 1.5rem;
}

/* Events shortcode output */

.sc_events_list {
	background: var(--color-theme-white);
	border-radius: 3px;
	list-style: none;
	margin: 0;
}

.sc_events_list .sc_event {
	margin: 0 0 1em;
	padding: 0 0 1em;
}

.sc_events_list .sc_event_link,
.sc_events_list .sc_event_date,
.sc_events_list .sc_event_time,
.sc_events_list .sc_event_title {
	display: block;
	float: none;
}

.sc_events_list .sc_event_date {
	margin-top: 0.25rem;
}

.sc_event_time {
	border-left: 1px solid var(--color-theme-stone);
	margin: 0 0 0 1em;
	padding-left: 1em;
}

.sc_events_list .sc_event_title {
	display: inline;
	font-weight: 600;
}

.single-sc_event .entry-meta {
	display: none;
}

.single-sc_event .entry-title::before {
	content: "Event";
	display: block;
	font-size: 1rem;
	font-weight: 300;
	margin-top: -1rem;
	margin-bottom: 1rem;
	text-transform: uppercase;
	color: var(--color-theme-primary);
}

.sc_map_canvas {
	margin: var(--global-spacing) 0;
}

br.clear {
	display: none;
}

/* Events output */

.sc_event_details_inner {
	display: flex;
	flex-wrap: wrap;
	font-size: 0.9em;
	margin-bottom: 3rem;
}

.sc_event_location {
	flex: 100%;
	margin-top: 0.5em;
}

.sc_event_add_to_calendar {
	flex: 100%;
	font-size: var(--font-size-smaller);
	line-height: 1.15;
	margin-top: 1.5em;
	padding-left: 1.4em;
	position: relative;
}

.sc_event_add_to_calendar::before {
		content: url(./images/icon-calendar.svg);
		display: block;
		left: 0;
		position: absolute;
		top: 1px;
		width: 1em;
	}

.sc-frontend-single-event__details__calendar {
	display: none !important;
}

.sc-frontend-single-event__details__label {
	align-items: flex-start;
	display: flex;
	gap: 0.5em;
}

.sc-frontend-single-event__details__label::before {
		content: "";
		width: 1em;
		height: 1lh;
		background-color: var(--color-theme-red, #f62b42);
		-webkit-mask-repeat: no-repeat;
		        mask-repeat: no-repeat;
		-webkit-mask-size: contain;
		        mask-size: contain;
		-webkit-mask-position: center;
		        mask-position: center;
	}

.sc-frontend-single-event__details__date .sc-frontend-single-event__details__label::before {
	-webkit-mask-image: url(./images/icon-calendar.svg);
	        mask-image: url(./images/icon-calendar.svg);
}

.sc-frontend-single-event__details__time .sc-frontend-single-event__details__label::before {
	-webkit-mask-image: url(./images/icon-time.svg);
	        mask-image: url(./images/icon-time.svg);
}

.sc-frontend-single-event__details__venue .sc-frontend-single-event__details__label::before {
	-webkit-mask-image: url(./images/icon-building.svg);
	        mask-image: url(./images/icon-building.svg);
}

.sc-frontend-single-event__details__location .sc-frontend-single-event__details__label::before {
	-webkit-mask-image: url(./images/icon-location.svg);
	        mask-image: url(./images/icon-location.svg);
}

.sc-frontend-single-event__details__location a {
	display: none;
}

/* SC Events Calendar output */

.sc_events_calendar {
	border-bottom: 1px solid var(--color-theme-stone);
	padding-bottom: var(--global-spacing);
}

.sc-frontend-single-event__details__add-to-calendar .sc-frontend-single-event__details__add-to-calendar__menu li a {
	background: none;
}

/*--------------------------------------------------------------
### Action Custom Post Type
--------------------------------------------------------------*/

.single-actions .post-navigation {
	display: none;
}

/*--------------------------------------------------------------
### Rounded card // Columns
--------------------------------------------------------------*/

.wp-block-columns.is-style-rounded-card {
	line-height: 1.2;
}

.wp-block-columns.is-style-rounded-card .wp-block-column {
		border: 2px solid var(--color-theme-primary);
		border-radius: 0.75rem;
		box-shadow: 0 0.25em 0.25em rgb(0 0 0 / 25%);
		margin-top: 0;
		overflow: hidden;
	}

.wp-block-columns.is-style-rounded-card .wp-block-cover {
		height: 100%;
		padding: 0;
	}

.wp-block-columns.is-style-rounded-card .wp-block-cover__inner-container {
		width: 100% !important;
	}

.wp-block-columns.is-style-rounded-card p {
		background: var(--color-theme-gray-dark);
		color: var(--color-theme-white);
		padding: 1rem;
	}

.wp-block-columns.is-style-rounded-card a {
		background: var(--color-theme-primary);
		color: inherit;
		display: block;
		margin: -1rem !important;
		padding: 1rem;
		-webkit-text-decoration: underline;
		text-decoration: underline;
		text-underline-offset: 1px;
		text-decoration-thickness: 1px;
	}

:is(.wp-block-columns.is-style-rounded-card a):hover {
			background: var(--color-theme-primary-dark);
			-webkit-text-decoration: none;
			text-decoration: none;
		}

/*--------------------------------------------------------------
### Action status block / reusable block
--------------------------------------------------------------*/

.action-status {
	background: var(--color-theme-white);
	float: right;
	margin: var(--global-spacing) calc(var(--global-spacing) / 2);
	padding: calc(var(--global-spacing) / 2);
	max-width: 350px;
}

.action-status ul {
	border-top: 1px solid var(--color-theme-gray-light);
	list-style: none;
}

.action-status li {
	align-items: center;
	border-bottom: 1px solid var(--color-theme-gray-light);
	display: flex;
	line-height: 1.25;
	margin: 0;
	padding: 0.75em 1.5em 0.75em 2em;
	position: relative;
}

/* Light background and bold for current item */

.action_grouping-council-development .action-status li:last-child,
.action_grouping-approved-by-council .action-status li:nth-child(3),
.action_grouping-undergoing-nmfs-review .action-status li:nth-child(2),
.action_grouping-implemented .action-status li:first-child {
	background: var(--color-theme-gray-lighter);
	font-weight: 900;
}

.action_grouping-implemented .action-status li:first-child {
	background: none;
}

/* Arrow for current item */

.action_grouping-council-development .action-status li:last-child::before,
.action_grouping-approved-by-council .action-status li:nth-child(3)::before,
.action_grouping-undergoing-nmfs-review .action-status li:nth-child(2)::before {
	border: 1px solid var(--color-theme-primary);
	border-width: 0 5px 5px 0;
	content: "";
	height: 1em;
	position: absolute;
	left: 0;
	width: 1em;
	transform: rotate(-45deg);
}

/* Check mark for completed items */

.action_grouping-approved-by-council .action-status li:nth-child(n+4)::before,
.action_grouping-undergoing-nmfs-review .action-status li:nth-child(n+3)::before,
.action_grouping-implemented .action-status li::before {
	border: 5px solid var(--color-theme-aqua);
	border-width: 0 5px 5px 0;
	content: "";
	height: 1.25em;
	font-weight: 700;
	position: absolute;
	left: 0.3em;
	margin-bottom: 0.25em;
	width: 0.75em;
	transform: rotate(35deg);
}

/*--------------------------------------------------------------
### Managed Fishery
--------------------------------------------------------------*/

.fish-manage-area {
	background: #fff;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	grid-gap: 2rem;
	padding-top: var(--global-spacing);
	padding-bottom: var(--global-spacing);
}

.fish-manage-area .wp-block-group__inner-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	grid-gap: 2rem;
}

.fish-manage-area .wp-block-media-text {
	flex: 0 1 25%;
	grid-template-areas: "media-text-media";
	grid-template-columns: 100%;
	position: relative;
}

.fish-manage-area .wp-block-media-text .wp-block-media-text__media {
	grid-area: media-text-media;
}

.fish-manage-area .wp-block-media-text .wp-block-media-text__content {
	color: #fff;
	display: flex;
	grid-area: media-text-media;
	margin: auto 0 0;
	padding: 0;
}

.fish-manage-area .wp-block-media-text .wp-block-media-text__content p:first-of-type {
	background: var(--color-red-transparent);
	display: inline;
	line-height: 1.15;
	margin: 0;
	padding: 0.5rem 1rem;
	position: relative;
	transition: background-color 0.3s ease;
}

.fish-manage-area .wp-block-media-text .wp-block-media-text__content p:last-child {
	margin: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	text-indent: -999999px;
}

.fish-manage-area .wp-block-media-text .wp-block-media-text__content a {
	display: block;
	height: 100%;
}

.fish-manage-area figure {
	height: 220px;
	overflow: hidden;
	width: 100%;
}

.fish-manage-area figure img {
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.fish-manage-area .wp-block-media-text:hover img {
	transform: scale(1.15);
}

.fish-manage-area .wp-block-media-text:hover .wp-block-media-text__content p:first-of-type {
	background-color: var(--color-theme-red-dark);
}

.head-link a {
	color: var(--color-theme-red);
	font-size: var(--font-size-small);
	font-weight: 700;
	-webkit-text-decoration: none;
	text-decoration: none;
}

.entry-content .fish-manage-area a,
.entry-content .fish-manage-area a:hover {
	background-image: none;
}

/*--------------------------------------------------------------
### Layouts
--------------------------------------------------------------*/

/* 2/1 -- "side right" */

@media screen and (min-width: 600px) {

	.wp-block-columns.layout-two_one .wp-block-column {
		flex-basis: calc((100% / 3) * 2);
		margin-right: var(--global-spacing);
	}

	.wp-block-columns.layout-two_one .wp-block-column:last-child {
		flex-basis: calc(100% / 3);
		margin-right: 0;
	}
}

/*--------------------------------------------------------------
### 1/3 layout side-head with 4 blocks in the 2/3
--------------------------------------------------------------*/

@media screen and (min-width: 48em) {

	.side-head .wp-block-column:first-child {
		flex-basis: 33%;
		width: 33%;
	}
}

.news-item-head {
	color: var(--global-font-color);
	font-size: var(--font-size-small);
	font-weight: 600;
}

.side-head {
	margin: 5rem 0 2rem;
}

.side-head.recent-news {
	background: #fff;
	margin-top: 0;
	padding-top: 2rem;
}

.documents .news-item {
	padding-right: var(--global-spacing);
}

.documents.wp-block-latest-posts {
	padding-top: 3rem;
}

.documents.wp-block-latest-posts a {
	font-weight: 600;
	line-height: 1.25;
	padding-left: 2rem;
	position: relative;
}

.document {
	margin: 2rem 0;
	padding-left: 2rem;
	position: relative;
}

.entry-content > .document {
	margin-left: var(--global-spacing);
}

.documents.wp-block-latest-posts a::before,
.document::before {
	content: url(./images/icon-document.svg);
	position: absolute;
	left: 0;
	width: 1.5rem;
}

.document::before {
	left: 0;
}

.contact-block {
	padding: 0 2rem;
}

.contact-block figure {
	position: relative;
}

@media screen and (min-width: 48em) {

	.contact-block {
		padding: 0;
	}

	.contact-block figure {
		margin: 0 var(--global-spacing) 0 0;
	}
}

.contact-block figure::after {
	content: " ";
	width: 100%;
	height: 10px;
	background: var(--color-theme-aqua);
	display: block;
	position: absolute;
	opacity: 0.75;
	bottom: 0;
	left: 0;
}

@media screen and (min-width: 48em) {

	.contact-block.alignfull .wp-block-columns {
		padding: 0 var(--global-spacing) 0 0;
	}
}

/*--------------------------------------------------------------
### Managed Fishery
--------------------------------------------------------------*/

.single-managed_fishery .entry-header,
.single-managed_fishery .entry-footer,
.single-managed_fishery .post-navigation {
	display: none;
}

/*--------------------------------------------------------------
### Council meeting list output
--------------------------------------------------------------*/

.card--council_meeting {
	border-bottom: 1px solid var(--color-theme-stone);
	margin: var(--global-spacing) 0;
	padding: 0 var(--global-spacing);
}

.card--council_meeting h2 {
	margin-top: 0;
}

ul.meeting-doc-list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0 0 calc(var(--global-spacing) / 2) 0;
}

@media (max-width: 34rem) {

ul.meeting-doc-list {
		display: block;
}
	}

ul.meeting-doc-list li {
	border-right: 1px solid var(--color-theme-stone);
	margin: 0 1em 0 0;
	padding: 0.5em 1em 0.5em 0;
}

@media (max-width: 34rem) {

ul.meeting-doc-list li {
		border: none;
}
	}

ul.meeting-doc-list li:last-of-type {
	border: none;
}

/*--------------------------------------------------------------
### Archives & Search results
--------------------------------------------------------------*/

.archive .site-main,
.search .site-main {
	max-width: 900px;
}

@media screen and (min-width: 48em) {

	.archive article:first-of-type,
	.search article:first-of-type {
		margin-top: 6rem;
	}
}

.archive .page-title::after,
.search .page-title::after {
	background: var(--color-theme-aqua);
	content: "";
	display: block;
	height: 12px;
	margin: 2rem 0;
	width: 4rem;
}

.archive .card,
.search .entry {
	border-bottom: 1px solid var(--color-theme-stone);
	margin-bottom: calc(var(--global-spacing) / 2);
	padding-bottom: calc(var(--global-spacing) / 2);
}

.archive .entry-header,
.search .entry-header {
	margin-bottom: 0;
}

.archive .entry-meta,
.search .entry-meta {
	display: flex;
	flex-wrap: wrap;
	padding-right: var(--global-spacing);
	padding-left: var(--global-spacing);
}

.archive .posted-by,
.search .posted-by {
	border-left: 1px solid var(--color-theme-stone);
	font-size: var(--font-size-smaller);
	line-height: 1.15;
	margin: 0.5em 0 0 1em;
	padding-left: 1em;
}

.archive .posted-on,
.search .posted-on {
	margin: 0.5em 0 0;
}

.archive .entry-summary,
.search .entry-summary {
	margin: 2em 0 0;
	padding-right: var(--global-spacing);
	padding-left: var(--global-spacing);
}

.search .share-wrap,
.archive .post-thumbnail {
	display: none;
}

.search .entry-footer {
	padding-top: 0;
	padding-bottom: 0;
}

/* document icon */

.search .document {
	padding-left: 0;
}

.search .document::before {
	left: 0.65em;
	top: 3px;
}

/* Calendar shortcode */

#sc_calendar table {
	float: none;
}

#sc_event_category {
	display: none;
}

.sc_day_div a {
	background: none;
	border-top: 1px solid var(--color-theme-stone);
	display: block;
	padding-top: 0.75em;
}

.sc_day_div a:first-of-type {
	border: none;
}

/* Calendar archive */

.post-type-archive-sc_event .entry-meta,
.post-type-archive-sc_event .sc_map_canvas {
	display: none;
}

/* Author archive */

.author .posted-by {
	display: none;
}

.author .posted-on {
	border: none;
	padding-right: 0;
}

/*--------------------------------------------------------------
## Utilities
--------------------------------------------------------------*/

.section-margin {
	margin-top: var(--global-spacing);
}

.no-margin {
	margin: 0;
}

.intro-head {
	font-size: var(--font-size-larger);
	font-weight: 900;
	margin-top: 1.5em;
}

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

	.intro-head {
		background: url(images/pfmc-classic-logo-dark.png) no-repeat;
		background-position: left center;
		background-size: 100px;
		min-height: 100px;
		padding-left: 124px;
	}
}

/* Arrow place at the end of text, moves on hover */

.arrow {
	margin-top: 1.5em;
}

.arrow a,
.sc_events_list a {
	color: inherit;
	position: relative;
	-webkit-text-decoration: none;
	text-decoration: none;
	transition: color 0.3s ease;
}

.arrow a::after,
.sc_events_list a::after,
h1 a::after,
h2 a::after,
h3 a::after,
h4 a::after,
h5 a::after {
	background: none;
	box-sizing: content-box;
	content: url(./images/icon-arrow-red.svg);
	display: inline-block;
	padding: 0 0 0 0.5em;
	width: 0.8em;
	transition: padding 0.3s ease;
}

.arrow a:hover,
.sc_events_list a:hover {
	background: none;
	color: var(--color-theme-red-dark);
}

.arrow a:hover::after,
.sc_events_list a:hover::after,
h1 a:hover::after,
h2 a:hover::after,
h3 a:hover::after,
h4 a:hover::after,
h5 a:hover::after {
	padding-left: 1em;
}

.bg-gray .arrow a::after {
	content: url(./images/icon-arrow-white.svg);
}

.is-style-arrow-link.see-all-link a,
.block-news-wrapper .is-style-arrow-link a {
	font-size: var(--font-size-small);
	padding-right: 2em;
	max-width: 100%;
}

.equalize .wp-block-column > .block-box {
	height: 100%;
}

/* Video icon */

.video-icon {
	align-items: center;
	display: flex;
}

.video-icon::before {
	color: var(--color-theme-red-dark);
	content: "\f19b";
	font-family: dashicons, serif;
	font-size: 3rem;
	margin-right: 0.25rem;
}

.video-icon a {
	background-size: 100% 2px;
}

.video-icon a:hover {
	background-size: auto;
}

/*--------------------------------------------------------------
## Show hide block
--------------------------------------------------------------*/

.show-hide-panel {
	margin-left: 0;
	max-width: 900px;
}

.show-hide-toggle {
	color: var(--color-theme-primary-dark);
}

.show-hide-toggle button {
	border-color: var(--color-theme-stone);
	padding-right: 2.5em;
}

/*--------------------------------------------------------------
## Share bar
--------------------------------------------------------------*/

.share-wrap {
	background: var(--color-theme-primary);
		display: inline-flex;
	line-height: 1;
	margin: 1.5rem 0;
	padding: 0.75rem 1rem;
}

.share-header {
	align-self: center;
	color: #fff;
	font-size: var(--font-size-smaller);
	text-transform: uppercase;
}

.share-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.share-menu li {
	line-height: 0;
}

.share-menu a,
.share-menu a:hover {
	background: none;
	border: none;
}

.share-menu a svg {
	margin-left: 0.5rem;
	width: 30px;
}

.share-menu a path {
	transition: fill 0.3s ease;
}

.share-menu a:hover path {
	fill: var(--color-theme-aqua);
}

/*--------------------------------------------------------------
## In-page Navigation
--------------------------------------------------------------*/

.in-page-nav {
	position: sticky;
	top: 0;
	z-index: 1;
}

.admin-bar .in-page-nav {
	top: 32px;
}

@media (max-width: 48em) {

	.in-page-nav {
		position: static;
	}
}

.in-page-nav p {
	background: var(--color-theme-white);
	border-bottom: 2px solid var(--color-theme-primary);
	border-radius: 3px;
	font-size: 0.9em;
	line-height: 1.6;
	margin: 0;
	padding: 0.75rem 1rem 0.5rem;
}

.in-page-nav a,
.in-page-nav a:visited {
	background: none;
	color: var(--color-theme-primary-dark);
	display: inline-block;
	font-weight: 600;
	padding: 0 0.5em;
}

.in-page-nav a:hover {
	-webkit-text-decoration: underline;
	text-decoration: underline;
}

/*--------------------------------------------------------------
## Background colors
--------------------------------------------------------------*/

.bg-white {
	background: #fff;
	display: flex;
}

.bg-white + .bg-white:not(.wp-block-column) {
	padding-top: 2rem;
}

.bg-white.wp-block-column {
	font-size: var(--font-size-small);
	margin-top: calc(var(--global-spacing) / 2);
	margin-right: calc(var(--global-spacing) / 4);
	padding-right: calc(var(--global-spacing) / 2);
	padding-left: calc(var(--global-spacing) / 2);
}

.bg-white.wp-block-column h2,
.bg-white.wp-block-column h3,
.bg-white.wp-block-column h4 {
	margin: 0 0 var(--global-spacing);
}

/* Gray background */

.bg-gray {
	background: var(--color-theme-secondary);
	margin-top: 0;
	padding-top: var(--global-spacing);
}

.bg-gray,
.bg-gray a {
	color: #fff;
}

/* adjust margin folling a full-width image */

.wp-block-cover + .bg-gray,
.wp-block-cover + .bg-white {
	margin-top: 0;
	margin-bottom: 0;
}

/*--------------------------------------------------------------
## Animations
--------------------------------------------------------------*/

@keyframes fadeIn {

	0% {
		opacity: 0;
	}

	25% {
		opacity: 0;
	}

	67% {
		opacity: 0.75;
	}

	100% {
		opacity: 1;
	}
}

/*--------------------------------------------------------------
# Table of Contents plugin styles
--------------------------------------------------------------*/

.wp-block-happyprime-table-of-contents {
	border: none;
	border-bottom: 4px solid var(--color-theme-primary);
	border-radius: 0 0 5px 5px;
	margin: 0;
}

.wp-block-happyprime-table-of-contents.sticky {
		top: 0;
		z-index: 4;
	}

:is(.wp-block-happyprime-table-of-contents .toc-bar) h2 {
			font-size: 1em;
		}

:is(.wp-block-happyprime-table-of-contents .toc-bar) button {
			background: none;
			border-color: var(--color-theme-primary);
			color: var(--color-theme-primary);
			margin-left: auto;
		}

.wp-block-happyprime-table-of-contents ul {
		margin-top: 1rem;
	}

.wp-block-happyprime-table-of-contents.is-style-piped ul li:first-child {
		padding-left: 0;
	}

/* --- Offset for scrolling to in-page headers --- */

:target::before {
	content: "";
	display: block;
	height: 150px;
	margin-top: -150px;
}

/*--------------------------------------------------------------
## R Tables and tabs
--------------------------------------------------------------*/

.nav-tabs {
	display: flex;
	gap: 1rem;
}

.nav-tabs li {
	float: none;
	margin: 0;
	padding: 0;
}

.nav-tabs li a {
	background: none;
	border: 1px solid;
	border-bottom: none;
}

.tab-content {
	background-color: #fff;
	display: flex;
	overflow-y: scroll;
	padding: 2rem;
}

.tab-content .table {
	margin: 0 !important;
}

.tab-content thead {
	background-color: #eee;
}

.tab-content table {
	margin: 0;
	width: 100%;
}

.tab-content table td,
.tab-content table th {
	border: 1px solid rgba(0, 0, 0, 0.15);
	padding: 0.5rem;
}

/* Primary button */

.wp-block-button__link {
	background: #37474f;
	border-radius: 3px;
	transition: all 0.3s ease;
}

.wp-block-button__link:hover {
	background: #0b9ae3;
}

/* Outlined button */

.is-style-outline .wp-block-button__link {
	border-color: rgba(0, 0, 0, 0.5);
}

.is-style-outline .wp-block-button__link:hover {
	background: transparent;
	color: #b51c2e;
	border-color: #b51c2e;
}

/* Arrow style button */

.is-style-arrow-link {
	color: #b51c2e;
	margin-top: 1.5em;
}

.is-style-arrow-link a,
.is-style-arrow-link .editor-rich-text__editable {
	background: none;
	color: #b51c2e;
	padding: 0;
	position: relative;
	text-align: left;
	-webkit-text-decoration: none;
	text-decoration: none;
	transition: color 0.3s ease;
}

.is-style-arrow-link a::after,
.is-style-arrow-link .editor-rich-text__editable::after {
	box-sizing: content-box;
	content: url(./images/icon-arrow-red.svg);
	display: inline-block;
	padding: 0.05em 0 0 0.5em;
	position: absolute;
	width: 0.8em;
	transition: padding 0.3s ease;
}

.is-style-arrow-link a:hover,
.is-style-arrow-link .editor-rich-text__editable:hover {
	background: transparent;
	color: #0b9ae3;
}

.is-style-arrow-link a:hover::after,
.is-style-arrow-link .editor-rich-text__editable:hover::after {
	padding-left: 1em;
}

/**
 * Custom styles for the front-page.php template.
 */

.home .site {
	border: none;
}

.home .entry-header {
	display: none;
}

.home .entry-content {
	margin: 0;
}

.home .site-header {
	background: transparent;
}

.home .site-title a {
	color: #fff;
	transition: color 0.3s ease;
}

.home .site-title.color--dark a {
	color: var(--color-theme-secondary);
	transition: color 0.3s ease;
}

/* navigation is lower on the homepage */

.home .main-navigation {
	margin-top: calc(50vh + 90px);
	padding-top: 0;
}

@media screen and (max-width: 60em) {

	.home .main-navigation {
		margin-top: 0;
	}
}

.home .wp-block-columns.hp-meetings {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.home .wp-block-column,
.wp-block-column:not(:first-child) {
	margin-top: 0.25em;
}

/*--------------------------------------------------------------
# Highlight Post styles
--------------------------------------------------------------*/

.single.highlight .entry {
		margin-bottom: 0;
	}

.single.highlight .site-header {
		position: fixed;
	}

.single.highlight .main-toolbar {
		display: none;
	}

.single.highlight .main-navigation {
		margin-top: calc(4rem + 90px);
	}

.single.highlight .entry-header {
		align-items: center;
		display: flex;
		flex-direction: column;
		min-height: 100vh;
		justify-content: center;
		margin: 0;
		position: relative;
	}

.single.highlight h1.entry-title {
		background-color: rgba(0, 0, 0, 0.75);
		color: var(--color-theme-white);
		font-size: 5rem;
		padding: 0.5em;
		position: relative;
		z-index: 3;
	}

@media screen and (max-width: 60em) {

.single.highlight h1.entry-title {
			font-size: 2.75rem;
	}
		}

:is(.single.highlight h1.entry-title)::after {
			background: linear-gradient(90deg, #29e7cf 0, var(--color-theme-primary));
			content: "";
			height: 1rem;
			position: absolute;
			bottom: -1rem;
			left: 0;
			width: 100%;
		}

.single.highlight .entry-meta {
		background-color: var(--color-theme-gray-dark);
		color: var(--color-theme-white);
		padding: 0.25rem;
		position: absolute;
		bottom: 0;
	}

.single.highlight .updated {
		display: none;
	}

.single.highlight .post-thumbnail {
		float: none;
		height: calc(100vh - 4px);
		margin: 0;
		position: fixed;
		left: 0;
		top: 4px;
		width: 100vw;
	}

:is(.single.highlight .post-thumbnail) img {
			height: 100%;
			object-fit: cover;
			width: 100%;
		}

.single.highlight .entry-content {
		background-color: var(--color-theme-white);
		font-size: 1.6rem;
		margin: 0;
		padding: 0;
		position: relative;
	}

@media screen and (max-width: 60em) {

.single.highlight .entry-content {
			font-size: 1.5rem;
	}
		}

:is(.single.highlight .entry-content)  > * h2,:is(.single.highlight .entry-content)  > * h3,:is(.single.highlight .entry-content)  > * h4 {
			margin-top: 0;
		}

:is(.single.highlight .entry-content)  > .wp-block-group {
			padding-top: var(--global-spacing);
			padding-bottom: var(--global-spacing);
		}

:is(:is(.single.highlight .entry-content) > .wp-block-group) p,:is(:is(.single.highlight .entry-content) > .wp-block-group) ul,:is(:is(.single.highlight .entry-content) > .wp-block-group) ol,:is(:is(.single.highlight .entry-content) > .wp-block-group) h2,:is(:is(.single.highlight .entry-content) > .wp-block-group) h3 {
				margin: 1em auto;
				max-width: 650px;
			}

:is(:is(.single.highlight .entry-content) > .wp-block-group) .has-larger-font-size {
				max-width: 900px;
			}

:is(:is(.single.highlight .entry-content) > .wp-block-group) .wp-block-image {
				margin-top: var(--global-spacing);
				margin-bottom: var(--global-spacing);
			}

.single.highlight .wp-block-cover.has-parallax {
		min-height: 100vh;
		justify-content: flex-start;
	}

:is(.single.highlight .wp-block-cover.has-parallax) .wp-block-cover__inner-container {
			background: rgba(0, 0, 0, 0.75);
			margin: 5rem auto;
			padding: 4rem;
			max-width: max-content;
		}

.content-right:is(.single.highlight .wp-block-cover.has-parallax) .wp-block-cover__inner-container {
				margin-right: var(--global-spacing);
				max-width: 600px;
			}

.content-left:is(.single.highlight .wp-block-cover.has-parallax) .wp-block-cover__inner-container {
				margin-left: var(--global-spacing);
				max-width: 600px;
			}

:is(.single.highlight .wp-block-cover.has-parallax) .wp-block-columns {
			margin: 0;
		}

.single.highlight .wp-block-columns {
		gap: var(--global-spacing);
		margin: 6rem auto;
		max-width: 1000px;
	}

.sticky:is(.single.highlight .wp-block-columns) .wp-block-column > *:first-child {
				margin-top: 0;
			}

.sticky:is(.single.highlight .wp-block-columns) .wp-block-image {
				position: sticky;
				top: 3rem;
			}

:is(.single.highlight .wp-block-columns) .wp-block-column,:is(.single.highlight .wp-block-columns) .wp-block-column:not(:first-child) {
			margin: 0;
		}

:is(.single.highlight .wp-block-columns)  + .wp-block-columns {
			border-top: 1px solid var(--color-theme-primary);
			padding-top: 6rem;
		}

.single.highlight .wp-block-button .wp-block-button__link {
		background-color: var(--color-theme-primary-dark);
		font-size: 1.3rem;
	}

:is(.single.highlight .wp-block-button .wp-block-button__link):hover {
			background-color: var(--color-theme-primary);
		}

.single.highlight .entry-footer {
		display: none;
	}

.single.highlight .site-footer {
		position: relative;
	}

/* --- Font sizes --- */

.single.highlight .has-large-font-size {
		font-size: 1.75rem;
	}

.single.highlight .has-larger-font-size {
		font-size: 2.25rem;
	}

@media screen and (max-width: 60em) {

		.single.highlight .has-large-font-size {
			font-size: 1.5rem;
		}

		.single.highlight .has-larger-font-size {
			font-size: 1.75rem;
		}
	}
