/*
Theme Name: Tuesday
Theme URI: Frameworks.no
Author: Frameworks
Author URI: https://frameworks.no
Description: roots based theme
Version: 2015.05.06
License: GNU General Public License v2 or later
License URI: N/A
Text Domain: tuesday
Tags: translation-ready, single-page, madness
*/



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

/* Use a Safari-specific condition to override snapping on iOS */
@supports (-webkit-overflow-scrolling: touch) {
	.snap-container { /* Safari */
		scroll-snap-type: none !important; /* disable snapping on iOS Safari */
	}
}

body {
	font-family: 'Parabolica', system-ui, sans-serif;
	font-weight: 400;
}

body,
button,
input,
select,
optgroup,
textarea {
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}


h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}


/*universal*/
.text-center {
	text-align: center;
}

.site_logo img { 
	height: 2.5rem;
	width: 7rem;
}

@media (min-width: 64em) {

.site_logo img {
		height: 3.8125rem;
		width: 12.05rem
}
	}

.site_logo.dot {
	display: block;
	font-size: 3.5rem;
	font-size: clamp(1.5rem, 4cqw, 3.5rem);
	line-height: 0.75;
	font-family: 'bomuldots', sans-serif;
	font-variation-settings: "wght" 130;
	font-weight: 130;
	transition: all 1s ease;
	text-decoration: none;
}

@media (max-width: 48em) {

.site_logo.dot {
		font-size: 1.5rem;
		letter-spacing: -0.05em
}
	}

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

.site_logo.dot {
		font-size: 2.5rem
}
	}

.site_logo.dot:hover{
	transition: all 1s ease;
	font-variation-settings: "wght" 50;
	font-weight: 50;
}


.dot-grid .dot span {
	transition-property: transform;
	transition-duration: 1s;
	transition-timing-function: ease;
	transform-origin: center;
	transform-box: fill-box;
}

.dot-grid.is-hovered .dot span {
	transform: scale(0.5);
}

/* Logo Wave Animation */
@keyframes fontWeightWave {
	
	0%, 90%, 100% { 
		font-weight: 130;
		font-variation-settings: "wght" 130;
	}
	93% { 
		font-weight: 200;
		font-variation-settings: "wght" 200;
	}
	96% { 
		font-weight: 50;
		font-variation-settings: "wght" 50;
	}
}

.site_logo span {
	animation: fontWeightWave 10s ease-in-out infinite;
	display: inline-block;
}

/* Staggered delays for wave effect */
.site_logo span:nth-child(1) { animation-delay: 0s; }
.site_logo span:nth-child(2) { animation-delay: 0.1s; }
.site_logo span:nth-child(3) { animation-delay: 0.2s; }
.site_logo span:nth-child(4) { animation-delay: 0.3s; }
.site_logo span:nth-child(5) { animation-delay: 0.4s; }
.site_logo span:nth-child(6) { animation-delay: 0.5s; }
.site_logo span:nth-child(7) { animation-delay: 0.6s; }
.site_logo span:nth-child(8) { animation-delay: 0.7s; }
.site_logo span:nth-child(9) { animation-delay: 0.8s; }
.site_logo span:nth-child(10) { animation-delay: 0.9s; }
.site_logo span:nth-child(11) { animation-delay: 1.0s; }
.site_logo span:nth-child(12) { animation-delay: 1.1s; }
.site_logo span:nth-child(13) { animation-delay: 1.2s; }
.site_logo span:nth-child(14) { animation-delay: 1.3s; }
.site_logo span:nth-child(15) { animation-delay: 1.4s; }
.site_logo span:nth-child(16) { animation-delay: 1.5s; }
.site_logo span:nth-child(17) { animation-delay: 1.6s; }
.site_logo span:nth-child(18) { animation-delay: 1.7s; }
.site_logo span:nth-child(19) { animation-delay: 1.8s; }
.site_logo span:nth-child(20) { animation-delay: 1.9s; }


.opening-hours p { 
	margin: 0;
	padding: 0;
	font-size: 1.125rem;
	line-height: 1.5rem;
}


@media (max-width: 24rem) {


.opening-hours p {
		display: none
};
	}


@media (max-width: 64em) {


.opening-hours p {
		line-height: 1.2;
		font-size: 16px
}
	}

.root-level-block {
	margin-bottom: var(--spacing-m);
	margin-bottom: 5rem;
}

@media (min-width: 64em) {

.root-level-block {
		margin-bottom: 10rem
}
	}

.root-level-block:first-child {
		margin-top: var(--spacing-m);
	}

/* Within the 3-6-3 grid, if the first element is a .root-level-block, use a smaller top margin */
.grid-3-6-3 > :first-child.root-level-block {
	margin-top: var(--spacing-s);
}

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

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 0.8em 1em;
}

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

@media screen and (min-width: 600px) {
	code,
	kbd,
	tt,
	var {
		font-size: 0.8125rem;
	}
}

p > code {
	padding: 2px;
	border-radius: 2px;
	background: #f3f4f5;
	font-size: inherit;
}

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

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

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* 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/ */
	box-sizing: inherit;
}

body {
	/* Fallback for when there is no custom background color defined. */
	font-style: normal;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5rem;
	-webkit-overflow-scrolling: touch
}

blockquote,
q {
	quotes: "" "";
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

hr {
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

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

ul {
	list-style: disc;
	margin-left: 2ex;
}

ol {
	list-style: decimal;
	margin-left: 2ex;
}

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

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
	vertical-align: bottom;
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

.wp-block-embed:not(.alignwide),
.size-full {
	max-width: 70rem;
	margin-left: auto;
	margin-right: auto;
}

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

@media (max-width: 50em) {
	.filter-section,
	table {
		margin: 0 auto 1.5em;
		width: 90%;
	}
}

.wp-block-table td,
.wp-block-table th {
	padding: 0.5em;
	border-right: 0;
	border-left: 0;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

td strong {
	padding: 0.5rem 0;
	display: block;
}

td + td {
	text-align: left;
}

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

.wp-block-button {
	padding: 0;
	margin: 0 auto;
	text-align: center;
	place-items: center;
	display: grid;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border-radius: 10rem;
	background-color: var(--light);
	color: rgba(0, 0, 0, 0.8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

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

input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	outline: 2px solid var(--dark);
}

input:focus {
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}

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(--text--pos);
}

select {
	border: 1px solid var(--neutral--10);
}

textarea {
	width: 100%;
}


/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: var(--text--pos);
	transition: background-color 0.3s cubic-bezier(0.83, 0, 0.17, 1);
}


a:focus {
	outline: thin dotted;
}

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

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	border-bottom: 1px solid var(--neutral--10);
	margin: 0 auto 60px;
	max-width: 580px;
	overflow: hidden;
	padding-bottom: 60px;
}

.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%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
	/* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: var(--neutral--10);
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	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;
}

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


.alignleft img,
.alignright img,
.alignleft figcaption,
.alignright figcaption {
	max-width: 50%;
	width: 50%;
}

.alignleft figcaption {
	clear: left;
}

.alignright figcaption {
	clear: right;
}

.alignleft img,
.alignleft figcaption {
	float: left;
	margin-right: 1.5em;
}

.alignright img,
.alignright figcaption {
	float: right;
	margin-left: 1.5em;
}

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


/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget-area {
	width: 25%;
}

.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

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

#page {
	margin: 0 auto;
}

.site-branding {
	text-align: center;
	margin: 60px 0;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.updated:not(.published) {
	display: none;
}

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

.page > p:not(class) {
	width: 100%;
	margin: var(--spacing-m) auto;
}

@media (min-width: 47em) {
	.page > p:not(class) {
		max-width: 40.5rem;
	}
}

.entry-meta {
	color: var(--neutral--90);
	font-size: 90%;
}

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



@media screen and (min-width: 608px) {
	.entry-header,
	.page-header,
	.entry-footer,
	.site-info,
	.posts-navigation,
	.post-navigation,
	.page-navigation,
	.comments-area,
	.not-found .page-content,
	.search .entry-summary {
		padding-left: 0;
		padding-right: 0;
	}
}

.hentry p, .hentry ul, .hentry ol {
		
		font-family: 'Parabolica', system-ui, sans-serif;
		font-style: normal;
		font-weight: 400;
		font-size: 1.375rem;
		line-height: 2.25rem;
		color: var(--neutral--90);
	}

@media (max-width: 47em) {

.hentry p, .hentry ul, .hentry ol {
			font-size: 1.25rem;
			line-height: 1.75rem;
			padding: 1rem 0
	}
		}


.hentry ul:not([class]),
	.hentry ol:not([class]) {
		margin-bottom: var(--spacing-s);
		list-style: none;
		margin-left: 0;
	}


.hentry ul:not([class]) li, .hentry ol:not([class]) li {
			position: relative;
			padding-left: 1.5rem;
			padding-bottom: 1rem;
			
			/* &:hover {
			&::before {
			animation: fontWeightPulse 1.2s cubic-bezier(0.075, 0.82, 0.165, 1);
			font-weight: 250;
			}
			} */
		}


.hentry ul:not([class]) li::before, .hentry ol:not([class]) li::before {
				font-family: 'bomuldots', sans-serif;
				font-weight: 100;
				transition: font-weight 0.7s cubic-bezier(0.075, 0.82, 0.165, 1);
				position: absolute;
				left: 0;
				top: 0;
			}


/* Specific styles for unordered lists */


.hentry ul:not([class]) li::before {
			content: "•";
		}


/* Specific styles for ordered lists */


.hentry ol:not([class]) {
		counter-reset: list-counter;
	}


.hentry ol:not([class]) li {
			counter-increment: list-counter;
		}


.hentry ol:not([class]) li::before {
				content: counter(list-counter);
			}

@keyframes fontWeightPulse {
	0% {
		font-variation-settings: "wght" 100;
		font-weight: 100;
	}
	60% {
		font-variation-settings: "wght" 250;
		font-weight: 250;
	}
	100% {
		font-variation-settings: "wght" 250;
		font-weight: 250;
	}
}



/*--------------------------------------------------------------
## 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 .wp-caption-text {
	margin: 0.8075em 0;
}

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

/**
block spacing
*/

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.3333333333%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.6666666667%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.2857142857%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.1111111111%;
}

.gallery-caption {
	display: block;
}

/* Base */
html {
	font-size: 16px;
}

@media (max-width: 47em) {
	.container.should-breathe {
		padding-left: 1rem; 
		padding-right: 1rem; 
	}
}

.container {
	max-width: calc(100vw - 40px);
	margin-left: auto;
	margin-right: auto;
	position: relative;
	width: 100%;
}

@media (min-width: 768px) {

.container {
		width: 86.25rem
}
	}

@media (max-width: 768px) {

.container {
		/* container within container */
}
		.container:not(.header-within) {
			padding: 0; /* no padding on the container at all times, max width full */
		}
		.container .container {
			padding: 0;
		}
	}


.smol,
.kiss article {
	width: 50rem;
	max-width: 95vw;
	
	margin-left: auto;
	margin-right: auto;
	padding-bottom: var(--spacing-m);
	
}

.grid-3-6-3 figure.wp-block-image.alignwide {
	width: 95vw;
	max-width: 86.25rem;
	margin-bottom: 2rem;
	
	grid-column: 1 / -1;
	grid-template-columns: subgrid;
	display: grid;
}

.grid-3-6-3 figure.wp-block-image.alignwide img {
		grid-column: 1 / -1;
	}

@media (min-width: 74em) {
	.smaller-container {
		max-width: 45.75rem;
		width: 100%;
	}
}

@media (min-width: 64em) {
	html {
		font-size: 16px;
	}
}


.subgrid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 2vw;
}

::-moz-selection {
	background-color: var(--reds--rosa);
	color: var(--neutral--90);
}

::selection {
	background-color: var(--reds--rosa);
	color: var(--neutral--90);
}
::-moz-selection {
	background-color: var(--reds--rosa);
	color: var(--neutral--90);
}

/* Alternative headers */

.site_logo svg {
	max-width: 8rem;
}


.site-header {
	position: relative;
	z-index: 100;
	margin-bottom: var(--spacing-m);
}

.menu-close-button {
	position: relative;
	top: 0.5cap;
}


/* In relation to a sticky header that vanishes */
.site-header {
	display: flex;
	align-items: center;
	padding: 2cap 0;
	width: 100%;
	flex-direction: column;
}
@media (min-width: 47em) {
.site-header {
		padding: 0.5rem 0
}
	}



.site_logo svg {
	width: 100%;
	height: auto;
	vertical-align: middle;
}

:is(.main-menu) {
	list-style: none;
	margin: 0;
	padding: 0;
}

:where(a) {
	text-decoration: none;
}

.main-menu {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 0;
	width: 100%;
}

@media (min-width: 47em) {

.main-menu {
		gap: 1rem
}
	}

/* If you see a button, split the menu at that point*/

.main-menu .btn-light {
		margin-left: auto;
	}

.site-header--nav {
	display: flex;
	width: 100%;
	justify-content: stretch;
	align-items: center;
	gap: 2.5rem;
	padding: 0.5rem 0;
}

/* header-within-nav */
.navigatory-within-nav {
	display: flex;
	flex-direction: row;
	gap: 0.5rem;
	margin: 0;
	list-style: none;
}
.navigatory-within-nav a {	
		height: 2.5rem;
		padding: 0 0.8rem; /* fixed height; horizontal padding only */
		border-radius: 2rem;
		background-color: white;
		text-decoration: none;
		transition: all 0.2s cubic-bezier(0.09, 0.52, 0.49, 0.97);
		white-space: nowrap;
		cursor: pointer;
		font-size: clamp(1rem, 1.5cqw, var(--body-sizes--small));
		line-height: 1;
		display: inline-flex;
		align-items: center;
		justify-content: center;

		padding-bottom: 2px;
	}
.current_page_item .navigatory-within-nav a,
		.navigatory-within-nav a:hover {
			background-color: var(--neutral--90);
			color: var(--neutral--0);
		}
.navigatory-within-nav.outside-the-header { display: none; }

@media (max-width: 58em) {
		.header-within > .navigatory-within-nav { display: none; }
	.navigatory-within-nav.outside-the-header { 
		display: flex;
		margin-left: auto;
		margin-right: auto;
		margin-top: calc( var(--spacing-m) / -2);
		flex-wrap: wrap;
	}
}

/* Footer navigation ete */
ul.further-navigation {
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: 1.4;
}
ul.further-navigation li:hover > a {
		transform: translateX(0.5ex);
		opacity: 0.65;
	}
ul.further-navigation a {
		font-size: var(--line-height--body--l);
		line-height: 1.4;
		font-weight: 500;
		text-decoration: none;
		display: block;
		transition: all 0.2s cubic-bezier(0.14, 0.96, 0.79, 0.69);
		
		
	}


.navigatory-outside-nav {
	font-size: 2.25rem;
	font-weight: 600;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 0;
}

.navigatory-bottom {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin: 0;
	list-style: none;
	width: 100%;
}

@media (min-width: 64em) {

.navigatory-bottom {
		gap: 1rem;
		display: grid;
		grid-template-columns: repeat(4, 1fr)
}
	}

.navigatory-bottom__column {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

@media (min-width: 64em) {

.navigatory-bottom__column {
		gap: 1rem
}
	}

.navigatory-language__column {
	grid-column: 4;
}

@media (min-width: 64em) {

.navigatory-language__column {
		grid-column: 3
}
	}

.navigatory-top {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 1rem;	
	align-items: center;
	border-bottom: 1px solid var(--neutral--90);
}

@media (min-width: 64em) {

.navigatory-top {
		grid-template-columns: repeat(2, 1fr)
}
	} 

.navigatory-top,
.navigatory-bottom {
	margin-bottom: 5vh;
	padding-bottom: 5vh;
} 

@media (min-width: 64em) {
	}

.large-navigation  {
	grid-column: 1 / span 2;
	font-size: 2.25rem;
	line-height: 1;
	font-weight: 500;
	text-decoration: none;
	display: flex;
	flex-direction: column;
}

.special-navigation {
	display: flex;
	flex-direction: row;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
	font-weight: 600;
	
}

@media (min-width: 64em) {

.special-navigation {
		gap: 1rem
	
}
	}

.special-navigation ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}

.special-navigation ul a { text-decoration: none; }

.site-footer {
	margin-top: 10vh;
	padding-bottom: 10vh;
	position: relative;
	z-index: 1;
}

.site-footer > .container{
	background-color: white;
	border-radius: 1.25rem;
	padding: 2.5rem 1rem;
}

@media (min-width: 64em) {

.site-footer > .container{
		padding: 4rem
}
	}

.language-active { font-weight: 600; }


/* Newsletter form */

.footer-dot-title {
	font-size: clamp(2rem, 4vw, 4rem);
}

form.newsletter-form {
	display: flex;
	flex-direction: row;
	gap: 0.75rem;
}

@media (min-width: 64em) {

form.newsletter-form {
		gap: 1rem
}
	}

input[type="email"] {
	border-radius: 0.5rem;
	width: 80%;
	flex: 1 1 80%;
	padding: 0.5rem;
	border-color: var(--neutral--90);
}

@media (min-width: 64em) {

input[type="email"] {
		padding: 1rem
}
	}

input[type="email"] ~ button[type="submit"] {
		font-size: 2rem;
		height: 3rem;
		width: 3rem;
		flex: 0 0 3rem;	
	}

@media (min-width: 64em) {

input[type="email"] ~ button[type="submit"] {
			font-size: 3rem;
			height: 4rem;
			width: 4rem;
			flex: 0 0 4rem	
	}
		}

input[type="email"] ~ button[type="submit"] {
		
		line-height: 1;
		padding: 0;
		background-color: var(--reds--red);
		border: 0;
		font-family: 'bomuldots', sans-serif;
		font-variation-settings: "wght" 140;
		color: white;
		border-radius: 0.5rem;
		transition: font-variation-settings 0.3s cubic-bezier(0.09, 0.52, 0.49, 0.97), 
		transform 0.3s cubic-bezier(0.09, 0.52, 0.49, 0.97),
		all 0.3s cubic-bezier(0.09, 0.52, 0.49, 0.97);
		transition-delay: 0s, 0s;
		transform: translate3d(0, 0, 0);
		cursor: pointer;
}

input[type="email"] ~ button[type="submit"]:hover {
			background-color: var(--reds--pink);
			color: var(--neutral--90);
			font-variation-settings: "wght" 100;
		}



.main-menu li {
	position: relative;
	display: block;
	white-space: nowrap;
	border-radius: var(--br-s);
}

.main-menu li {
	font-size: var( --size-body-m-base );
	font-size: 1rem;
}

.main-menu > li:not(.wp-block-button__link) { padding: 0.5rem 1rem; }

li.menu-item.wp-block-button__link a {
	display: inline-block;
	height: auto;
	font-size: 0.875rem;
}

[x-cloak] {
	display: none !important;
}

@media (max-width: 74em) {
	
	.main-menu > li:not(.wp-block-button__link) { padding: 1rem 0; }
	
	li.wp-block-button__link { display: none !important;}
	
	.sub-menu {
		padding-top: var(--spacing-xs);
		padding-left: var(--spacing-s);
		padding-bottom: var(--spacing-xs);
		margin-left: 0;
		display: flex;
		flex-direction: column;
		gap: calc(var(--spacing-xs) / 1);
	}
}

@media (min-width: 47em) {
	.sub-menu {
		position: absolute;
		top: 100%;
		left: 0;
		margin-left: 0;
		background-color: white;
		border-radius: var(--br-s);
		color: #262626;
		white-space: nowrap;
		padding: 1.5rem 0;
		min-width: 12rem;
		z-index: 100;
		box-shadow: 0 45px 87px -13px rgba(0,0,0,0.2); /* a guess */
	}
}


.sub-menu li {
	padding: 0;
}


.sub-menu li:last-child {
		padding-bottom: 0;
	}

a,
a:active,
a:focus {
	outline: none;
}

.menu-item-has-children > a {
	padding: 0;
	position: relative;
}

.menu-item-has-children a a {
	padding: 0;
}


@media (min-width: 47em) {
	.main-menu > li.menu-item:has( ul.sub-menu:not([style])),
	.main-menu > li.menu-item:not(.wp-block-button__link):hover {
		background-color: var(--surface-subtle);
		border-radius: var(--br-s );
	}
	.sub-menu {
		display: flex;
		flex-direction: column;
		gap: 0;
	}
		
		.sub-menu li a {
			display: block;
			padding: 0.5rem 1.875rem;
		}
}



.menu_tog {
	/* position: absolute; */
	width: 1.8125rem;
	height: 1.8125rem;
	overflow: visible;
}

.menu_tog.opener {
	right: 1rem;
	top: 0;
	padding: 4px;
}


.mobile-menu:not(.show) {
	display: none;
}

/***************/

.site-header { 
	--from: 0%;
	display: grid; 
	place-items: center;
	padding: 0.5rem 0;
}

@media (min-width: 64em) {

.site-header {
		padding: 1rem 0
}
	}



/* Keep the activated state separate */
.site-header.activated {
	animation: none;
	position: relative;
	z-index: 2000;
	background-color: #f8b6c1; /* fallback for color-mix */
	background-color: color-mix(in srgb, var(--reds--pink) 90%, transparent);
}
@media (min-width: 64em) {
.site-header.activated {
		
		padding: 1rem 0;
}
		.site-header.activated.still-sticky {
			padding: 0;
		}
	}
.site-header.activated {
	
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	align-items: flex-start;
}

.activated > .navigation{
	position: relative;
}

.glass {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(6rem + 2rem );
	background-color: color-mix(in srgb, var(--reds--pudder) 60%, transparent);
	-webkit-backdrop-filter: blur(10px);
	        backdrop-filter: blur(10px);
	z-index: 10;
}

@media (max-width: 768px) {

.glass {
		height: calc(40px + 1rem)
}
	}

.mobile-menu {
	width: 100vw;
	height: 100vh;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	padding-top: var(--spacing-m);
	z-index: -1;
	opacity: 1;
}

@media (max-width: 64em) {

.mobile-menu {
		overflow-y: scroll;
		padding-bottom: 10vh;
		
		/* Hide scrollbars without affecting overflow */
		scrollbar-width: none; /* Firefox */
		-ms-overflow-style: none  /* IE and Edge */
}
		.mobile-menu::-webkit-scrollbar {
			display: none; /* Chrome, Safari, Opera */
		}
	}

.mobile-menu.hidden { 
		opacity: 0;
	}


.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}


.header-container > .header-within {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
	}


@media (min-width: 48em) {


.header-container > .header-within {
			padding: 1rem 0
	}
		}


@media (min-width: 64em) {


.header-container > .header-within {
			padding: 2rem 0 1rem 0;

			display: grid;
			grid-template-columns: 3fr 3fr 4fr 2fr;
			gap: 1rem 0
	}

			.header-container > .header-within .menu_tog { justify-self: end; }
		}


@media (max-width: 768px) {


.header-container {
		width: 100%;
		padding: 0.25rem 1rem
}
	}


.header-container:not(.sticky) {
		width: 100%;
		padding: 0;
	}


@media (max-width: 768px) {


.header-container:not(.sticky) {
			width: calc(100% - 1.5rem);
			width: calc(100vw - 1.5rem)
	}
		}





.header-container, 
.header-container.sticky { 
	position: fixed; 
	top: 0; 
	left: 50%;
	transform: translateX(-50%);
	z-index: 1000;
	padding: 0.5rem 0;
}





@media (min-width: 64em) {





.header-container, 
.header-container.sticky {
		padding: 0
}
	}

/*****
REMOVE THE STICKY HEADER ON SMALLER DEVICES
****/
@media (max-width: 768px) {
	.header-container, 
	.header-container.sticky { 
		padding-top: 24px;
	}
	
	.glass { height: calc( 24px + 40px + 1rem ); }
	.site-header { 
		margin-bottom: calc(var(--spacing-m) + 24px);
	}
	.site-header.activated { 
		padding-top: 24px;
	}

}
/*********/


@media (max-width: 74em) {
	.navlayout .site-header--nav {
		display: none;
	}
	
	.menu_tog {
		display: block;
	}
	
	
	
	.activated .mobile-menu .container {
		min-height: -moz-max-content;
		min-height: max-content;
		top: 0;
	}
	
	.activated .desktop-only {
		display: none !important;
	}
	
	body.menuopen {
		overflow: hidden;
	}
	
	.site-header {
		transition: none;
	}
}

.leading-title {
	margin-bottom: 3.75rem;
}

/* For the animated things */
.microtitle__container {
	max-width: 72.5rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	height: 100%;
	
	height: 100%;
	top: 0;
	position: absolute;
	left: 50%;
	width: 100%;
	transform: translateX(-50%);
}

.fc_title {
	font-size: 1.75rem;
	line-height: 1.75rem;
	margin-bottom: 0;
}

.fc_subtitle {
	font-size: 1.1rem;
	line-height: 1.2rem;
	font-weight: 500;
	max-width: 20em !important;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 47em) {
	.fc_title {
		font-size: 3.5rem;
		line-height: 3.5rem;
		margin-bottom: 0;
	}
	
	.fc_subtitle {
		font-size: 1.3125rem;
		line-height: 1.5rem;
		font-weight: 500;
		margin-left: auto;
		margin-right: auto;
		max-width: 30em !important;
	}
}

/*************
**/

.btn {
	padding: 1rem;
	white-space: nowrap;
	border-radius: var(--br-m);
	font-weight: 400;
}

.btn-dark {
	color: white;
	background-color: var(--action-default);
}

.btn-light {
	color: white;
	background-color: var(--brand);
	font-weight: 400;
}

.btn-light:hover {
	background-color: var(--brand-dark);
	color: white;
}

/* .image-above-title-block .btn-light:hover {
color: white !important;
background-color: var(--brand-dark);
} */

.btn-link {
	background-color: transparent;
	color: var(--brand);
	text-transform: uppercase;
	
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.02em;
}

.btn-link:hover {
	color: var(--brand);
	text-decoration: underline;
}

.open_icon_for_menu,
.close_icon_for_menu {
	width: 1.875rem;
	height: auto;
}

.hentry > h1 {
	margin: 6rem auto 4rem;
}
@media (min-width: 50em) {
	.hentry > h1 {
		margin: 10rem auto 8rem;
	}
}

/* This is because it is driving Hilde insane */
@media (min-width: 50em) {
	.wp-block-column .wp-block-image.size-large img {
		height: 45rem;
		-o-object-fit: cover;
		   object-fit: cover;
	}
}


.wp-block-image {
	border-radius: var(--br-m);
}


@media (max-width: 768px) {


.wp-block-image {
		border-radius: 0.5rem
}
	}


/*
Set the spacer to be limited to 32px / 16px
*/

.wp-block-spacer {
	height: 30px !important;
}
@media (min-width: 50em) {
	.wp-block-spacer {
		height: 60px !important;
	}
}

/*
Multiple blocks that are the same, cannot force the same styles when loaded. We have to push it all to here:
*/

@media (min-width: 47em) {
	[unresolved] {
		opacity: 0;
	}
}

/* Layout rules that are really hard to implement
but easy to bosh out in Figma */

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

.center-text-based * {
		margin-left: auto;
		margin-right: auto;
	}

@media (min-width: 80em) {
	.center-text-based {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
		padding-left: var(--spacing-xl);
		padding-right: var(--spacing-xl);
	}
	
}


/* Natures blog */

body.blog article {
    max-width: 50rem;
    margin-inline: auto;
}

.blog_page-inner > .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

@media (max-width: 768px) {

.blog_page-inner > .container {
		grid-template-columns: 1fr
}
	}

.blog_inner-item {
	padding-bottom: 2rem;
	margin-bottom: 2rem;
}

.blur-background {
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
}

.t2-accordion {
	width: 95vw;
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto;
}

.t2-accordion-item.is-focused {
	outline-color: var(--brand);
}


a[href*="mailto"] {
	color: var(--brand);
}


.no-margin-bottom {
	margin-bottom: 0;
}
.investor-ifram-container {
	margin-bottom: 120px;
	max-width: 800px;
}

@media (max-width: 768px) {
	.investor-ifram-container {
		margin-bottom: 60px;
	}
}

/************************/
/****** Customizer ******/
/************************/

.site-header .menu-navigation-container li a {
	font-weight: 400!important;
}

html {
	background-color: #ffffff
	!important;
}

body.page-template-page-dark .custom-logo-link img,
body.home .custom-logo-link img {
	filter: invert(1);
	-webkit-filter: invert(1);
}

a:hover {
	cursor: pointer !important;
}

a:where(:not(.wp-element-button)) {
	/* text-decoration: none; */
	text-decoration: underline;
}

form.post-password-form {
	padding: 23vh 1rem;
	text-align: center;
}


input[type="submit"] {
	background-color: black;
	outline: 0;
	color: white;
	border: 0;
	vertical-align: bottom;
	padding: 0.6rem 2rem;
	border-radius: 5px;
	text-transform: uppercase;
}

.t2-accordion-item {
	border: 0;
	border-top: 1px solid rgba(0,0,0,0.1);
	padding-top: 1rem;
	margin-bottom: 2rem;
}

.t2-accordion-item.is-focused {
	outline: 0;
}

.fakeaccords {
	border-top: 1px solid rgba(0,0,0,0.1);
	display: block;
	margin-bottom: 2rem;
	padding: 2rem 1rem;
	position: relative;
}

.t2-accordion button.t2-accordion-trigger {
	font-size: 1.5rem;
	font-weight: 600;
}

.fakeaccords-inside a,
.fakeaccords a {
	position: relative;
	font-size: 1.5rem;
	font-weight: 600;
	display: block;
	text-decoration: none !important;
}

.fakeaccords-inside {
	padding: 1rem 0 0 0;
}

.fakeaccords-inside svg,
.fakeaccords svg {
	position: absolute;
	right: 0rem;
	top: 50%;
	transform: translateY(-50%);
	/* Can't stop the SVG from accordion, so adapt to 20px */
	width: 20px;
	height: 20px;
}

.fakeaccords-inside:hover a,
.fakeaccords:hover a {
	color: red;
}

.fakeaccords-inside a,
.fakeaccords:hover a,
.fakeaccords-inside:hover svg path,
.fakeaccords:hover svg path {
	transition: all 250ms ease-in-out;
}
.fakeaccords-inside:hover svg path,
.fakeaccords:hover svg path {
	stroke: red;
}

/* Languages */

@media ( max-width: 47em) {
	
	p { font-size: 16px; }
	
	.external-links-outbound {
		padding-top: 0;
		margin-top: 2rem;
	}
	.external-links-outbound > div {
		align-items: flex-start;
		flex-direction: column;
		justify-content: flex-start;
		gap: 2rem;
	}
}



p {
	font-family: 'Parabolica', system-ui, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: var(--body-sizes--large);
	line-height: 1.5;
	color: var(--neutral--90);
}
/* ===================== */

.new-footer {
	background-color: white;
	padding: var(--spacing-m);
}


/* ===================== */


.bubble-wrapper {
	position: relative;
	height: 1.75rem;
	width: -moz-max-content;
	width: max-content;
	overflow: hidden;
	/* Offset for the bubbles adding space to the left */
	margin-left: -1ch
}

.bubble-text {
	font-family: 'bomuldots', system-ui, sans-serif;
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	font-size: 1.125rem;
	padding: 1ch 2ch;
	font-weight: 140;
	font-variation-settings: 'wght' 140;
	letter-spacing: -0.025rem;
	word-spacing: 0.2rem;
	color: black;
	white-space: nowrap;
}










/*************	
*************/

.smallblog > p {
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 64em) {

.smallblog > p {
		max-width: 40.5rem
}	
	}



ul.micro-navigation {
	grid-column: 2;
}


/************************
************************/



/* Javier Barrios: Soft Frenzy */

h1.event-title {
	font-family: 'Parabolica', system-ui, sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: clamp(var(--heading-sizes--s), 6vw, var(--heading-sizes--m));
	line-height: 100%;
	margin-bottom: clamp( 2rem, 5vw, 3rem);
	color: var(--neutral--90);
}

body:not(.single-utstilling):not(.single-arrangement) h1.event-title {
		text-align: center;
	}

@media (max-width: 768px) {

h1.event-title {
		font-size: var(--heading-sizes--s);
		text-align: left
}
	}

/* on text with gutenberg p blocks with no class, set a max-width and center it */
.arrangement-content > p:not([class]) {
    margin-inline: auto;
	grid-column: 2;
}

.event-header-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: center;
	margin-bottom: 2rem;
}

.event-header__content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
	grid-column: 2 !important;
}

.event-header__content h1 { text-wrap: balance;}

@media (max-width: 768px) {

.event-header__content {
		margin-bottom: 1rem
}
	}

.event-header__notices {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	/* padding-top: 1rem; */
}

.event-tickets {
	margin-bottom: var(--spacing-m);
}

.event-tickets .ticket-button {
		grid-column: 2;
		display: block;
		background-color: var(--reds--red);
		color: var(--neutral--90);
		padding: 1rem 2rem;
		border-radius: 1rem;
		font-size: 2rem;
		width: 100%;
		font-weight: 600;
		text-decoration: none;
		text-align: center;
	}

.event-tickets .ticket-button:hover {
			background-color: var(--reds--pink);
		}

.event-meta-item {
	min-width: 120px;
}

@media (max-width: 768px) {

.event-meta-item {
		display: flex;
		flex-direction: row;
		gap: 0
}
		.event-meta-item strong { flex: 0 0 30%;}
		.event-meta-item br { display: none; }
		.event-meta-item > div { 
			border-top: 2px solid black;
			padding-top: 1rem;
		}
	}

.event-featured-image {
	grid-column: 1 / -1;
	margin-bottom: var(--spacing-m);
}

.event-featured-image .wp-caption-text {
		text-align: left;
		font-size: 1.125rem;
		line-height: 1.5rem;
		color: var(--neutral--90);
	}

.event-featured-image img {
	width: 100%;
	max-width: 95vw;
	height: auto;
	border-radius: 1rem;
}

@media (max-width: 900px) {
	.event-header-grid {
		grid-template-columns: 1fr;
	}
	.event-header__meta {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}
}

.event-header__meta {
	margin-bottom: var(--spacing-m);
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

@media (min-width: 768px) {

.event-header__meta {
		margin-top: 1rem;
		display: grid;
		gap: 1rem;
		align-items: start;
		justify-content: space-between;
		grid-template-columns: 1fr
}
		
		.event-header__meta:has( .event-meta-item:nth-child(2) ) {
			grid-template-columns: 1fr 1fr;
		}
		
		.event-header__meta:has( .event-meta-item:nth-child(3) ) {
			grid-template-columns: 1fr 1fr 1fr;
		}
		
		.event-header__meta > div { 
			padding-top: 1rem;
		}
	}

.event-header__meta > div { 
		border-top: 1px solid black;
	}

.event-external-links ul {
		list-style: none;
		margin: 0;
		padding: 0;
		font-size: 1.125rem;
	}

.event-external-links ul a { text-decoration: none;}



@media (max-width: 768px) {



.grid-3-6-3 {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		width: 100%
}
	}



@media (min-width: 768px) {



.grid-3-6-3 {
		display: grid;
		grid-template-columns: 1fr 8fr 1fr;
		gap: 1rem 0rem
}
	}



@media (min-width: 1200px) {



.grid-3-6-3 {
		grid-template-columns: 3fr 6fr 3fr
}
	}



.grid-3-6-3 h1,.grid-3-6-3 h2,.grid-3-6-3 h3,.grid-3-6-3 h4 {
		margin-bottom: clamp(1rem, 2vw, 1.5rem);
	}

.grid-3-6-3 > * {
	grid-column: 1 / -1;
	width: 100%;
	max-width: 100vw;
	min-width: 0;
}


/* Lord forgive me for this */
.grid-3-6-3:has(.grid-3-6-3) .grid-3-6-3 {
	min-width: auto;
}
.grid-3-6-3:has(.grid-3-6-3) .grid-3-6-3 > * { grid-column: 2; }

.spacing-m {
	margin-top: var(--spacing-m);
	margin-bottom: var(--spacing-m);
}

@media (max-width: 768px) {
	.event-header__content {
		grid-column: 1 ;
		max-width: 100%;
	}
}

.bubble-filters {
	display: flex;
	gap: 0.5rem;
}

.artist_name,
.exhibition_title {
	font-size: var(--heading-sizes--l);
	line-height: 1;
	font-weight: 500;
	margin-bottom: 1rem;
	text-align: left !important;
}

@media (min-width: 768px) {

.artist_name,
.exhibition_title {
		line-height: 90%;
		font-size: clamp(var(--heading-sizes--s), 6vw, var(--heading-sizes--m))
}
	}


/* Utstillinger */

.events-archive-list,
.kunst-archive-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {

.events-archive-list,
.kunst-archive-list {
		grid-template-columns: 1fr 1fr;
		gap: 3.75rem
}
	}

.event-archive-item {
	border-top: 1px solid black;
	padding-top: 1.5rem;
}
.event-archive-item,
.kunst-archive-item {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.event-archive-item h3, .kunst-archive-item h3 { margin-bottom: 0; }

.event-archive-item img,
.kunst-archive-item img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	   object-fit: cover;
	border-radius: 1rem;
	-webkit-aspect-ratio: 3/2;
	aspect-ratio: 3/2;
}

.kunst-archive-item .bubble-filters { flex-wrap: wrap; }

.utstillinger-filter a {text-decoration: none; }



.lightbox-trigger,
.event-card {
	transition: all 0.1s cubic-bezier(0.14, 0.96, 0.79, 0.69);
}



.lightbox-trigger img, .event-card img { 
		transition: opacity 0.1s cubic-bezier(0.14, 0.96, 0.79, 0.69);
	}



/* Hover effects for desktop */



@media (min-width: 64rem) {



.lightbox-trigger:hover > div:not([class]), 
		.lightbox-trigger:hover .event-card__image, 
		.event-card:hover > div:not([class]), 
		.event-card:hover .event-card__image {
				background-color: var(--neutral--90);
				border-radius: 1rem
		}
			}



.lightbox-trigger:hover img, .event-card:hover img { 
			opacity: 0.8;
		}



.events-pagination,
.kunst-pagination {
	display: flex;
	justify-content: center;
	gap: 1rem;
	zoom: 2;
}



@media (max-width: 768px) {



.events-pagination,
.kunst-pagination {
		gap: 0.5rem;
		zoom: 1
}
	}



.events-pagination span, .events-pagination a, .kunst-pagination span, .kunst-pagination a {
		--size: 2rem;
	}



@media (max-width: 768px) {



.events-pagination span, .events-pagination a, .kunst-pagination span, .kunst-pagination a {
			--size: 3rem
	}
		}



.events-pagination span, .events-pagination a, .kunst-pagination span, .kunst-pagination a {
		text-decoration: none;
		color: var(--neutral--90);
		width: var(--size);
		height: var(--size);
		font-size: calc(var(--size) / 1.5);
		display: inline;
		line-height: var(--size);
		text-align: center;
		background-color: var(--yellows--lime);
		border-radius: 5rem;
		font-family: 'bomuldots';
		font-weight: 100;
		font-variation-settings: "wght" 100;
}



.events-pagination span:hover, .events-pagination a:hover, .kunst-pagination span:hover, .kunst-pagination a:hover {
			background-color: var(--reds--pink);
		}



.events-pagination .page-numbers.current, .kunst-pagination .page-numbers.current {
		background-color: var(--reds--pink);
		font-weight: 200;
		border-radius: 5rem;
	}

.kunst-meta-info {
	display: grid;
	grid-template-columns: 30% 70%;
	gap: 1rem;
	padding: 0.5rem 0;
	border-top: 1px solid black;
}


.kunst-status-tag {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 2rem;
	font-size: 0.875rem;
	text-transform: uppercase;
}

.kunst-status-tag.current {
	background: #FFB6C1;
}

.kunst-status-tag.last-chance {
	background: #ffff00;
}

.kunst-info-grid {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.5rem 1rem;
}

/* Give logos persistent view transition names */
.dot-logo {
	view-transition-name: dot-logo;
	display: inline-block;
	width: 200px;
	height: 64px;
	vertical-align: bottom;
	position: relative;
	overflow: hidden;
}
.dot-logo canvas {
		display: block;
		width: 100%;
		height: 100%;
		/* Let the canvas control its own size */
		position: relative;
		z-index: 1;
	}
.dot-logo .dot-logo-fallback {
		position: absolute;
		inset: 0;
		z-index: 0;
		opacity: 1;
		transition: opacity 150ms ease, visibility 150ms ease;
	}
.dot-logo .dot-logo-fallback img {
			display: block;
			width: 100%;
			height: 100%;
			-o-object-fit: contain;
			   object-fit: contain;
		}
.dot-logo.canvas-ready .dot-logo-fallback {
		opacity: 0;
		visibility: hidden;
	}
@media (max-width: 768px) {
.dot-logo {
		width: 100px;
		height: 32px
}
	}

.watermark {
	view-transition-name: watermark-logo;
}

/* Optional: Make header persist too */
.site-header {
	view-transition-name: site-header;
}

.footer-credits {
	padding: 0 0 1rem;
	text-align: center;
}

.marmalade-spread path {
	transition: fill 0.1s linear allow-discrete;
}

.toast:hover .marmalade-spread path {
	fill: var(--reds--pink) !important;
}

.cloud-box {
	padding: 4rem 0.5rem;
	place-content: center;
	display: grid;
	width: 100%;
	max-width: 90vw;
	/* background-color: var(--scallop-color, transparent); */
	transition: background-color 150ms ease;
}

@media (min-width: 60em ) {

.cloud-box {
		padding: 4rem 2rem;
		aspect-ratio: 12/8;
		max-width: 43.75rem
}
	}
