/* ============================================================
   GROUNDS MAGAZINE — brand tokens, header (Editoria Home 1
   arrangement), hero slider, homepage sections, footer.
   Cream #F5EDD9 · Ink #1A1410 · Caramel #C17E3A
   Rufina 700 headlines · Playfair Display Italic subheads
   Roboto Mono body · Inter uppercase labels
   ============================================================ */

:root {
	--grounds-cream: #F5EDD9;
	--grounds-ink: #1A1410;
	--grounds-caramel: #C17E3A;
	--grounds-hairline: rgba(26, 20, 16, 0.18);
	--grounds-head: 'Rufina', serif;
	--grounds-sub: 'Playfair Display', serif;
	--grounds-mono: 'Roboto Mono', monospace;
	--grounds-label: 'Inter', sans-serif;
}

body {
	background-color: var(--grounds-cream);
}

.grounds-label {
	font-family: var(--grounds-label);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--grounds-caramel);
	margin: 0 0 14px;
}

.grounds-btn {
	display: inline-block;
	font-family: var(--grounds-label);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--grounds-cream);
	background: var(--grounds-ink);
	padding: 15px 38px;
	text-decoration: none;
	border: 0;
	cursor: pointer;
	transition: background .2s ease;
}

.grounds-btn:hover {
	background: var(--grounds-caramel);
	color: var(--grounds-cream);
}

/* ------------------------------------------------------------
   HEADER — burger + date | centred logo | search + subscribe
   ------------------------------------------------------------ */
.grounds-header {
	background: var(--grounds-cream);
	border-bottom: 1px solid var(--grounds-hairline);
}

.grounds-header__inner {
	max-width: 1360px;
	margin: 0 auto;
	padding: 22px 32px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 20px;
}

.grounds-header__left {
	display: flex;
	align-items: center;
	gap: 20px;
}

.grounds-header__date {
	font-family: var(--grounds-mono);
	font-size: 12px;
	color: var(--grounds-ink);
	opacity: .65;
	margin: 0;
	white-space: nowrap;
}

.grounds-header__logo {
	border: 0;
	line-height: 0;
	justify-self: center;
}

.grounds-header__logo img {
	display: block;
	height: 52px;
	width: auto;
}

.grounds-header__right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
}

.grounds-search-toggle {
	background: none;
	border: 0;
	padding: 6px;
	cursor: pointer;
	color: var(--grounds-ink);
	line-height: 0;
}

.grounds-search-toggle:hover {
	color: var(--grounds-caramel);
}

.grounds-btn--subscribe {
	padding: 12px 26px;
}

/* Hamburger */
.grounds-burger {
	background: none;
	border: 0;
	padding: 6px 2px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.grounds-burger span {
	display: block;
	width: 28px;
	height: 2px;
	background: var(--grounds-ink);
	transition: background .2s ease;
}

.grounds-burger:hover span {
	background: var(--grounds-caramel);
}

/* ------------------------------------------------------------
   DRAWER (off-canvas)
   ------------------------------------------------------------ */
.grounds-drawer {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: var(--grounds-ink);
	color: var(--grounds-cream);
	padding: 26px 32px 40px;
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, visibility .25s ease;
	overflow-y: auto;
}

.grounds-drawer.is-open {
	opacity: 1;
	visibility: visible;
}

.grounds-drawer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.grounds-drawer__logo {
	height: 44px;
	width: auto;
}

.grounds-drawer__close {
	background: none;
	border: 0;
	color: var(--grounds-cream);
	font-size: 44px;
	line-height: 1;
	cursor: pointer;
	padding: 0 4px;
}

.grounds-drawer__close:hover {
	color: var(--grounds-caramel);
}

.grounds-drawer__label {
	font-family: var(--grounds-label);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--grounds-caramel);
	margin: 54px 0 8px;
}

.grounds-drawer__label--more {
	margin-top: 40px;
}

.grounds-drawer__nav ul,
.grounds-drawer__more {
	list-style: none;
	margin: 0;
	padding: 0;
}

.grounds-drawer__nav a {
	font-family: var(--grounds-head);
	font-weight: 700;
	font-size: clamp(36px, 5.5vw, 58px);
	line-height: 1.35;
	color: var(--grounds-cream);
	text-decoration: none;
	border: 0;
}

.grounds-drawer__more a {
	font-family: var(--grounds-mono);
	font-size: 14px;
	line-height: 2.2;
	color: var(--grounds-cream);
	text-decoration: none;
	border: 0;
}

.grounds-drawer__nav a:hover,
.grounds-drawer__nav a:focus-visible,
.grounds-drawer__more a:hover {
	color: var(--grounds-caramel);
}

.grounds-drawer__foot {
	margin-top: auto;
	padding-top: 48px;
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.grounds-drawer__foot a {
	font-family: var(--grounds-mono);
	font-size: 13px;
	color: var(--grounds-cream);
	text-decoration: none;
	border-bottom: 1px solid var(--grounds-caramel);
	padding-bottom: 2px;
}

.grounds-drawer__foot a:hover {
	color: var(--grounds-caramel);
}

.grounds-drawer__sep {
	font-family: var(--grounds-head);
	color: var(--grounds-caramel);
}

body.grounds-lock {
	overflow: hidden;
}

/* ------------------------------------------------------------
   MODALS — search overlay + subscribe (Join the Club)
   ------------------------------------------------------------ */
.grounds-modal {
	position: fixed;
	inset: 0;
	z-index: 9998;
	background: rgba(26, 20, 16, 0.96);
	color: var(--grounds-cream);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, visibility .25s ease;
}

.grounds-modal.is-open {
	opacity: 1;
	visibility: visible;
}

.grounds-modal__close {
	position: absolute;
	top: 22px;
	right: 28px;
	background: none;
	border: 0;
	color: var(--grounds-cream);
	font-size: 44px;
	line-height: 1;
	cursor: pointer;
}

.grounds-modal__close:hover {
	color: var(--grounds-caramel);
}

.grounds-modal__body {
	width: min(620px, 100%);
	text-align: center;
}

.grounds-modal__heading {
	font-family: var(--grounds-head);
	font-weight: 700;
	font-size: clamp(28px, 4vw, 40px);
	color: var(--grounds-cream);
	margin: 0 0 10px;
}

.grounds-modal__sub {
	font-family: var(--grounds-sub);
	font-style: italic;
	font-size: 18px;
	opacity: .8;
	margin: 0 0 28px;
}

.grounds-search-form {
	display: flex;
	gap: 12px;
}

.grounds-search-form input[type="search"] {
	flex: 1;
	background: transparent;
	border: 0;
	border-bottom: 2px solid var(--grounds-cream);
	color: var(--grounds-cream);
	font-family: var(--grounds-head);
	font-size: clamp(22px, 3vw, 32px);
	padding: 8px 4px;
	outline: none;
}

.grounds-search-form input[type="search"]:focus {
	border-color: var(--grounds-caramel);
}

@media (prefers-reduced-motion: reduce) {
	.grounds-drawer,
	.grounds-modal,
	.grounds-burger span,
	.grounds-roll__stack,
	.grounds-slide {
		transition: none;
	}
}

/* ------------------------------------------------------------
   HERO SLIDER
   ------------------------------------------------------------ */
.grounds-slider {
	position: relative;
}

.grounds-slider__track {
	position: relative;
	overflow: hidden;
}

.grounds-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s ease, visibility .5s ease;
}

.grounds-slide.is-active {
	position: relative;
	opacity: 1;
	visibility: visible;
}

.grounds-slide__media {
	display: block;
	border: 0;
	line-height: 0;
}

.grounds-slide__media img,
.grounds-slide__media-empty {
	width: 100%;
	height: auto;
	aspect-ratio: 21 / 9;
	object-fit: cover;
	display: block;
}

.grounds-slide__media-empty {
	background: var(--grounds-ink);
	opacity: .08;
}

.grounds-slide__text {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 120px 48px 44px;
	background: linear-gradient(to top, rgba(26, 20, 16, 0.82), rgba(26, 20, 16, 0));
	text-align: left;
}

.grounds-slide__cat {
	color: var(--grounds-cream);
	background: var(--grounds-caramel);
	padding: 6px 12px;
	display: inline-block;
	text-decoration: none;
	border: 0;
	margin-bottom: 14px;
}

.grounds-slide__title {
	margin: 0 0 10px;
	max-width: 20em;
}

.grounds-slide__title a {
	font-family: var(--grounds-head);
	font-weight: 700;
	font-size: clamp(28px, 4vw, 52px);
	line-height: 1.12;
	color: var(--grounds-cream);
	text-decoration: none;
	border: 0;
}

.grounds-slide__title a:hover {
	color: var(--grounds-caramel);
}

.grounds-slide__standfirst {
	font-family: var(--grounds-sub);
	font-style: italic;
	font-size: 17px;
	line-height: 1.55;
	color: var(--grounds-cream);
	opacity: .85;
	margin: 0;
	max-width: 40em;
}

.grounds-slider__controls {
	position: absolute;
	right: 32px;
	top: 24px;
	display: flex;
	align-items: center;
	gap: 14px;
	z-index: 5;
}

.grounds-slider__arrow {
	background: var(--grounds-cream);
	border: 0;
	color: var(--grounds-ink);
	font-size: 16px;
	width: 38px;
	height: 38px;
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
}

.grounds-slider__arrow:hover {
	background: var(--grounds-caramel);
	color: var(--grounds-cream);
}

.grounds-slider__dots {
	display: flex;
	gap: 8px;
}

.grounds-slider__dots button {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	border: 0;
	background: var(--grounds-cream);
	opacity: .5;
	cursor: pointer;
	padding: 0;
}

.grounds-slider__dots button.is-active {
	opacity: 1;
	background: var(--grounds-caramel);
}

/* ------------------------------------------------------------
   HOMEPAGE SECTIONS
   ------------------------------------------------------------ */
.grounds-section {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 32px 72px;
}

.grounds-section:first-of-type {
	padding-top: 56px;
}

.grounds-latest {
	padding-top: 56px;
}

.grounds-section__head {
	border-top: 1px solid var(--grounds-hairline);
	padding-top: 26px;
	margin-bottom: 32px;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
}

.grounds-section__title {
	font-family: var(--grounds-head);
	font-weight: 700;
	font-size: clamp(24px, 3vw, 34px);
	color: var(--grounds-ink);
	margin: 0;
}

/* Cards */
.grounds-card__media {
	display: block;
	border: 0;
	line-height: 0;
	margin-bottom: 16px;
	overflow: hidden;
}

.grounds-card__media img,
.grounds-card__media-empty {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	display: block;
}

.grounds-card__media-empty {
	background: var(--grounds-ink);
	opacity: .06;
}

.grounds-card__cat {
	font-family: var(--grounds-label);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--grounds-caramel);
	text-decoration: none;
	border: 0;
}

.grounds-card__title {
	margin: 10px 0 8px;
}

.grounds-card__title a {
	font-family: var(--grounds-head);
	font-weight: 700;
	font-size: 21px;
	line-height: 1.3;
	color: var(--grounds-ink);
	text-decoration: none;
	border: 0;
}

.grounds-card__title a:hover {
	color: var(--grounds-caramel);
}

.grounds-card__meta {
	font-family: var(--grounds-mono);
	font-size: 12px;
	color: var(--grounds-ink);
	opacity: .55;
	margin: 0;
}

/* Latest News grid */
.grounds-latest__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 28px;
}

/* Recent Columns */
.grounds-columns__row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.grounds-column-card {
	border: 1px solid var(--grounds-hairline);
	padding: 26px;
}

.grounds-column-card__author {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
}

.grounds-column-card__author img {
	border-radius: 50%;
	display: block;
}

.grounds-column-card__author p {
	font-family: var(--grounds-mono);
	font-size: 13px;
	color: var(--grounds-ink);
	margin: 0;
}

.grounds-column-card__title {
	margin: 0;
}

.grounds-column-card__title a {
	font-family: var(--grounds-head);
	font-weight: 700;
	font-size: 20px;
	line-height: 1.35;
	color: var(--grounds-ink);
	text-decoration: none;
	border: 0;
}

.grounds-column-card__title a:hover {
	color: var(--grounds-caramel);
}

/* Editor's Picks */
.grounds-picks__layout {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 40px;
}

.grounds-picks__lead-title {
	margin: 10px 0 10px;
}

.grounds-picks__lead-title a {
	font-family: var(--grounds-head);
	font-weight: 700;
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.2;
	color: var(--grounds-ink);
	text-decoration: none;
	border: 0;
}

.grounds-picks__lead-title a:hover {
	color: var(--grounds-caramel);
}

.grounds-picks__excerpt {
	font-family: var(--grounds-sub);
	font-style: italic;
	font-size: 17px;
	line-height: 1.6;
	color: var(--grounds-ink);
	opacity: .8;
	margin: 0;
}

.grounds-picks__list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.grounds-picks__item {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 18px;
	align-items: start;
}

.grounds-picks__thumb {
	display: block;
	border: 0;
	line-height: 0;
}

.grounds-picks__thumb img,
.grounds-picks__thumb .grounds-card__media-empty {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}

.grounds-picks__item-title {
	margin: 0 0 6px;
}

.grounds-picks__item-title a {
	font-family: var(--grounds-head);
	font-weight: 700;
	font-size: 17px;
	line-height: 1.35;
	color: var(--grounds-ink);
	text-decoration: none;
	border: 0;
}

.grounds-picks__item-title a:hover {
	color: var(--grounds-caramel);
}

/* Explore More Topics */
.grounds-topics {
	text-align: center;
	border-top: 1px solid var(--grounds-hairline);
	padding-top: 56px;
	padding-bottom: 88px;
}

.grounds-topics__strip {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}

.grounds-topics__strip a {
	font-family: var(--grounds-head);
	font-weight: 700;
	font-size: clamp(20px, 2.6vw, 30px);
	color: var(--grounds-ink);
	text-decoration: none;
	border: 0;
	border-bottom: 2px solid transparent;
	padding: 2px 10px;
}

.grounds-topics__strip a:hover {
	color: var(--grounds-caramel);
	border-bottom-color: var(--grounds-caramel);
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.grounds-footer {
	background: var(--grounds-cream);
	border-top: 1px solid var(--grounds-hairline);
	color: var(--grounds-ink);
}

.grounds-footer__newsletter {
	max-width: 1360px;
	margin: 0 auto;
	padding: 72px 32px 56px;
	text-align: center;
	border-bottom: 1px solid var(--grounds-hairline);
}

.grounds-footer__news-heading {
	font-family: var(--grounds-head);
	font-weight: 700;
	font-size: clamp(30px, 4vw, 44px);
	color: var(--grounds-ink);
	margin: 0 0 10px;
}

.grounds-footer__news-sub {
	font-family: var(--grounds-sub);
	font-style: italic;
	font-size: 18px;
	color: var(--grounds-ink);
	opacity: .75;
	margin: 0 0 28px;
}

/* Five-column grid (About / Explore / The Standard / Talk / Follow) */
.grounds-footer__grid {
	max-width: 1360px;
	margin: 0 auto;
	padding: 64px 32px;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr 1fr;
	gap: 40px;
}

.grounds-footer__about-logo {
	height: 34px;
	width: auto;
	display: block;
	margin-bottom: 18px;
}

.grounds-footer__about-text,
.grounds-footer__standard-text {
	font-family: var(--grounds-mono);
	font-size: 13px;
	line-height: 1.8;
	color: var(--grounds-ink);
	opacity: .8;
	margin: 0 0 14px;
	max-width: 26em;
}

.grounds-footer__location {
	font-family: var(--grounds-mono);
	font-size: 12px;
	line-height: 1.9;
	color: var(--grounds-ink);
	opacity: .6;
	margin: 14px 0 0;
}

.grounds-footer__navlist {
	list-style: none;
	margin: 0;
	padding: 0;
}

.grounds-footer__navlist a {
	display: inline-block;
	font-family: var(--grounds-mono);
	font-size: 14px;
	line-height: 2.1;
	color: var(--grounds-ink);
	text-decoration: none;
	border: 0;
}

.grounds-footer__navlist a:hover,
.grounds-footer__navlist a:focus-visible {
	color: var(--grounds-caramel);
}

/* Rolling hover link */
.grounds-roll {
	display: block;
	width: fit-content;
	overflow: hidden;
	font-family: var(--grounds-mono);
	font-size: 14px;
	line-height: 2.1;
	color: var(--grounds-ink);
	text-decoration: none;
	border: 0;
}

.grounds-roll__stack {
	display: block;
	position: relative;
	transition: transform .25s ease;
}

.grounds-roll__stack span {
	display: block;
}

.grounds-roll__stack span:last-child {
	position: absolute;
	top: 100%;
	left: 0;
	color: var(--grounds-caramel);
}

.grounds-roll:hover .grounds-roll__stack,
.grounds-roll:focus-visible .grounds-roll__stack {
	transform: translateY(-100%);
}

/* Logo bleed */
.grounds-footer__bleed {
	overflow: hidden;
	line-height: 0;
}

.grounds-footer__bleed img {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: -6.5%;
	transform: translateY(1px);
}

/* Microstrip */
.grounds-footer__micro {
	border-top: 1px solid var(--grounds-hairline);
	padding: 16px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.grounds-footer__micro-item {
	font-family: var(--grounds-mono);
	font-size: 12px;
	color: var(--grounds-ink);
	opacity: .7;
	margin: 0;
}

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
	.grounds-latest__grid,
	.grounds-columns__row {
		grid-template-columns: repeat(2, 1fr);
	}

	.grounds-picks__layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.grounds-header__inner {
		padding: 14px 20px;
		gap: 12px;
	}

	.grounds-header__date {
		display: none;
	}

	.grounds-header__logo img {
		height: 38px;
	}

	.grounds-btn--subscribe {
		padding: 10px 16px;
		font-size: 10px;
	}

	.grounds-slide__text {
		padding: 90px 20px 28px;
	}

	.grounds-slider__controls {
		right: 20px;
		top: 16px;
	}

	.grounds-section {
		padding-left: 20px;
		padding-right: 20px;
	}

	.grounds-latest__grid,
	.grounds-columns__row {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.grounds-footer__newsletter {
		padding: 56px 20px 44px;
	}

	.grounds-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 44px 28px;
		padding: 48px 20px;
	}

	.grounds-footer__cell--about {
		grid-column: 1 / -1;
	}

	.grounds-footer__micro {
		justify-content: center;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.grounds-drawer {
		padding: 18px 20px 32px;
	}

	.grounds-drawer__logo {
		height: 34px;
	}

	.grounds-picks__item {
		grid-template-columns: 96px 1fr;
	}
}

/* ------------------------------------------------------------
   GLOBAL RE-SKIN — hard overrides of Elementor kit variables.
   These use !important so they beat any imported demo kit,
   turning imported Editoria demo content into Grounds branding
   automatically: colours, fonts, the lot.
   ------------------------------------------------------------ */
body {
	--e-global-color-primary: #1A1410 !important;
	--e-global-color-secondary: #1A1410 !important;
	--e-global-color-text: #1A1410 !important;
	--e-global-color-accent: #C17E3A !important;
	--e-global-color-tertiary: #C17E3A !important;
	--e-global-color-background: #F5EDD9 !important;
	--e-global-color-alternate: #EDE3C9 !important;
	--e-global-color-border: #DCCFB0 !important;
	--e-global-typography-primary-font-family: 'Rufina' !important;
	--e-global-typography-primary-font-weight: 700 !important;
	--e-global-typography-secondary-font-family: 'Playfair Display' !important;
	--e-global-typography-secondary-font-style: italic !important;
	--e-global-typography-text-font-family: 'Roboto Mono' !important;
	--e-global-typography-accent-font-family: 'Inter' !important;
}

/* ------------------------------------------------------------
   TYPOGRAPHY ENFORCEMENT — demo widgets that pin their own
   font families lose to these; the Grounds type system wins
   across all imported/Elementor content.
   ------------------------------------------------------------ */
h1, h2, h3, h4,
.elementor-heading-title,
.elementor-widget-heading .elementor-heading-title,
.cmsmasters-blog h1, .cmsmasters-blog h2, .cmsmasters-blog h3 {
	font-family: 'Rufina', serif !important;
	font-weight: 700 !important;
	color: var(--grounds-ink);
}

body, p, li,
.elementor-widget-text-editor,
.elementor-post__excerpt {
	font-family: 'Roboto Mono', monospace !important;
}

blockquote, .elementor-blockquote__content, em {
	font-family: 'Playfair Display', serif !important;
	font-style: italic !important;
}

/* Keep our own components exempt from the blanket rules */
.grounds-label, .grounds-btn, .grounds-drawer__label,
.grounds-slider__arrow, .grounds-footer__micro-item {
	font-family: 'Inter', sans-serif !important;
}
.grounds-footer__about-text, .grounds-footer__standard-text,
.grounds-roll, .grounds-footer__navlist a, .grounds-card__meta,
.grounds-footer__location, .grounds-header__date {
	font-family: 'Roboto Mono', monospace !important;
}
.grounds-drawer__nav a, .grounds-section__title, .grounds-card__title a {
	font-family: 'Rufina', serif !important;
}


/* Safety net: any nav list inside the footer grid, styled menu or
   fallback, gets the mono treatment — no bullets, no serif. */
.grounds-footer__grid nav ul,
.grounds-footer__grid ul {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.grounds-footer__grid nav a,
.grounds-footer__grid ul a {
	font-family: 'Roboto Mono', monospace !important;
	font-size: 14px;
	line-height: 2.1;
	color: var(--grounds-ink);
	text-decoration: none;
	border: 0;
}

.grounds-footer__grid nav a:hover,
.grounds-footer__grid ul a:hover {
	color: var(--grounds-caramel);
}
