/* undoing image resize code within Scrawl theme | 8559802-zd tdl */
@media screen and (min-width: 68em) {
    .wp-block-image img.size-big {
        margin-left: 0px;
        width: 332px !important;
    }

.full-width .entry-header, .full-width .entry-content {
    max-width: 800px;
}
	/* === Force hamburger icon to be solid black in all states ===
   Works for span-based bars, SVG icons, hover/focus/active and open state.
   Paste this as a single block and remove older hamburger CSS first.
*/

/* Ensure the toggle wrapper has no background override */
button.menu-toggle,
.menu-toggle {
  background: none !important;
  border: none !important;
  opacity: 1 !important;
}

/* Primary target: bars created with spans (::before/::after) */
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after,
.menu-toggle .icon span,
.menu-toggle .icon span::before,
.menu-toggle .icon span::after {
  background-color: #000 !important;     /* solid black */
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  opacity: 1 !important;
}

/* Cover hover/focus/active states so it never changes colour */
.menu-toggle:hover span,
.menu-toggle:hover span::before,
.menu-toggle:hover span::after,
.menu-toggle:focus span,
.menu-toggle:focus span::before,
.menu-toggle:focus span::after,
.menu-toggle:active span,
.menu-toggle:active span::before,
.menu-toggle:active span::after {
  background-color: #000 !important;
  opacity: 1 !important;
}

/* Cover the "open" / active menu state (class or aria attribute varies by theme) */
.menu-toggle.active span,
.menu-toggle.open span,
.menu-toggle[aria-expanded="true"] span {
  background-color: #000 !important;
}

/* If the theme uses SVG icon(s), force fill/stroke */
.menu-toggle svg,
.menu-toggle svg * ,
.menu-toggle svg path,
.menu-toggle svg rect,
.menu-toggle svg line,
.menu-toggle svg polygon {
  fill: #000 !important;
  stroke: #000 !important;
  opacity: 1 !important;
  -webkit-filter: none !important;
  filter: none !important;
}

/* If the theme uses a background-image for the icon, disable it */
.menu-toggle,
.menu-toggle::before,
.menu-toggle::after {
  background-image: none !important;
}
