/**
 * Wisa Homepage Styles
 *
 * Based on Paper design. Uses Anek Latin (headings) + Inter (body),
 * both already loaded by Blocksy/Elementor.
 */

/* ==========================================================================
   Variables
   ========================================================================== */

.wisa-home {
	--wisa-navy: #06107A;
	--wisa-cyan: #009EE3;
	--wisa-bg: #F7F5F2;
	--wisa-white: #ffffff;
	--wisa-text: #1A1A2E;
	--wisa-muted: #6B7280;
	--wisa-font-display: 'Anek Latin', sans-serif;
	--wisa-font-body: 'Inter', sans-serif;
	--wisa-max-width: 1520px;
}

.wisa-home {
	background-color: var(--wisa-white);
}

/* Contained sections: max-width + centered */
.wisa-bestsellers {
	max-width: var(--wisa-max-width);
	margin-left: auto;
	margin-right: auto;
}

/* Full-width sections: break out of any parent container */
.wisa-about {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

/* Constrain inner content to site width */
.wisa-about__content {
	max-width: var(--wisa-max-width);
	margin-left: auto;
	margin-right: auto;
}

/* ==========================================================================
   Hero Section (#1-4)
   ========================================================================== */

.wisa-hero {
	display: flex;
	min-height: 520px;
	max-width: var(--wisa-max-width);
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
	background-color: #0D0A30;
	position: relative;
}

.wisa-hero__content {
	flex: 0 0 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 56px 64px;
	background: linear-gradient(135deg, #1B1464, #0D0A30);
	gap: 24px;
}

.wisa-hero__label {
	display: flex;
	align-items: center;
	gap: 12px;
}

.wisa-hero__label-line {
	width: 32px;
	height: 2px;
	background-color: #4ECDC4;
}

.wisa-hero__label-text {
	font-family: var(--wisa-font-body);
	font-size: 13px;
	font-weight: 600;
	color: #4ECDC4;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wisa-hero__heading {
	font-family: var(--wisa-font-display);
	font-size: 52px;
	font-weight: 800;
	color: #FFFFFF;
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin: 0;
	max-width: 580px;
}

.wisa-hero__subtitle {
	font-family: var(--wisa-font-body);
	font-size: 16px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.625;
	margin: 0;
	max-width: 460px;
}

/* Right column */
.wisa-hero__right {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.wisa-hero__history {
	flex: 1;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px 24px 72px;
	overflow: hidden;
	text-decoration: none;
	color: var(--wisa-white);
}

.wisa-hero__history:hover,
.wisa-hero__history:focus {
	color: var(--wisa-white);
}

.wisa-hero__history-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wisa-hero__history-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(5, 13, 98, 0.7) 0%, rgba(5, 13, 98, 0.1) 60%);
}

.wisa-hero__history-text {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.wisa-hero__history-text strong {
	font-family: var(--wisa-font-display);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.wisa-hero__history-text span {
	font-family: var(--wisa-font-body);
	font-size: 13px;
	font-weight: 500;
	opacity: 0.85;
}

/* Floating CTA bar */
.wisa-hero__floating-cta {
	display: flex;
	position: absolute;
	bottom: -32px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	border-radius: 0;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.wisa-hero__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 64px;
	padding: 0 48px;
	font-family: var(--wisa-font-body);
	font-size: 15px;
	font-weight: 700;
	color: var(--wisa-white);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.wisa-hero__btn:hover {
	color: var(--wisa-white);
}

.wisa-hero__btn svg {
	transition: transform 0.2s ease;
}

.wisa-hero__btn:hover svg {
	transform: translateX(4px);
}

.wisa-hero__btn--wv {
	background-color: #469ddd;
}

.wisa-hero__btn--eg {
	background-color: #1e4b94;
}

/* ==========================================================================
   Discover Wrapper (Categories + Inspiration)
   ========================================================================== */

.wisa-discover {
	background-color: #f8f9fa;
	border-radius: 16px;
	padding: 64px 0 0;
}

/* ==========================================================================
   Categories Section — Photo Cards
   ========================================================================== */

.wisa-cat-cards {
	padding: 0 80px 48px;
	display: flex;
	flex-direction: column;
	gap: 28px;
	max-width: var(--wisa-max-width);
	margin-left: auto;
	margin-right: auto;
}

.wisa-cat-cards__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.wisa-cat-cards__title {
	font-family: var(--wisa-font-display);
	font-size: 32px;
	font-weight: 700;
	color: var(--wisa-navy);
	line-height: 1.125;
	letter-spacing: -0.02em;
	margin: 0;
}

.wisa-cat-cards__link {
	font-family: var(--wisa-font-body);
	font-size: 13px;
	font-weight: 600;
	color: #4ECDC4;
	text-decoration: none;
}

.wisa-cat-cards__link:hover {
	text-decoration: underline;
}

.wisa-cat-cards__grid {
	display: flex;
	gap: 14px;
}

.wisa-cat-cards__card {
	flex: 1;
	display: flex;
	flex-direction: column;
	border-radius: 12px;
	overflow: hidden;
	background: #FFFFFF;
	text-decoration: none;
	transition: transform 0.2s;
	border-bottom: 4px solid #1B1464;
}


.wisa-cat-cards__card:hover {
	transform: scale(1.03);
}

.wisa-cat-cards__card-image {
	width: 100%;
	height: 240px;
	object-fit: cover;
	display: block;
}

.wisa-cat-cards__card-name {
	font-family: var(--wisa-font-body);
	font-size: 14px;
	font-weight: 600;
	color: #1B1464;
	padding: 14px 16px;
}

/* ==========================================================================
   Inspiration Section — Slider
   ========================================================================== */

.wisa-insp-slider {
	padding: 24px 0 64px 80px;
	display: flex;
	flex-direction: column;
	gap: 36px;
	max-width: var(--wisa-max-width);
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}

.wisa-insp-slider__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding-right: 80px;
}

.wisa-insp-slider__label {
	display: block;
	font-family: var(--wisa-font-body);
	font-size: 13px;
	font-weight: 600;
	color: #4ECDC4;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.wisa-insp-slider__title {
	font-family: var(--wisa-font-display);
	font-size: 32px;
	font-weight: 700;
	color: var(--wisa-navy);
	line-height: 1.125;
	letter-spacing: -0.02em;
	margin: 0;
}

.wisa-insp-slider__nav {
	display: flex;
	align-items: center;
	gap: 12px;
}

.wisa-insp-slider__all-link {
	font-family: var(--wisa-font-body);
	font-size: 13px;
	font-weight: 600;
	color: #4ECDC4;
	text-decoration: none;
	margin-right: 4px;
}

.wisa-insp-slider__all-link:hover {
	text-decoration: underline;
}

.wisa-insp-slider__all-link--mobile {
	display: none;
}

.wisa-insp-slider__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1.5px solid rgba(13, 10, 48, 0.15);
	background: none;
	color: #0D0A30;
	cursor: pointer;
	transition: background-color 0.2s, color 0.2s, border-color 0.2s;
	flex-shrink: 0;
	padding: 0;
}

.wisa-insp-slider__btn:hover {
	background-color: rgba(13, 10, 48, 0.05);
}

.wisa-insp-slider__btn--next {
	background-color: #1B1464;
	border-color: #1B1464;
	color: #FFFFFF;
}

.wisa-insp-slider__btn--next:hover {
	background-color: #06107A;
}

/* Slider track */
.wisa-insp-slider__track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 4px;
}

.wisa-insp-slider__track::-webkit-scrollbar {
	display: none;
}

/* Cards */
.wisa-insp-slider__card {
	flex: 0 0 380px;
	min-height: 380px;
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-color: var(--wisa-navy);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	text-decoration: none;
	scroll-snap-align: start;
	transition: transform 0.2s;
}

.wisa-insp-slider__card:hover {
	transform: scale(1.02);
}

.wisa-insp-slider__card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(13, 10, 48, 0) 40%, rgba(13, 10, 48, 0.75) 100%);
	pointer-events: none;
}

.wisa-insp-slider__card-tag {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 6px 14px;
	border-radius: 20px;
	background-color: rgba(255, 255, 255, 0.9);
	font-family: var(--wisa-font-body);
	font-size: 12px;
	font-weight: 600;
	color: #0D0A30;
	z-index: 1;
}

.wisa-insp-slider__card-content {
	position: relative;
	z-index: 1;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wisa-insp-slider__card-title {
	font-family: var(--wisa-font-display);
	font-size: 24px;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 1.25;
	margin: 0;
}

.wisa-insp-slider__card-text {
	font-family: var(--wisa-font-body);
	font-size: 13px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.55;
	margin: 0;
}

.wisa-insp-slider__card-link {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: var(--wisa-font-body);
	font-size: 13px;
	font-weight: 600;
	color: #4ECDC4;
	margin-top: 4px;
}

/* ==========================================================================
   About Section (#8)
   ========================================================================== */

.wisa-about {
	position: relative;
	min-height: 400px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-color: var(--wisa-navy);
}

.wisa-about__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(5, 13, 98, 0.92) 0%, rgba(5, 13, 98, 0.7) 50%, rgba(5, 13, 98, 0.4) 100%);
}

.wisa-about__content {
	position: relative;
	z-index: 1;
	padding: 64px 80px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	gap: 20px;
	width: 100%;
	box-sizing: border-box;
}

.wisa-about__label {
	font-family: var(--wisa-font-body);
	font-size: 13px;
	font-weight: 600;
	color: #4ECDC4;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wisa-about__heading {
	font-family: var(--wisa-font-display);
	font-size: 42px;
	font-weight: 800;
	color: var(--wisa-white);
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0;
	max-width: 580px;
}

.wisa-about__text {
	font-family: var(--wisa-font-body);
	font-size: 16px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.625;
	margin: 0;
	max-width: 520px;
}

.wisa-about__video-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 24px;
	border-radius: 10px;
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	color: var(--wisa-white);
	font-family: var(--wisa-font-body);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	width: fit-content;
	transition: border-color 0.2s;
}

.wisa-about__video-btn:hover {
	border-color: rgba(255, 255, 255, 0.6);
	color: var(--wisa-white);
	cursor: pointer;
}

.wisa-about__video-btn {
	background: none;
}

.wisa-about__video-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
}

.wisa-about__video-frame {
	position: relative;
	width: 90vw;
	max-width: 960px;
	aspect-ratio: 16 / 9;
}

.wisa-about__video-close {
	position: absolute;
	top: -40px;
	right: 0;
	background: none;
	border: none;
	color: var(--wisa-white);
	font-size: 32px;
	cursor: pointer;
	line-height: 1;
}

/* ==========================================================================
   Bestsellers Section (#9)
   ========================================================================== */

.wisa-bestsellers {
	padding: 72px 80px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	background-color: #f8f9fa;
}

.wisa-bestsellers [data-products] .product {
	border-bottom: 4px solid #1B1464;
	border-radius: 12px;
	overflow: hidden;
}


.wisa-bestsellers__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.wisa-bestsellers__label {
	display: block;
	font-family: var(--wisa-font-body);
	font-size: 13px;
	font-weight: 600;
	color: #4ECDC4;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.wisa-bestsellers__title {
	font-family: var(--wisa-font-display);
	font-size: 32px;
	font-weight: 700;
	color: var(--wisa-navy);
	line-height: 1.125;
	letter-spacing: -0.02em;
	margin: 0;
}

.wisa-bestsellers__link {
	font-family: var(--wisa-font-body);
	font-size: 13px;
	font-weight: 600;
	color: #4ECDC4;
	text-decoration: none;
}

/* ==========================================================================
   USPs Section — Bento Grid
   ========================================================================== */

.wisa-usps-bento {
	padding: 72px 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	background-color: #f8f9fa;
	max-width: var(--wisa-max-width);
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.wisa-usps-bento__header {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.wisa-usps-bento__label {
	font-family: var(--wisa-font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #4ECDC4;
}

.wisa-usps-bento__heading {
	font-family: var(--wisa-font-display);
	font-size: 32px;
	font-weight: 700;
	color: #06107a;
	letter-spacing: -0.02em;
	line-height: 1.125;
	margin: 0;
}

/* Grid layout */
.wisa-usps-bento__grid {
	width: 100%;
	display: flex;
	gap: 16px;
	min-height: 500px;
}

.wisa-usps-bento__right {
	flex: 1.4;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.wisa-usps-bento__bottom-row {
	display: flex;
	gap: 16px;
	flex: 1;
}

/* Card base */
.wisa-usps-bento__card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.wisa-usps-bento__card--tall {
	flex: 1;
}

.wisa-usps-bento__card--wide {
	flex: 1;
}

.wisa-usps-bento__card--small {
	flex: 1;
}

.wisa-usps-bento__card-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wisa-usps-bento__card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(13, 10, 48, 0) 20%, rgba(13, 10, 48, 0.85) 100%);
}

.wisa-usps-bento__card-content {
	position: relative;
	z-index: 1;
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.wisa-usps-bento__card-num {
	font-family: var(--wisa-font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #4ECDC4;
}

.wisa-usps-bento__card-title {
	font-family: var(--wisa-font-display);
	font-size: 26px;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 1.2;
	margin: 0;
}

.wisa-usps-bento__card-text {
	font-family: var(--wisa-font-body);
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.55;
	margin: 0;
}

/* Small cards: slightly smaller text */
.wisa-usps-bento__card--small .wisa-usps-bento__card-title {
	font-size: 22px;
}

.wisa-usps-bento__card--small .wisa-usps-bento__card-text {
	font-size: 13px;
}

.wisa-usps-bento__card--small .wisa-usps-bento__card-content {
	padding: 24px;
}

/* ==========================================================================
   Responsive — Tablet (max 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
	.wisa-hero {
		flex-direction: column;
		min-height: auto;
	}

	.wisa-hero__content {
		flex: none;
		padding: 48px 40px;
	}

	.wisa-hero__heading {
		font-size: 40px;
		line-height: 1.08;
	}

	.wisa-hero__history {
		min-height: 240px;
	}

	.wisa-hero__floating-cta {
		border-radius: 0;
	}

	.wisa-hero__btn {
		padding: 0 32px;
		height: 56px;
		font-size: 14px;
	}

	/* Discover Wrapper — Tablet */
	.wisa-discover {
		padding: 48px 0 0;
	}

	/* Categories Cards — Tablet */
	.wisa-cat-cards {
		padding: 0 40px 40px;
	}

	.wisa-cat-cards__grid {
		flex-wrap: wrap;
		gap: 12px;
	}

	.wisa-cat-cards__card {
		flex: 0 0 calc(33.333% - 8px);
	}

	.wisa-cat-cards__card-image {
		height: 140px;
	}

	/* Inspiration Slider — Tablet */
	.wisa-insp-slider {
		padding: 16px 0 48px 40px;
		gap: 28px;
	}

	.wisa-insp-slider__header {
		padding-right: 40px;
	}

	.wisa-insp-slider__title {
		font-size: 28px;
	}

	.wisa-insp-slider__all-link--desktop {
		display: none;
	}

	.wisa-insp-slider__all-link--mobile {
		display: block;
		margin-top: 8px;
	}

	.wisa-insp-slider__btn {
		width: 36px;
		height: 36px;
	}

	.wisa-insp-slider__card {
		flex: 0 0 320px;
		min-height: 340px;
		border-radius: 14px;
	}

	.wisa-insp-slider__track {
		gap: 16px;
	}

	.wisa-insp-slider__card-title {
		font-size: 22px;
	}

	.wisa-insp-slider__card-content {
		padding: 20px;
	}

	.wisa-about__content {
		padding: 56px 40px;
	}

	.wisa-about__heading {
		font-size: 34px;
	}

	.wisa-bestsellers {
		padding: 48px 40px;
	}

	/* USPs Bento — Tablet */
	.wisa-usps-bento {
		padding: 48px 40px;
	}

	.wisa-usps-bento__heading {
		font-size: 28px;
	}

	.wisa-usps-bento__grid {
		flex-direction: column;
		min-height: auto;
	}

	.wisa-usps-bento__grid > .wisa-usps-bento__card--tall {
		min-height: 260px;
	}

	.wisa-usps-bento__right {
		flex: none;
	}

	.wisa-usps-bento__card--wide {
		min-height: 220px;
	}

	.wisa-usps-bento__card--small {
		min-height: 220px;
	}
}

/* ==========================================================================
   Responsive — Mobile (max 767px)
   ========================================================================== */

@media (max-width: 767px) {
	.wisa-hero__content {
		padding: 32px 20px;
		background: linear-gradient(135deg, #1B1464, #0D0A30);
	}

	.wisa-hero__heading {
		font-size: 32px;
		line-height: 1.1;
	}

	.wisa-hero__subtitle {
		font-size: 14px;
	}

	.wisa-hero__history {
		min-height: 200px;
	}

	.wisa-hero__floating-cta {
		flex-direction: column;
		left: 20px;
		right: 20px;
		transform: none;
		border-radius: 0;
		bottom: -52px;
	}

	.wisa-hero__btn {
		width: 100%;
		height: 52px;
		padding: 0 24px;
		font-size: 14px;
	}

	/* Discover Wrapper — Mobile */
	.wisa-discover {
		padding: 40px 0 0;
	}

	/* Categories Cards — Mobile */
	.wisa-cat-cards {
		padding: 0 20px 32px;
		gap: 20px;
	}

	.wisa-cat-cards__title {
		font-size: 24px;
	}

	.wisa-cat-cards__grid {
		flex-wrap: wrap;
		gap: 10px;
	}

	.wisa-cat-cards__card {
		flex: 0 0 calc(50% - 5px);
		border-radius: 10px;
	}

	.wisa-cat-cards__card-image {
		height: 120px;
	}

	.wisa-cat-cards__card-name {
		font-size: 12px;
		padding: 10px 12px;
	}

	/* Inspiration Slider — Mobile */
	.wisa-insp-slider {
		padding: 12px 0 40px 20px;
		gap: 24px;
	}

	.wisa-insp-slider__header {
		padding-right: 20px;
	}

	.wisa-insp-slider__title {
		font-size: 24px;
	}

	.wisa-insp-slider__btn {
		width: 32px;
		height: 32px;
	}

	.wisa-insp-slider__card {
		flex: 0 0 300px;
		min-height: 320px;
		border-radius: 12px;
	}

	.wisa-insp-slider__track {
		gap: 14px;
	}

	.wisa-insp-slider__card-title {
		font-size: 20px;
	}

	.wisa-insp-slider__card-content {
		padding: 18px;
		gap: 5px;
	}

	.wisa-insp-slider__card-tag {
		top: 12px;
		left: 12px;
		padding: 5px 12px;
		font-size: 11px;
	}

	.wisa-about {
		min-height: auto;
	}

	.wisa-about__content {
		padding: 48px 20px;
	}

	.wisa-about__heading {
		font-size: 28px;
	}

	.wisa-about__text {
		font-size: 14px;
	}

	.wisa-bestsellers {
		padding: 32px 20px;
		gap: 24px;
	}

	.wisa-bestsellers__title {
		font-size: 24px;
	}

	/* USPs Bento — Mobile */
	.wisa-usps-bento {
		padding: 40px 20px;
		gap: 28px;
	}

	.wisa-usps-bento__heading {
		font-size: 24px;
	}

	.wisa-usps-bento__grid {
		flex-direction: column;
		min-height: auto;
	}

	.wisa-usps-bento__grid > .wisa-usps-bento__card--tall {
		min-height: 220px;
	}

	.wisa-usps-bento__right {
		flex: none;
	}

	.wisa-usps-bento__bottom-row {
		flex-direction: column;
	}

	.wisa-usps-bento__card--wide {
		min-height: 200px;
	}

	.wisa-usps-bento__card--small {
		min-height: 200px;
	}

	.wisa-usps-bento__card-title {
		font-size: 20px;
	}

	.wisa-usps-bento__card--small .wisa-usps-bento__card-title {
		font-size: 20px;
	}

	.wisa-usps-bento__card-content {
		padding: 20px;
	}
}

/* ==========================================================================
   Responsive — Large screens (min 1500px)
   ========================================================================== */

/* Large screens: no special overrides needed */
