/*!
Theme Name: Basics Theme 2025
Theme URI: https://www.pooka.co/
Author: Pooka & Co Ltd
Author URI: https://www.pooka.co/
Description: A hybrid WordPress Start Theme based on Underscores and using theme.json
Version: 2025.09.V1
Tested up to: 6.8.2
Requires PHP: 8.2
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: pookatheme
Tags: featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.

PookaTheme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize / Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
# Layout
	- Content Horizontal Spacing
  - Content Vertical Spacing
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Media
	- Captions
# Plugins
# Accessibility Focus
# Utilities
	- Accessibility
# Footer
# Blocks
# Responsive
# Editor styles

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize / Box sizing
--------------------------------------------- */

/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */

:root {
  --base-font-size: 16px; /* 1rem = 16px */
  font-size: var(--base-font-size);
}

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

html {
  font-family:
    system-ui,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif,
    'Apple Color Emoji',
    'Segoe UI Emoji';
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  font-size: clamp(1rem, 0.757rem + 0.8639vw, 1.5rem);
}

body {
  margin: 0;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp,
pre {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Consolas,
    'Liberation Mono',
    Menlo,
    monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: currentcolor;
}

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

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

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
main.wp-block-group {
  margin-bottom: 0;
}
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
  color: var(--wp--preset--color--dark);
  font-family: "Open Sans", sans-serif;
  font-size: var(--wp--preset--font-size--medium);
}
.small {
  font-size: var(--wp--preset--font-size--small);
}

/* Note: change corresponding line heights for Heading sizes in theme.json */
.has-large-font-size {
  line-height: 1.4;
}
.has-x-large-font-size {
  line-height: 1.3;
}
.has-xx-large-font-size {
  line-height: 1.2;
}

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

address {
  font-style: initial;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  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;
}

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

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

/* Elements
--------------------------------------------- */
#pookatheme-header ul,
#pookatheme-footer ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
ul, ol {
  padding-left: 20px;
}
ul li::marker {
  color: var(--wp--preset--color--brand-green);
}
.has-dark-background-color ul li::marker {
  color: var(--wp--preset--color--white);
}
li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5rem;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
  max-width: 100%;
}

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

table {
  width: 100%;
}

/* Links
--------------------------------------------- */
a:not(.wp-element-button),
a:not(.wp-element-button):visited {
  color: var(--wp--preset--color--dark);
  transition: all .3s ease-in-out;
}
.has-dark-background-color a:not(.wp-element-button),
.has-dark-background-color a:not(.wp-element-button):visited {
  color: var(--wp--preset--color--white);
  border-bottom-color: var(--wp--preset--color--white);
}
a:not(.wp-element-button):hover,
a:not(.wp-element-button):focus,
a:not(.wp-element-button):active {
  color: var(--wp--preset--color--brand-green);
  border-bottom: 1px solid var(--wp--preset--color--brand-green);
  transition: all .3s ease-in-out;
}
.has-dark-background-color a:not(.wp-element-button):hover,
.has-dark-background-color a:not(.wp-element-button):focus,
.has-dark-background-color a:not(.wp-element-button):active {
  color: #d4eacd;
  border-bottom: 1px solid #d4eacd;
}

a.wp-block-button__link:hover,
a.wp-block-button__link:active {
  outline: 0;
  background-color: var(--wp--preset--color--dark-green);
  transition: all .3s ease-in-out;
}
a.wp-block-button__link.has-brand-red-background-color:hover,
a.wp-block-button__link.has-brand-red-background-color:active {
  background-color: var(--wp--preset--color--dark-red) !important;;
}
a.wp-block-button__link.has-brand-green-color.has-white-background-color:hover,
a.wp-block-button__link.has-brand-green-color.has-white-background-color:active {
  background-color: #e8f0e8 !important;
}
a.wp-block-button__link.has-brand-red-color.has-white-background-color:hover,
a.wp-block-button__link.has-brand-red-color.has-white-background-color:active {
  background-color: #f2e8e8 !important;
}

/* Forms
--------------------------------------------- */
button:not(.components-button):not([role="presentation"]),
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: none;
  background-color: var(--wp--preset--color--brand-green) !important;
  color: var(--wp--preset--color--white) !important;
  border-radius: 0 !important;
  font-size: var(--wp--preset--font-size--btn-medium);
  font-weight: 600 !important;
  line-height: 1;
  padding-top: 0.6em;
  padding-right: 1em;
  padding-bottom: 0.6em;
  padding-left: 1em;
  text-transform: uppercase !important;
}

input[type="submit"].gform_button {
  border: none;
  background-color: var(--wp--preset--color--brand-green) !important;
  color: var(--wp--preset--color--white) !important;
  border-radius: 0 !important;
  font-size: clamp(0.9375rem, 0.9071rem + 0.108vw, 1rem) !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  padding-top: 0.6em;
  padding-right: 1em;
  padding-bottom: 0.6em;
  padding-left: 1em;
  text-transform: uppercase !important;
  transition: color .3s ease-in-out;
}
input[type="submit"].gform_button:hover,
input[type="submit"].gform_button:active {
  background-color: var(--wp--preset--color--dark-green) !important;
  transition: color .3s ease-in-out;
}
button:not(.components-button):not([role="presentation"]):hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  /* TODO Hover effect */
}

button:not(.components-button):not([role="presentation"]):active,
button:not(.components-button):not([role="presentation"]):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 {
  /* TODO Focus/active effect */
}

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: var(--wp--preset--color--dark);
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/

/* Content Horizontal Spacing
--------------------------------------------- */

.is-content-justification-space-between {
	justify-content: space-between
}

#pookatheme .wp-block-group.has-background.is-layout-constrained:not([class*="wp-container-core-group-is-layout-"]):not(.alignwide,.alignfull) > *.alignfull {
  margin-left: calc( -1 * var(--wp--style--root--padding-left) );
  margin-right: calc( -1 * var(--wp--style--root--padding-right) );
}
.wp-block-group:not([class*="wp-container-core-group-is-layout-"]):not(.has-background) {
  padding-left: 0;
  padding-right: 0;
}


/* Content Vertical spacing
--------------------------------------------- */
article.has-global-padding > div:first-child,
article.has-global-padding > section:first-child,
article.has-global-padding > figure:first-child {
  margin-bottom: var(--wp--style--block-gap);
}
article.has-global-padding > *:not(.alignfull) + section,
article.has-global-padding > *:not(.alignfull) + div,
article.has-global-padding > *:not(.alignfull) + figure {
  margin-top: var(--wp--style--block-gap);
  margin-bottom: var(--wp--style--block-gap);
}
article.has-global-padding > *.alignfull + *:not(.alignfull) {
  margin-top: var(--wp--style--block-gap);
}
article.has-global-padding > *:last-child:not(.alignfull) {
  margin-bottom: var(--wp--style--block-gap);
}
article.has-global-padding:last-child > *:last-child.alignfull,
article.has-global-padding > :not(.alignfull) + div.alignfull {
  margin-bottom: 0;
}
article.has-global-padding:last-child > *:last-child.alignfull:after {
  clear: both;
  display: table;
  content: "";
}

.wp-block-group.has-background > *:first-child:not(.alignfull) {
  padding-top: var(--wp--style--block-gap);
}
.wp-block-group.has-background > *:last-child:not(.alignfull) {
  padding-bottom: var(--wp--style--block-gap);
}
.wp-block-group.has-background
  .wp-block-group.has-background
  > *.alignfull:last-child {
  padding-bottom: 0;
}
.wp-block-group:last-child > *:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
.pookatheme__brand-red-line {
  height: 5px;
  background-color: var(--wp--preset--color--brand-red);
  margin: 0;
  border: 0;
}

/* Header
--------------------------------------------- */
#pookatheme-header {
  padding: 0;
  z-index: 99998;
}
#pookatheme-header ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}
#pookatheme-header .is-layout-constrained {
  margin-block-start: 0;
  margin-block-end: 0;
}
#pookatheme-header .alignwide {
  position: relative;
}
.pookatheme-header__logo-link {
  background-color: hotpink;
}
#pookatheme-header .pookatheme-header__logo-link {
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: var(--wp--preset--color--white);
  padding-top: clamp(0.4375rem, 0.1945rem + 0.8639vw, 0.9375rem);
  padding-right: clamp(0.4375rem, 0.1945rem + 0.8639vw, 0.9375rem);
  padding-bottom: clamp(0.125rem, 0.0339rem + 0.324vw, 0.3125rem);
  padding-left: clamp(0.4375rem, 0.1945rem + 0.8639vw, 0.9375rem);
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  z-index: 99999;
  border: none;
  box-shadow: var(--wp--preset--shadow--light);
}
.pookatheme-header__logo a,
.pookatheme-header__logo a:hover {
  border-bottom-color: transparent !important;
}
#pookatheme-header .site-branding a img {
  max-width: clamp(3.125rem, 1.6064rem + 5.3996vw, 6.25rem);
  transition: all 0.3s ease-in-out;
}
#pookatheme-header .site-branding a:hover img {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}

/* Navigation
--------------------------------------------- */
.main-navigation {
  display: block;
}
.main-navigation nav {
  display: none;
}
.main-navigation .nav-menu ul {
  display: flex;
}
.main-navigation .nav-menu li {
  position: relative;
}
#site-navigation {
  margin-block-start: 0;
}
.main-navigation .nav-menu li:not(:last-child) {
  margin-right: var(--wp--preset--spacing--40);
}
.main-navigation .nav-menu li a {
  color: var(--wp--preset--color--white);
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 0.5rem solid transparent;
  transition: all 0.3s ease-in-out;
}
.main-navigation .nav-menu ul li.current-menu-item a,
.main-navigation .nav-menu ul li a:hover {
  border-bottom-color: #245814;
  transition: all 0.3s ease-in-out;
}

/* Primary menu*/
#primary-menu-header-container.main-navigation .nav-menu ul li a {
  font-size: var(--wp--preset--font-size--small);
  font-weight: 600;
  padding-top: 0.75rem;
  padding-bottom: 0.25rem;
  border-bottom-width: 0.5rem;
}
/* Secondary menu*/
#secondary-menu-header-container.main-navigation .nav-menu ul li a {
  font-size: var(--wp--preset--font-size--xxx-small);
  padding-top: 0.25rem;
  border-bottom-width: 0.25rem;
}

@media (max-width: 899px) {
  /** Menu Order **/
  .main-navigation .nav-menu {
    position: static !important;
    text-align: center;
  }
  .main-navigation .nav-menu ul {
    display: inline-block;
    text-align: center;
  }
  #site-navigation {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  #primary-menu-header-container.main-navigation {
    order: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  #secondary-menu-header-container.main-navigation {
    order: 2;
    margin-bottom: var(--wp--preset--spacing--30);
  }
  #secondary-menu-header-container.has-dark-green-background-color {
    background-color: var(--wp--preset--color--brand-green) !important;
  }
  .main-navigation .nav-menu ul li a {
    padding-top: 0.25rem !important;
    padding-bottom: 0.15rem !important;
    margin-bottom: 0.5rem !important;
    border-bottom-width: 1px !important;
  }
  #secondary-menu-header-container.main-navigation .nav-menu ul li a {
    font-size: var(--wp--preset--font-size--small);
  }
  .main-navigation .nav-menu ul li a:hover,
  .main-navigation .nav-menu ul li.current-menu-item a  {
    padding-bottom: 0;
    border-bottom: 1px solid var(--wp--preset--color--white);
  }
  .main-navigation.toggled .nav-menu ul li {
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .toggled #pookatheme-header {
    min-height: 100vh;
    margin-bottom: 0;
  }
  .main-navigation,
  .toggled #pookatheme-main,
  .toggled #pookatheme-footer {
    display: none;
  }
  .toggled #site-navigation {
    margin-left: 0;
    padding-top: var(--wp--preset--spacing--90);
    width: 100%;
  }
  .toggled .main-navigation {
    display: flex;
    flex-direction: column;
  }
  #pookatheme-header__content button.menu-toggle:hover span {
    transform: scale(1.15);
    box-shadow: none;
  }
  .menu-toggle {
    margin-right: 0 !important;
    margin-block-start: 0;
  }
  .menu-toggle {
    display: block;
    cursor: pointer;
    background-color: transparent !important;
    padding: var(--wp--preset--spacing--50) var(--wp--preset--spacing--10) !important;
  }
  .main-navigation.toggled nav {
    display: block;
  }
  .hamburger {
    -moz-transition: background 0.2s ease 0.4s;
    -o-transition: background 0.2s ease 0.4s;
    -webkit-transition: background 0.2s ease;
    -webkit-transition-delay: 0.4s;
    transition: transform 0.4s;
    display: block;
    width: clamp(1.5rem, 0.75rem + 2vw, 2.25rem);
    height: 5px;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    position: relative;
  }
  .hamburger:before,
  .hamburger:after {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background: #aaa;
    position: absolute;
    left: 0;
    -moz-transition: -moz-transform 0.2s ease 0s, width 0.2s ease 0.2s, top 0.2s ease 0.4s;
    -o-transition: -o-transform 0.2s ease 0s, width 0.2s ease 0.2s, top 0.2s ease 0.4s;
    -webkit-transition: -webkit-transform 0.2s ease, width 0.2s ease, top 0.2s ease;
    -webkit-transition-delay: 0s, 0.2s, 0.4s;
    transition: transform 0.2s ease 0s, width 0.2s ease 0.2s, top 0.2s ease 0.4s;
    -moz-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
  }
  .hamburger:before {
    top: -0.75rem;
  }
  .hamburger:after {
    top: 0.75rem;
  }
  .menu-toggle .hamburger:before,
  .menu-toggle .hamburger:after,
  .menu-toggle .hamburger {
    background: var(--wp--preset--color--white);
  }
}
/* Small menu */
@media (min-width: 900px) {
  /* Toggle Hamburger Menu off */
  .menu-toggle {
    display: none;
  }
  .main-navigation nav {
    display: flex;
    justify-content: right;
  }
  .menu-toggle,
  .main-navigation.toggled nav {
    display: none;
  }

}


/* Social Networks
--------------------------------------------- */
.pookatheme__social-network-icons {
  display: flex;
  justify-content: start;
  margin-top: 1.5em;
  padding-bottom: 3em;
}
.pookatheme__social-network-icons a {
  display: inline-flex;
  align-items: center;
  border-bottom: none;
  transition: all 0.3s ease-in-out !important;
}
.pookatheme__social-network-icons a:not(:last-child) {
  margin-right: 1.2rem;
}
.pookatheme__social-network-icons a svg {
  height: var(--wp--preset--font-size--x-large);
  width: var(--wp--preset--font-size--x-large);
}
.pookatheme__social-network-icons a:focus,
.pookatheme__social-network-icons a:hover {
  transform: scale(1.15);
  transition: all 0.3s ease-in-out !important;
  border-bottom: none !important;
}

/*--------------------------------------------------------------
# SVG
--------------------------------------------------------------*/
svg[data-scale="1"] {
  transform: scale(1) translate(0%, 0%);
}
svg[data-scale="0.9"] {
  transform: scale(0.9) translate(0%, 5%);
}
svg[data-scale="0.8"] {
  transform: scale(0.8) translate(0%, 10%);
}
svg[data-scale="0.7"] {
  transform: scale(0.7) translate(0%, 20%);
}
svg[data-scale="0.6"] {
  transform: scale(0.6) translate(0%, 30%);
}
svg[data-scale="0.5"] {
  transform: scale(0.5) translate(0%, 40%);
}

/* Posts and pages
--------------------------------------------- */
.updated:not(.published) {
  display: none;
}

.wp-block-post {
  position: relative;
}
.wp-block-post a.pookatheme-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.wp-block-post a:not(.pookatheme-link-overlay) {
  z-index: 2;
  position: relative;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Accessibility Focus (also see navigation.js)
--------------------------------------------------------------*/
body:not(.user-is-tabbing) *:focus {
  outline: none;
}

.user-is-tabbing *:focus-visible {
  outline: 2px dashed blue;
  outline-offset: 3px;
  position: relative;
}

.user-is-tabbing *:focus-visible:after {
  content: "";
  outline: 2px dashed white;
  outline-offset: 5px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.user-is-tabbing .skip-link:focus-visible {
  position: absolute;
  outline-offset: 0;
}


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

/* Accessibility
--------------------------------------------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Display
--------------------------------------------- */
.pk-display-none {
  display: none !important;
}
.pk-display-block {
  display: block !important;
}

/* Margins
--------------------------------------------- */
.pk-mt-0,
.pk-my-0 {
  margin-top: 0 !important;
}
.pk-mb-0,
.pk-my-0 {
  margin-bottom: 0 !important;
}

/* Typography
--------------------------------------------- */
.pk-text-start {
  text-align: left !important;
}
.pk-text-center {
  text-align: center !important;
}
.pk-text-end {
  text-align: right !important;
}

/* Footer
--------------------------------------------- */
/* Push Footer to bottom of screen on short pages */
#pookatheme {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
#pookatheme-footer {
  margin-top: auto;
}
#pookatheme-footer .is-layout-constrained {
  margin-block-start: 0;
}
#pookatheme-footer__logo {
  margin-bottom: var(--wp--preset--spacing--70);
}
.pookatheme-footer__logo-link {
  display: inline-block;
  border-bottom: none !important;
  height: 100%;
}
.pookatheme-footer__logo-link:hover,
.pookatheme-footer__logo-link:active {
  border-bottom: none !important;
}
#pookatheme-footer a .pookatheme-footer__logo {
  display: inline-block;
  background-color: var(--wp--preset--color--white);
  padding-top: clamp(0.4375rem, 0.1945rem + 0.8639vw, 0.9375rem);
  padding-right: clamp(0.4375rem, 0.1945rem + 0.8639vw, 0.9375rem);
  padding-bottom: clamp(0.125rem, 0.0339rem + 0.324vw, 0.3125rem);
  padding-left: clamp(0.4375rem, 0.1945rem + 0.8639vw, 0.9375rem);
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;

}
#pookatheme-footer a .pookatheme-footer__logo img {
  max-width: clamp(3.125rem, 1.6064rem + 5.3996vw, 6.25rem);
  transition: all 0.3s ease-in-out;
}
#pookatheme-footer a:hover .pookatheme-footer__logo img {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
  border-bottom-color: transparent !important;
}
#pookatheme-footer__content {
  padding-bottom: var(--wp--preset--spacing--90);
}
#pookatheme-footer__body {
  display: flex;
  flex-wrap: nowrap !important;
  justify-content: space-between;
}
#pookatheme-footer__menu {
  display: flex;
  flex-wrap: nowrap !important;
  justify-content: right;
  gap: var(--wp--preset--spacing--30) var(--wp--preset--spacing--90);
  text-align: right;
}
@media (max-width: 950px) {
  #pookatheme-footer__menu {
    flex-direction: column;
  }
}
@media (max-width: 650px) {
  #pookatheme-footer__body {
    flex-direction: column;
  }
  #pookatheme-footer__menu {
    justify-content: left;
    text-align: left;
  }
}
#pookatheme-footer__menu .wp-block-columns nav  {
  text-align: right;
}
#pookatheme-footer__menu nav ul {
  margin-top: 0;
}
#pookatheme-footer__menu nav ul li a {
  font-size: var(--wp--preset--font-size--x-small) !important;
  color: var(--wp--preset--color--white);
  border-bottom-color: transparent;
  transition: all .3s ease-in-out;
  font-weight: 600;
  line-height: 2.5;
}
#pookatheme-footer__menu nav ul li a:hover,
#pookatheme-footer__menu nav ul li a:active {
  border-bottom-color: var(--wp--preset--color--white);
  transition: all .3s ease-in-out;
}

#pookatheme-footer__legal {
  padding-top: var(--wp--preset--spacing--10);
  padding-bottom: var(--wp--preset--spacing--10);
}
.pookatheme-footer__contact-details__address {
  line-height: 2.5;
  padding: var(--wp--preset--spacing--10) 0;
}
.pookatheme-footer__contact-details__phone {
  padding-top: var(--wp--preset--spacing--40);
  padding-bottom: var(--wp--preset--spacing--10);
}
.pookatheme-footer__contact-details__email {
  padding-top: var(--wp--preset--spacing--10);
  padding-bottom: var(--wp--preset--spacing--60);
}
.pookatheme-footer__contact-details__phone a,
.pookatheme-footer__contact-details__email a {
  border-bottom: transparent;
  transition: all .3s ease-in-out;
}
.pookatheme-footer__contact-details__email a:hover,
.pookatheme-footer__contact-details__email a:active,
.pookatheme-footer__contact-details__phone a:hover,
.pookatheme-footer__contact-details__phone a:active {
  color: var(--wp--preset--color--white) !important;
  border-bottom-color: var(--wp--preset--color--white) !important;
  transition: all .3s ease-in-out;
}
.pookatheme-footer__organisation_info p {
  font-size: var(--wp--preset--font-size--x-small) !important;
}
/*--------------------------------------------------------------
# Blocks
--------------------------------------------------------------*/

/* Image & Gallery
--------------------------------------------- */
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption,
figure.wp-block-image {
  position: relative;
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  background: unset;
  box-sizing: unset;
  color: inherit;
  font-size: var(--wp--preset--font-size--xxx-small);
  overflow: unset;
  padding: 0.2em var(--wp--preset--spacing--30);
  width: fit-content;
  text-shadow: unset;
  will-change: unset;
  left: unset;
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption,
.wp-block-gallery > figcaption,
.wp-block-image > figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:after,
.wp-block-gallery > figcaption:after,
.wp-block-image > figcaption:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--wp--preset--color--white);
  opacity: 0.85;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
figure.wp-block-gallery {
  position: relative;
}
figure.wp-block-gallery > figcaption.blocks-gallery-caption.wp-element-caption {
  position: relative;
  margin-top: calc( -1 * var(--wp--preset--spacing--20));
  padding-top: 0.2em;
}
.wp-block-gallery > figcaption.blocks-gallery-caption.wp-element-caption:after {
  background-color: var(--wp--preset--color--light-grey);
  opacity: 0.8;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

/* Small devices (landscape phones, 576px and up)  -sm */
@media (min-width: 576px) {
  .pk-text-sm-start {
    text-align: left !important;
  }
  .pk-text-sm-center {
    text-align: center !important;
  }
  .pk-text-sm-end {
    text-align: right !important;
  }
}
@media (max-width: 781.95px) {
  ul.wp-block-post-template-is-layout-grid.columns-3.alignwide {
    grid-template-columns: none !important;
  }
}

/* Medium devices (tablets, 782px and up)  -md */
@media (min-width: 782px) {
  .pk-text-md-start {
    text-align: left !important;
  }
  .pk-text-md-center {
    text-align: center !important;
  }
  .pk-text-md-end {
    text-align: right !important;
  }
}

/* Large devices (desktops, 992px and up)  -lg */
@media (min-width: 992px) {
  .pk-text-lg-start {
    text-align: left !important;
  }
  .pk-text-lg-center {
    text-align: center !important;
  }
  .pk-text-lg-end {
    text-align: right !important;
  }
}

/* Extra large devices (large desktops, 1200px and up)  -xl */
@media (min-width: 1200px) {
  .pk-display-xl-block {
    display: block !important;
  }
  .pk-display-xl-none {
    display: none !important;
  }

  .pk-text-xl-start {
    text-align: left !important;
  }
  .pk-text-xl-center {
    text-align: center !important;
  }
  .pk-text-xl-end {
    text-align: right !important;
  }

  /* Toggle Hamburger Menu off */
  .menu-toggle {
    display: none;
  }
  .main-navigation nav {
    display: flex;
  }
}


/*--------------------------------------------------------------
# Editor Styles
--------------------------------------------------------------*/
h1.wp-block-post-title.block-editor-block-list__block.editor-post-title.editor-post-title__input {
	font-family: Arial, Helvetica, Verdana, Tahoma, sans-serif;
	font-size: 2rem;
	margin-bottom: 0;
}
h1.wp-block-post-title.block-editor-block-list__block.editor-post-title.editor-post-title__input:before {
	content: "Title: "
}
div.edit-post-visual-editor__post-title-wrapper {
	margin-top: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgb(224,224,224);
}

/*  ACF fields */
body.acf_content {
  font-size: clamp(1rem, 0.757rem + 0.8639vw, 1.5rem) !important;
}
/* Media queries for larger screens */
@media (min-width: 1400px) {
  body.acf_content {
    font-size: clamp(1.1rem, 0.833rem + 0.8639vw, 1.65rem) !important;
  }
}
@media (min-width: 1600px) {
  body.acf_content {
    font-size: clamp(1.2rem, 0.909rem + 0.8639vw, 1.8rem) !important;
  }
}
@media (min-width: 1800px) {
  body.acf_content {
    font-size: clamp(1.3rem, 0.985rem + 0.8639vw, 1.95rem) !important;
  }
}
@media (min-width: 2000px) {
  body.acf_content {
    font-size: clamp(1.4rem, 1.061rem + 0.8639vw, 2.1rem) !important;
  }
}