:root {
	--gmg-bg: #0b1220;
	--gmg-bg-elevated: #121c2e;
	--gmg-bg-card: #162033;
	--gmg-text: #e8edf5;
	--gmg-text-muted: #94a3b8;
	--gmg-accent: #14b8a6;
	--gmg-accent-hover: #0d9488;
	--gmg-border: rgba(148, 163, 184, 0.18);
	--gmg-radius: 12px;
	--gmg-container: 1120px;
	--gmg-font: "Inter", system-ui, sans-serif;
	--gmg-serif: "Playfair Display", Georgia, serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.gmg-site {
	margin: 0;
	font-family: var(--gmg-font);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--gmg-text);
	background: var(--gmg-bg);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--gmg-accent);
	text-decoration: none;
}

a:hover {
	color: var(--gmg-accent-hover);
}

.gmg-container {
	width: min(100% - 2rem, var(--gmg-container));
	margin-inline: auto;
}

.gmg-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 9999;
	padding: 0.75rem 1rem;
	background: var(--gmg-accent);
	color: #fff;
}

.gmg-skip-link:focus {
	left: 1rem;
	top: 1rem;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* Header */
.gmg-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(11, 18, 32, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--gmg-border);
}

.gmg-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 96px;
}

.gmg-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.875rem;
	color: var(--gmg-text);
	font-weight: 600;
	flex-shrink: 0;
	min-width: 0;
	max-width: min(420px, 58vw);
	text-decoration: none;
}

.gmg-logo:hover {
	color: var(--gmg-text);
}

.gmg-logo__mark {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 56px;
	height: 56px;
}

.gmg-logo__mark-img {
	display: block;
	width: 56px;
	height: 56px;
}

.gmg-logo__wordmark {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.125rem;
	min-width: 0;
}

.gmg-logo__name {
	display: block;
	font-family: var(--gmg-serif);
	font-size: clamp(1.125rem, 2.2vw, 1.5rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.01em;
	white-space: nowrap;
}

.gmg-logo__tagline {
	display: block;
	font-size: clamp(0.625rem, 1.1vw, 0.75rem);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gmg-accent);
	white-space: nowrap;
}

.gmg-nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	padding: 0.5rem;
	cursor: pointer;
}

.gmg-nav-toggle__bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--gmg-text);
}

.gmg-nav {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.gmg-nav__list {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gmg-nav__list a {
	color: var(--gmg-text-muted);
	font-weight: 500;
}

.gmg-nav__list a:hover,
.gmg-nav__list .current-menu-item a {
	color: var(--gmg-text);
}

.gmg-header__cta {
	margin-left: 0.5rem;
}

.gmg-header__phone {
	display: none;
	color: var(--gmg-text-muted);
	font-weight: 600;
	font-size: 0.9375rem;
	white-space: nowrap;
}

.gmg-header__phone:hover {
	color: var(--gmg-accent);
}

@media (min-width: 1024px) {
	.gmg-header__phone {
		display: inline-flex;
		align-items: center;
		margin-left: auto;
	}
}

/* Buttons */
.gmg-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.25rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.9375rem;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
	text-align: center;
}

.gmg-btn--primary {
	background: var(--gmg-accent);
	color: #042f2e;
}

.gmg-btn--primary:hover {
	background: var(--gmg-accent-hover);
	color: #fff;
}

.gmg-btn--outline {
	background: transparent;
	border-color: var(--gmg-border);
	color: var(--gmg-text);
}

.gmg-btn--outline:hover {
	border-color: var(--gmg-accent);
	color: var(--gmg-accent);
}

.gmg-btn--ghost {
	background: transparent;
	color: var(--gmg-text);
	border-color: var(--gmg-border);
}

.gmg-btn--ghost:hover {
	border-color: var(--gmg-text-muted);
}

.gmg-btn--lg {
	padding: 0.875rem 1.5rem;
	font-size: 1rem;
}

.gmg-btn--block {
	width: 100%;
}

/* Hero */
.gmg-hero {
	position: relative;
	padding: 5rem 0 4rem;
	overflow: hidden;
	background-color: var(--gmg-bg);
}

.gmg-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg, rgba(11, 18, 32, 0.94) 0%, rgba(11, 18, 32, 0.78) 45%, rgba(11, 18, 32, 0.55) 100%),
		url("../img/hero-bg.jpg") center / cover no-repeat;
	z-index: 0;
}

.gmg-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 720px;
}

.gmg-eyebrow {
	color: var(--gmg-accent);
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin: 0 0 1rem;
}

.gmg-hero__title {
	font-family: var(--gmg-serif);
	font-size: clamp(2rem, 5vw, 3.25rem);
	line-height: 1.15;
	margin: 0 0 1rem;
	font-weight: 700;
}

.gmg-hero__text {
	color: var(--gmg-text-muted);
	font-size: 1.125rem;
	margin: 0 0 2rem;
	max-width: 56ch;
}

.gmg-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* Sections */
.gmg-section {
	padding: 4rem 0;
}

.gmg-section--packages {
	position: relative;
	background-color: var(--gmg-bg-elevated);
}

.gmg-section--packages::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(18, 28, 46, 0.92), rgba(18, 28, 46, 0.97)),
		url("../img/packages-bg.jpg") center / cover no-repeat;
	opacity: 1;
	z-index: 0;
}

.gmg-section--packages > .gmg-container {
	position: relative;
	z-index: 1;
}

.gmg-section__header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 2.5rem;
}

.gmg-section__title {
	font-family: var(--gmg-serif);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	margin: 0 0 0.75rem;
}

.gmg-section__subtitle,
.gmg-lead {
	color: var(--gmg-text-muted);
	font-size: 1.0625rem;
	margin: 0;
}

.gmg-page-title {
	font-family: var(--gmg-serif);
	font-size: clamp(2rem, 4vw, 2.75rem);
	margin: 0 0 1rem;
}

.gmg-page-header {
	padding-top: 3rem;
	padding-bottom: 1rem;
}

/* Package cards */
.gmg-packages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
}

.gmg-package-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 1.75rem;
	background: rgba(22, 32, 51, 0.88);
	border: 1px solid var(--gmg-border);
	border-radius: var(--gmg-radius);
	overflow: hidden;
	backdrop-filter: blur(6px);
}

.gmg-package-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(20, 184, 166, 0.08), transparent 55%);
	pointer-events: none;
}

.gmg-package-card--featured {
	border-color: rgba(20, 184, 166, 0.45);
	box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.15);
}

.gmg-package-card__badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 0.25rem 0.5rem;
	border-radius: 999px;
	background: rgba(20, 184, 166, 0.15);
	color: var(--gmg-accent);
}

.gmg-package-card__icon {
	position: relative;
	z-index: 1;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(20, 184, 166, 0.12);
	margin-bottom: 0.25rem;
}

.gmg-icon--search {
	background: rgba(20, 184, 166, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2314b8a6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21 21l-4.35-4.35M11 18a7 7 0 100-14 7 7 0 000 14z'/%3E%3C/svg%3E") center/22px no-repeat;
}

.gmg-icon--layout {
	background: rgba(20, 184, 166, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2314b8a6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 5h16M4 12h16M4 19h7'/%3E%3C/svg%3E") center/22px no-repeat;
}

.gmg-icon--spark {
	background: rgba(20, 184, 166, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2314b8a6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M13 10V3L4 14h7v7l9-11h-7z'/%3E%3C/svg%3E") center/22px no-repeat;
}

.gmg-icon--chart {
	background: rgba(20, 184, 166, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2314b8a6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 19h16M6 16l4-5 4 3 4-7'/%3E%3C/svg%3E") center/22px no-repeat;
}

.gmg-package-card__title,
.gmg-package-card__tagline,
.gmg-package-card__price,
.gmg-package-card__features,
.gmg-package-card .gmg-btn,
.gmg-package-card__badge {
	position: relative;
	z-index: 1;
}
	font-size: 1.25rem;
	margin: 0;
}

.gmg-package-card__tagline {
	color: var(--gmg-text-muted);
	font-size: 0.9375rem;
	margin: 0;
	flex: 1;
}

.gmg-package-card__price {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--gmg-text);
}

.gmg-price-period {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--gmg-text-muted);
}

.gmg-package-card__features {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.875rem;
	color: var(--gmg-text-muted);
}

.gmg-package-card__features li {
	padding: 0.25rem 0 0.25rem 1.25rem;
	position: relative;
}

.gmg-package-card__features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--gmg-accent);
}

.gmg-package-card .gmg-btn {
	margin-top: 0.25rem;
}

/* Why section */
.gmg-why__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
}

.gmg-why__item {
	padding: 1.5rem;
	background: var(--gmg-bg-card);
	border-radius: var(--gmg-radius);
	border: 1px solid var(--gmg-border);
}

.gmg-why__item h3 {
	margin: 0 0 0.5rem;
	font-size: 1.0625rem;
}

.gmg-why__item p {
	margin: 0;
	color: var(--gmg-text-muted);
	font-size: 0.9375rem;
}

/* CTA */
.gmg-cta {
	position: relative;
	padding: 4rem 0;
	overflow: hidden;
	border-top: 1px solid var(--gmg-border);
	border-bottom: 1px solid var(--gmg-border);
}

.gmg-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(11, 18, 32, 0.88), rgba(20, 184, 166, 0.25)),
		url("../img/cta-bg.jpg") center / cover no-repeat;
	z-index: 0;
}

.gmg-cta__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 560px;
}

.gmg-cta__title {
	font-family: var(--gmg-serif);
	font-size: 2rem;
	margin: 0 0 0.75rem;
}

.gmg-cta__text {
	color: var(--gmg-text-muted);
	margin: 0 0 1.5rem;
}

/* Package detail */
/* Package detail */
.gmg-package-detail-hero {
	position: relative;
	padding: 3.5rem 0 2rem;
	overflow: hidden;
}

.gmg-package-detail-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(120deg, rgba(11, 18, 32, 0.93), rgba(11, 18, 32, 0.72)), var(--gmg-detail-bg, url("../img/hero-bg.jpg"));
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}

.gmg-package-detail-hero .gmg-container {
	position: relative;
	z-index: 1;
}

.gmg-package-detail-hero--seo { --gmg-detail-bg: url("../img/hero-bg.jpg"); }
.gmg-package-detail-hero--web { --gmg-detail-bg: url("../img/packages-bg.jpg"); }
.gmg-package-detail-hero--geo { --gmg-detail-bg: url("../img/cta-bg.jpg"); }
.gmg-package-detail-hero--ads { --gmg-detail-bg: url("../img/hero-bg.jpg"); }

.gmg-package-detail__header {
	max-width: 720px;
	margin-bottom: 0;
}

.gmg-package-detail__price {
	font-size: 2rem;
	font-weight: 700;
	margin-top: 1rem;
}

.gmg-package-detail__grid {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 2.5rem;
	align-items: start;
	padding: 2.5rem 0 4rem;
}

.gmg-package-detail__content p {
	color: var(--gmg-text-muted);
}

.gmg-package-detail__sidebar {
	padding: 1.5rem;
	background: var(--gmg-bg-card);
	border: 1px solid var(--gmg-border);
	border-radius: var(--gmg-radius);
}

.gmg-package-detail__sidebar h2 {
	font-size: 1.125rem;
	margin: 0 0 1rem;
}

.gmg-checklist {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
}

.gmg-checklist li {
	padding: 0.35rem 0 0.35rem 1.25rem;
	position: relative;
	font-size: 0.9375rem;
	color: var(--gmg-text-muted);
}

.gmg-checklist li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--gmg-accent);
}

.gmg-package-detail__sidebar .gmg-btn + .gmg-btn {
	margin-top: 0.75rem;
}

/* Contact */
.gmg-contact-grid {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 2.5rem;
	align-items: start;
}

.gmg-form__row {
	margin-bottom: 1.25rem;
}

.gmg-form label {
	display: block;
	font-weight: 500;
	margin-bottom: 0.375rem;
	font-size: 0.9375rem;
}

.gmg-form input,
.gmg-form select,
.gmg-form textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border-radius: 8px;
	border: 1px solid var(--gmg-border);
	background: var(--gmg-bg-card);
	color: var(--gmg-text);
	font: inherit;
}

.gmg-form input:focus,
.gmg-form select:focus,
.gmg-form textarea:focus {
	outline: 2px solid rgba(20, 184, 166, 0.45);
	border-color: var(--gmg-accent);
}

.gmg-hp {
	position: absolute;
	left: -9999px;
	opacity: 0;
}

.gmg-contact-aside {
	padding: 1.5rem;
	background: var(--gmg-bg-card);
	border-radius: var(--gmg-radius);
	border: 1px solid var(--gmg-border);
}

.gmg-contact-aside h2,
.gmg-contact-aside h3 {
	font-size: 1.0625rem;
	margin: 0 0 0.75rem;
}

.gmg-contact-aside p {
	color: var(--gmg-text-muted);
	font-size: 0.9375rem;
}

.gmg-contact-aside h3 {
	font-size: 1.0625rem;
	margin: 1.25rem 0 0.75rem;
}

.gmg-address,
.gmg-address-link {
	display: block;
	font-style: normal;
	color: var(--gmg-text-muted);
	font-size: 0.9375rem;
	line-height: 1.55;
}

.gmg-address-link:hover .gmg-address,
.gmg-address-link:hover {
	color: var(--gmg-accent);
}

.gmg-footer .gmg-address-link {
	margin-top: 0.75rem;
}

.gmg-social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	list-style: none;
	margin: 0.75rem 0 0;
	padding: 0;
}

.gmg-social__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.875rem;
	border: 1px solid var(--gmg-border);
	border-radius: 999px;
	color: var(--gmg-text-muted);
	font-size: 0.875rem;
	font-weight: 600;
	transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.gmg-social__link:hover {
	color: var(--gmg-text);
	border-color: var(--gmg-accent);
	background: rgba(20, 184, 166, 0.08);
}

.gmg-social__icon {
	flex-shrink: 0;
}

.gmg-contact-aside .gmg-social {
	margin-bottom: 0.25rem;
}

.gmg-contact-prices {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gmg-contact-prices li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--gmg-border);
	font-size: 0.875rem;
}

.gmg-alert {
	padding: 1rem 1.25rem;
	border-radius: 8px;
	margin-bottom: 1.5rem;
}

.gmg-alert--success {
	background: rgba(20, 184, 166, 0.12);
	border: 1px solid rgba(20, 184, 166, 0.35);
	color: var(--gmg-text);
}

.gmg-alert--error {
	background: rgba(239, 68, 68, 0.12);
	border: 1px solid rgba(239, 68, 68, 0.35);
}

.gmg-content {
	color: var(--gmg-text-muted);
	max-width: 720px;
}

.gmg-content h2 {
	color: var(--gmg-text);
}

/* Footer */
.gmg-footer {
	padding: 3rem 0 1.5rem;
	background: var(--gmg-bg-elevated);
	border-top: 1px solid var(--gmg-border);
	margin-top: auto;
}

.gmg-main {
	min-height: 60vh;
}

.gmg-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

.gmg-footer__brand p {
	color: var(--gmg-text-muted);
	font-size: 0.9375rem;
	max-width: 28ch;
}

.gmg-footer__heading {
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--gmg-text-muted);
	margin: 0 0 1rem;
}

.gmg-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gmg-footer li {
	margin-bottom: 0.5rem;
}

.gmg-footer a {
	color: var(--gmg-text-muted);
	font-size: 0.9375rem;
}

.gmg-footer a:hover {
	color: var(--gmg-text);
}

.gmg-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--gmg-border);
	color: var(--gmg-text-muted);
	font-size: 0.875rem;
}

.gmg-footer__legal-inline {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
}

.gmg-footer__legal-inline a {
	color: var(--gmg-text-muted);
	font-size: 0.8125rem;
}

.gmg-footer__legal-inline a:hover {
	color: var(--gmg-accent);
}

.gmg-legal-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gmg-section--legal {
	padding-top: 0;
}

.gmg-legal {
	max-width: 760px;
}

.gmg-legal h2 {
	font-family: var(--gmg-serif);
	font-size: 1.375rem;
	color: var(--gmg-text);
	margin: 2rem 0 0.75rem;
}

.gmg-legal h3 {
	font-size: 1.0625rem;
	color: var(--gmg-text);
	margin: 1.5rem 0 0.5rem;
}

.gmg-legal p,
.gmg-legal li {
	color: var(--gmg-text-muted);
}

.gmg-legal ul,
.gmg-legal ol {
	margin: 0 0 1rem;
	padding-left: 1.25rem;
}

.gmg-legal li {
	margin-bottom: 0.35rem;
}

.gmg-legal em {
	color: var(--gmg-text-muted);
	font-size: 0.9375rem;
}

.gmg-footer__bottom p {
	margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
	.gmg-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 900px) {
	.gmg-header__inner {
		min-height: 80px;
	}

	.gmg-logo {
		max-width: min(280px, 70vw);
		gap: 0.625rem;
	}

	.gmg-logo__mark,
	.gmg-logo__mark-img {
		width: 48px;
		height: 48px;
	}

	.gmg-package-detail__grid,
	.gmg-contact-grid,
	.gmg-footer__grid {
		grid-template-columns: 1fr;
	}

	.gmg-nav-toggle {
		display: flex;
	}

	.gmg-nav {
		position: fixed;
		inset: 80px 0 auto 0;
		flex-direction: column;
		align-items: stretch;
		padding: 1.5rem;
		background: var(--gmg-bg);
		border-bottom: 1px solid var(--gmg-border);
		transform: translateY(-120%);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.25s, opacity 0.25s;
	}

	.gmg-nav.is-open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.gmg-nav__list {
		flex-direction: column;
		align-items: flex-start;
	}

	.gmg-header__phone {
		display: inline-flex;
		margin-left: 0;
		width: 100%;
	}

	.gmg-header__cta {
		margin-left: 0;
		width: 100%;
	}
}

@media (max-width: 480px) {
	.gmg-logo__tagline {
		display: none;
	}

	.gmg-logo__name {
		font-size: 1rem;
	}
}
