:root {
	--tm-bg: #f6f7f8;
	--tm-surface: #ffffff;
	--tm-text: #172026;
	--tm-muted: #66717a;
	--tm-line: #dfe5ea;
	--tm-primary: #0f766e;
	--tm-primary-dark: #115e59;
	--tm-accent: #f59e0b;
	--tm-danger: #dc2626;
	--tm-radius: 8px;
	--tm-shadow: 0 10px 30px rgba(23, 32, 38, 0.08);
	--tm-container-width: 1180px;
	--tm-content-bg: #ffffff;
}

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

body {
	margin: 0;
	background: var(--tm-bg);
	color: var(--tm-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

.site {
	min-height: 100vh;
	background: var(--tm-content-bg);
}

body.teeze-layout-boxed .site {
	width: min(calc(var(--tm-container-width) + 64px), 100%);
	margin-right: auto;
	margin-left: auto;
	box-shadow: 0 0 40px rgba(23, 32, 38, 0.12);
}

body.teeze-layout-framed .site {
	width: min(calc(var(--tm-container-width) + 64px), calc(100% - 48px));
	margin: 24px auto;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 16px 50px rgba(23, 32, 38, 0.18);
}

a {
	color: var(--tm-primary);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--tm-primary-dark);
	text-decoration: underline;
}

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

button,
input,
select,
textarea {
	font: inherit;
}

.container {
	width: min(var(--tm-container-width), calc(100% - 32px));
	margin-right: auto;
	margin-left: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	top: 12px;
	left: 12px;
	z-index: 1000;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--tm-text);
	color: #fff;
	border-radius: var(--tm-radius);
}

.top-bar,
.teeze-header-row--top {
	background: var(--tm-header-top-bg, #172026);
	color: #fff;
	color: var(--tm-header-top-color, #fff);
	font-size: 13px;
}

.top-bar__inner,
.footer-bottom__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.top-bar p,
.footer-bottom p {
	margin: 0;
}

.top-menu,
.footer-menu,
.primary-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.top-menu a {
	color: inherit;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--tm-surface);
	box-shadow: 0 1px 0 var(--tm-line);
}

.teeze-built-header {
	color: var(--tm-header-main-color, var(--tm-text));
}

.teeze-header-mobile {
	display: none;
}

.teeze-header-row {
	border-bottom: 1px solid var(--tm-line);
}

.teeze-header-row--main {
	background: var(--tm-header-main-bg, #fff);
	color: var(--tm-header-main-color, var(--tm-text));
}

.teeze-header-row--bottom {
	background: var(--tm-header-bottom-bg, #fff);
	color: var(--tm-header-bottom-color, #fff);
}

.teeze-header-row--top a,
.teeze-header-row--main a,
.teeze-header-row--bottom a,
.teeze-header-row--top .primary-menu a,
.teeze-header-row--main .primary-menu a,
.teeze-header-row--bottom .primary-menu a,
.teeze-header-row--top .top-menu a,
.teeze-header-row--main .top-menu a,
.teeze-header-row--bottom .top-menu a {
	color: inherit;
}

.teeze-header-row__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	min-height: 42px;
}

.teeze-header-row--bottom.teeze-header-row--columns-1 .teeze-header-row__inner {
	grid-template-columns: minmax(0, 1fr);
}

.teeze-header-row--bottom.teeze-header-row--columns-2 .teeze-header-row__inner {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.teeze-header-row--bottom.teeze-header-row--columns-1 .teeze-header-slot--empty,
.teeze-header-row--bottom.teeze-header-row--columns-2 .teeze-header-slot--empty {
	display: none;
}

.teeze-header-row--bottom.teeze-header-row--columns-1 .teeze-header-slot--filled {
	grid-column: 1 / -1;
}

.teeze-header-row--main .teeze-header-row__inner {
	min-height: var(--tm-header-main-height, 82px);
	padding-top: 12px;
	padding-bottom: 12px;
}

.teeze-header-row--bottom .teeze-header-row__inner {
	min-height: var(--tm-header-bottom-height, 48px);
}

.teeze-header-slot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	min-width: 0;
	max-width: 100%;
}

.teeze-header-slot--center {
	justify-content: center;
}

.teeze-header-slot--right {
	justify-content: flex-end;
}

.teeze-header-row--bottom .teeze-header-slot--has-menu .main-navigation {
	width: 100%;
}

.teeze-header-row--bottom.teeze-header-row--columns-1 .teeze-header-slot--has-menu,
.teeze-header-row--bottom.teeze-header-row--columns-1 .teeze-header-slot--has-menu .main-navigation,
.teeze-header-row--bottom.teeze-header-row--columns-1 .teeze-header-slot--has-menu .primary-menu {
	flex: 1 1 100%;
	width: 100%;
	min-width: 100%;
}

.teeze-header-row--bottom .teeze-header-slot--center .primary-menu {
	justify-content: center;
}

.teeze-header-row--bottom.teeze-header-row--columns-1 .teeze-header-slot--center .primary-menu {
	justify-content: flex-start;
}

.teeze-header-row--bottom .teeze-header-slot--left .primary-menu {
	justify-content: flex-start;
}

.teeze-header-row--bottom .teeze-header-slot--right .primary-menu {
	justify-content: flex-end;
}

.teeze-header-row--bottom .primary-menu {
	background: transparent;
}

.teeze-header-element {
	flex: 0 0 auto;
	max-width: 100%;
}

.teeze-header-search {
	flex: 1 1 360px;
	max-width: 620px;
}

.teeze-header-html {
	color: inherit;
}

.teeze-header-contact,
.teeze-header-social {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.teeze-header-social a {
	display: inline-grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
	color: inherit;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}

.teeze-header-button,
.teeze-header-vertical,
.teeze-header-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 14px;
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius);
	background: var(--tm-primary);
	color: #fff;
	font-weight: 800;
	text-decoration: none;
}

.teeze-header-button--outline {
	background: transparent;
	color: var(--tm-primary);
	box-shadow: inset 0 0 0 1px currentColor;
}

.teeze-header-button--plain {
	min-height: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
}

.teeze-header-icon,
.teeze-header-vertical {
	background: #fff;
	color: var(--tm-text);
	cursor: pointer;
}

.teeze-header-placeholder {
	display: inline-flex;
	min-height: 32px;
	align-items: center;
	padding: 0 10px;
	border-radius: 6px;
	background: #e8eef0;
	color: var(--tm-muted);
	font-size: 12px;
	font-weight: 800;
}

.header-main {
	display: grid;
	grid-template-columns: minmax(160px, 240px) minmax(220px, 1fr) auto;
	align-items: center;
	gap: 24px;
	padding: 18px 0;
}

.site-title {
	margin: 0;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.1;
}

.site-title a {
	color: var(--tm-text);
	text-decoration: none;
}

.custom-logo-link img {
	max-height: 72px;
	width: auto;
}

.search-form,
.woocommerce-product-search {
	display: flex;
	width: 100%;
	overflow: hidden;
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius);
	background: #fff;
}

.search-form label,
.woocommerce-product-search label {
	flex: 1;
}

.search-field {
	width: 100%;
	min-height: 44px;
	padding: 0 14px;
	border: 0;
	outline: 0;
}

.search-submit,
.woocommerce-product-search button,
.wp-element-button,
.button,
button,
input[type="submit"] {
	min-height: 44px;
	padding: 0 18px;
	border: 0;
	border-radius: var(--tm-radius);
	background: var(--tm-primary);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.search-form .search-submit,
.woocommerce-product-search button {
	border-radius: 0;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.account-link,
.header-cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 12px;
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius);
	color: var(--tm-text);
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.header-cart strong {
	display: inline-grid;
	min-width: 22px;
	height: 22px;
	margin-left: 8px;
	place-items: center;
	border-radius: 999px;
	background: var(--tm-accent);
	color: #172026;
	font-size: 12px;
}

.menu-toggle {
	display: none;
	width: 44px;
	padding: 0;
	border: 1px solid var(--tm-line);
	background: #fff;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--tm-text);
}

.main-navigation {
	border-top: 0;
	max-width: 100%;
	min-width: 0;
}

.primary-menu {
	position: relative;
	max-width: 100%;
	min-height: 48px;
	gap: 0;
}

.primary-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 48px;
	padding-right: 10px;
	padding-left: 10px;
	color: inherit;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.primary-menu li {
	position: relative;
	max-width: 100%;
}

.primary-menu .sub-menu,
.primary-menu .children {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 80;
	display: none;
	width: max-content;
	min-width: 220px;
	max-width: min(320px, calc(100vw - 32px));
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background: #fff;
	color: var(--tm-text);
	border: 1px solid var(--tm-line);
	box-shadow: var(--tm-shadow);
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu,
.primary-menu li:hover > .children,
.primary-menu li:focus-within > .children {
	display: block;
}

.primary-menu .sub-menu a,
.primary-menu .children a {
	display: flex;
	width: 100%;
	min-height: 40px;
	padding: 8px 14px;
	color: inherit;
	white-space: normal;
}

.site-main {
	padding-top: 36px;
	padding-bottom: 56px;
}

.store-hero {
	padding: 54px 0;
	background:
		linear-gradient(135deg, rgba(15, 118, 110, 0.95), rgba(23, 32, 38, 0.9)),
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 1px, transparent 1px, transparent 16px);
	color: #fff;
}

.store-hero__inner {
	display: grid;
	min-height: 320px;
	align-items: center;
}

.store-hero__content {
	max-width: 680px;
}

.eyebrow {
	margin: 0 0 12px;
	color: #fde68a;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.store-hero h1 {
	margin: 0 0 16px;
	font-size: clamp(42px, 7vw, 76px);
	line-height: 1;
}

.store-hero p {
	max-width: 590px;
	margin-top: 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 18px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.button-light {
	background: #fff;
	color: var(--tm-primary-dark);
}

.button-ghost {
	background: transparent;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
	color: #fff;
}

.home-section {
	padding: 42px 0 0;
}

.teeze-page-builder {
	margin: -36px 0 -56px;
}

.teeze-builder-section {
	padding: var(--tm-section-padding-desktop, 56px) 0;
	background: var(--tm-bg);
	background-position: center;
	background-size: cover;
}

.teeze-builder-section--light {
	background: #fff;
}

.teeze-builder-section--accent {
	background: #fff7e6;
}

.teeze-builder-section--dark {
	background: #172026;
	color: #fff;
}

.teeze-builder-section + .teeze-builder-section {
	border-top: 1px solid var(--tm-line);
}

.teeze-builder-section__inner {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 28px;
	align-items: center;
}

.teeze-builder-column {
	display: grid;
	gap: 18px;
}

.teeze-builder-column--align-top {
	align-self: start;
}

.teeze-builder-column--align-middle {
	align-self: center;
}

.teeze-builder-column--align-bottom {
	align-self: end;
}

.teeze-builder-column--1-1 {
	grid-column: span 12;
}

.teeze-builder-column--1-2 {
	grid-column: span 6;
}

.teeze-builder-column--1-3 {
	grid-column: span 4;
}

.teeze-builder-heading {
	margin: 0;
	font-size: clamp(32px, 5vw, 58px);
	line-height: 1.06;
}

.teeze-builder-heading.teeze-builder-size-small {
	font-size: 26px;
}

.teeze-builder-heading.teeze-builder-size-normal {
	font-size: 34px;
}

.teeze-builder-heading.teeze-builder-size-hero {
	font-size: clamp(46px, 8vw, 82px);
}

.teeze-builder-text {
	color: var(--tm-muted);
	font-size: 18px;
}

.teeze-builder-text.teeze-builder-size-small {
	font-size: 15px;
}

.teeze-builder-text.teeze-builder-size-large {
	font-size: 21px;
}

.teeze-builder-text.teeze-builder-size-hero {
	font-size: 24px;
}

.teeze-builder-align-center {
	text-align: center;
}

.teeze-builder-align-right {
	text-align: right;
}

.teeze-builder-align-center.teeze-builder-button,
.teeze-builder-align-center.teeze-builder-image {
	justify-self: center;
}

.teeze-builder-align-right.teeze-builder-button,
.teeze-builder-align-right.teeze-builder-image {
	justify-self: end;
}

.teeze-builder-section--dark .teeze-builder-text {
	color: rgba(255, 255, 255, 0.78);
}

.teeze-builder-text > *:first-child {
	margin-top: 0;
}

.teeze-builder-text > *:last-child {
	margin-bottom: 0;
}

.teeze-builder-image {
	margin: 0;
	overflow: hidden;
	border-radius: var(--tm-radius);
	box-shadow: var(--tm-shadow);
}

.teeze-builder-image.teeze-builder-size-medium {
	max-width: 720px;
}

.teeze-builder-image.teeze-builder-size-small {
	max-width: 420px;
}

.teeze-builder-image img {
	width: 100%;
}

.teeze-builder-button {
	justify-self: start;
	text-decoration: none;
}

.teeze-builder-button--light {
	background: #fff;
	color: var(--tm-primary-dark);
}

.teeze-builder-button--outline {
	background: transparent;
	box-shadow: inset 0 0 0 2px currentColor;
	color: var(--tm-primary);
}

.teeze-builder-section--dark .teeze-builder-button--outline {
	color: #fff;
}

.teeze-builder-banner {
	display: grid;
	min-height: var(--tm-banner-height, 360px);
	align-items: end;
	overflow: hidden;
	padding: 28px;
	border-radius: var(--tm-radius);
	background:
		linear-gradient(180deg, rgba(23, 32, 38, 0.08), rgba(23, 32, 38, 0.82)),
		#334047;
	background-position: center;
	background-size: cover;
	color: #fff;
	box-shadow: var(--tm-shadow);
}

.teeze-builder-banner__content {
	max-width: 520px;
}

.teeze-builder-banner h2 {
	margin: 0 0 10px;
	font-size: 36px;
	line-height: 1.08;
}

.teeze-builder-banner p {
	margin: 0 0 18px;
	color: rgba(255, 255, 255, 0.82);
}

.section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.section-heading h2 {
	margin: 0;
	font-size: 30px;
	line-height: 1.15;
}

.content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 32px;
}

.no-sidebar .content-layout,
.narrow-content {
	display: block;
	max-width: 900px;
}

.page-header {
	margin-bottom: 24px;
}

.page-title,
.entry-title {
	margin: 0 0 16px;
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.12;
}

.archive-description {
	color: var(--tm-muted);
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.post-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card,
.page-entry,
.single-entry,
.no-results,
.error-404,
.comments-area,
.widget {
	background: var(--tm-surface);
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius);
	box-shadow: var(--tm-shadow);
}

.post-card {
	overflow: hidden;
}

.post-card__body,
.page-entry,
.single-entry,
.no-results,
.error-404,
.comments-area,
.widget {
	padding: 24px;
}

.post-thumbnail {
	display: block;
	overflow: hidden;
	background: #e8eef0;
}

.post-card .post-thumbnail {
	aspect-ratio: 4 / 3;
}

.post-card .post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 180ms ease;
}

.post-card:hover .post-thumbnail img {
	transform: scale(1.035);
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px;
	color: var(--tm-muted);
	font-size: 13px;
}

.post-card .entry-title {
	font-size: 22px;
}

.entry-title a {
	color: var(--tm-text);
	text-decoration: none;
}

.entry-content > *:first-child,
.entry-summary > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child,
.entry-summary > *:last-child {
	margin-bottom: 0;
}

.read-more {
	display: inline-flex;
	margin-top: 16px;
	font-weight: 800;
}

.widget-area {
	display: grid;
	gap: 18px;
	align-content: start;
}

.widget-title {
	margin: 0 0 14px;
	font-size: 18px;
}

.widget ul {
	margin: 0;
	padding-left: 18px;
}

.navigation.pagination {
	margin-top: 30px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius);
	background: #fff;
	color: var(--tm-text);
	font-weight: 700;
}

.page-numbers.current {
	background: var(--tm-primary);
	color: #fff;
}

.site-footer {
	background: #172026;
	color: #d9e1e6;
}

.site-footer a {
	color: #fff;
}

.footer-widgets {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	padding: 42px 0;
}

.footer-column .widget {
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 18px 0;
	font-size: 14px;
}

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product {
	width: auto !important;
	margin: 0 !important;
	padding: 14px;
	background: #fff;
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius);
	box-shadow: var(--tm-shadow);
}

.woocommerce ul.products li.product a img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 6px;
}

.woocommerce span.onsale {
	min-height: 0;
	padding: 5px 9px;
	border-radius: 999px;
	background: var(--tm-danger);
	line-height: 1.2;
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
	gap: 36px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	float: none;
	width: auto;
}

.woocommerce div.product .summary {
	padding: 24px;
	background: #fff;
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius);
	box-shadow: var(--tm-shadow);
}

@media (max-width: 960px) {
	.header-main {
		grid-template-columns: 1fr auto;
	}

	.header-search {
		grid-column: 1 / -1;
		order: 3;
	}

	.menu-toggle {
		display: inline-block;
	}

	.teeze-header-desktop {
		display: none;
	}

	.teeze-header-mobile {
		display: block;
	}

	.teeze-header-mobile .main-navigation {
		display: none;
		width: 100%;
	}

	.teeze-header-mobile .main-navigation.is-open {
		display: block;
	}

	.teeze-header-row__inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
	}

	.teeze-header-row--main .teeze-header-row__inner {
		min-height: 64px;
	}

	.primary-menu {
		display: grid;
		align-items: stretch;
		gap: 0;
		padding: 8px 0;
	}

	.primary-menu a {
		min-height: 42px;
		white-space: normal;
	}

	.primary-menu .sub-menu,
	.primary-menu .children {
		position: static;
		display: block;
		width: 100%;
		max-width: none;
		padding: 0 0 0 16px;
		border: 0;
		box-shadow: none;
	}

	.content-layout,
	.woocommerce div.product {
		grid-template-columns: 1fr;
	}

	.teeze-builder-column--1-1,
	.teeze-builder-column--1-2,
	.teeze-builder-column--1-3 {
		grid-column: span 12;
	}

	.woocommerce ul.products,
	.post-grid--three,
	.footer-widgets {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.container {
		width: min(100% - 24px, var(--tm-container-width));
	}

	body.teeze-layout-framed .site {
		width: 100%;
		margin: 0;
		border-radius: 0;
	}

	.top-bar__inner,
	.footer-bottom__inner,
	.header-actions {
		align-items: flex-start;
	}

	.top-bar__inner,
	.footer-bottom__inner {
		flex-direction: column;
		gap: 8px;
		padding: 10px 0;
	}

	.header-main {
		gap: 14px;
		padding: 14px 0;
	}

	.account-link {
		display: none;
	}

	.post-grid,
	.post-grid--three,
	.woocommerce ul.products,
	.footer-widgets {
		grid-template-columns: 1fr;
	}

	.page-title,
	.entry-title {
		font-size: 32px;
	}

	.teeze-builder-section {
		padding: var(--tm-section-padding-mobile, 38px) 0;
	}

	.teeze-builder-heading {
		font-size: 34px;
	}

	.teeze-builder-banner {
		min-height: 300px;
		padding: 22px;
	}
}
