@charset "utf-8";
/**
 * Tech Tips category landing (/category/tech-tips/)
 */

body.foley-tech-tips-landing .foley-tt-band {
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
	padding-top: clamp(2.5rem, 5vw, 4rem);
}

body.foley-tech-tips-landing .foley-tt-band--white {
	background-color: #fff;
}

body.foley-tech-tips-landing .foley-tt-brands.foley-tt-band--white {
	border-top: 1px solid #ececec;
}

body.foley-tech-tips-landing .foley-tt-band--gray {
	background-color: #f4f4f4;
}

body.foley-tech-tips-landing .foley-tt-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: var(--max_width_wide, 87.5rem);
	padding-left: var(--gutter_width, 1.25rem);
	padding-right: var(--gutter_width, 1.25rem);
}

/* Breadcrumbs */
body.foley-tech-tips-landing .foley-tt-breadcrumbs {
	margin-bottom: var(--space_normal, 1rem);
	text-align: center;
}

body.foley-tech-tips-landing .foley-tt-breadcrumbs .breadcrumbs,
body.foley-tech-tips-landing .foley-tt-breadcrumbs-nav {
	color: #777;
	font-size: 0.8125rem;
}

body.foley-tech-tips-landing .foley-tt-breadcrumbs--simple {
	color: #777;
	font-size: 0.8125rem;
	margin: 0 0 var(--space_normal, 1rem);
	text-align: center;
}

body.foley-tech-tips-landing .foley-tt-breadcrumbs a {
	color: inherit;
}

/* Page title */
body.foley-tech-tips-landing .foley-tt-page-title {
	font-family: var(--heading_font, "Roboto Condensed", sans-serif);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	margin: 0 0 var(--space_big, 2rem);
	text-align: center;
	text-transform: uppercase;
}

/* Hero */
body.foley-tech-tips-landing .foley-tt-hero-grid {
	display: grid;
	gap: var(--space_big, 2rem);
}

@media (min-width: 56.25em) {

	body.foley-tech-tips-landing .foley-tt-hero-grid {
		align-items: center;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}
}

body.foley-tech-tips-landing .foley-tt-hero-media {
	border-radius: 4px;
	overflow: hidden;
}

body.foley-tech-tips-landing .foley-tt-hero-img {
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

body.foley-tech-tips-landing .foley-tt-hero-heading {
	font-family: var(--heading_font, "Roboto Condensed", sans-serif);
	font-size: clamp(1.125rem, 2.5vw, 1.5rem);
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.35;
	margin: 0 0 var(--space_normal, 1rem);
	text-transform: uppercase;
}

body.foley-tech-tips-landing .foley-tt-hero-body {
	font-size: 1rem;
	line-height: 1.6;
}

body.foley-tech-tips-landing .foley-tt-hero-body p {
	margin: 0 0 1em;
}

body.foley-tech-tips-landing .foley-tt-hero-body p:last-child {
	margin-bottom: 0;
}

/* Section titles */
body.foley-tech-tips-landing .foley-tt-section-title {
	font-family: var(--heading_font, "Roboto Condensed", sans-serif);
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	margin: 0 0 var(--space_normal, 1rem);
	text-transform: uppercase;
}

body.foley-tech-tips-landing .foley-tt-section-title--center {
	text-align: center;
}

body.foley-tech-tips-landing .foley-tt-section-title--left {
	text-align: left;
}

body.foley-tech-tips-landing .foley-tt-popular .foley-tt-section-title {
	font-size: clamp(1.5rem, 3vw, 2.125rem);
	margin-bottom: 1.25rem;
}

body.foley-tech-tips-landing .foley-tt-section-lede {
	color: #444;
	font-size: 1rem;
	line-height: 1.55;
	margin: 0 0 var(--space_big, 2rem);
	max-width: 48rem;
}

/* CSS-only tabs */
body.foley-tech-tips-landing .foley-tt-tabs {
	position: relative;
}

body.foley-tech-tips-landing .foley-tt-tab-state {
	clip: rect(0 0 0 0);
	border: 0;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	white-space: nowrap;
}

body.foley-tech-tips-landing .foley-tt-tab-labels {
	display: grid;
	gap: 0;
	grid-template-columns: 1fr 1fr;
	margin-bottom: var(--space_big, 2rem);
}

body.foley-tech-tips-landing .foley-tt-tab-label {
	background-color: #fff;
	border: 1px solid #d0d0d0;
	color: #111;
	cursor: pointer;
	display: block;
	font-family: var(--heading_font, "Roboto Condensed", sans-serif);
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 1rem 1.25rem;
	text-align: center;
	text-transform: uppercase;
	transition: background-color 0.2s ease, color 0.2s ease;
}

body.foley-tech-tips-landing .foley-tt-tab-label:hover {
	background-color: #f0f0f0;
}

body.foley-tech-tips-landing #foley-tt-tab-product:checked ~ .foley-tt-tab-labels label[for="foley-tt-tab-product"],
body.foley-tech-tips-landing #foley-tt-tab-brand:checked ~ .foley-tt-tab-labels label[for="foley-tt-tab-brand"] {
	background-color: #0a2239;
	border-color: #0a2239;
	color: #fff;
}

body.foley-tech-tips-landing .foley-tt-tab-panel--brand {
	display: none;
}

body.foley-tech-tips-landing #foley-tt-tab-brand:checked ~ .foley-tt-tab-panel--brand {
	display: block;
}

body.foley-tech-tips-landing #foley-tt-tab-brand:checked ~ .foley-tt-tab-panel--product {
	display: none;
}

/* Issue cards */
body.foley-tech-tips-landing .foley-tt-cards {
	display: grid;
	gap: var(--space_normal, 1rem);
	grid-template-columns: 1fr;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 40em) {

	body.foley-tech-tips-landing .foley-tt-cards {
		grid-template-columns: repeat(3, 1fr);
	}
}

body.foley-tech-tips-landing .foley-tt-card-link {
	background-color: #fff;
	border: 1px solid #d8d8d8;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
	color: inherit;
	display: flex;
	flex-direction: column;
	gap: var(--space_small, 0.75rem);
	height: 100%;
	padding: var(--space_big, 1.5rem);
	text-align: center;
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.foley-tech-tips-landing .foley-tt-card-link:hover {
	border-color: #c0c0c0;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

body.foley-tech-tips-landing .foley-tt-card-icon {
	color: #c44031;
	display: flex;
	justify-content: center;
}

body.foley-tech-tips-landing .foley-tt-card-icon--brand-text {
	align-items: center;
	min-height: 5.5rem;
	width: 100%;
}

body.foley-tech-tips-landing .foley-tt-brand-card-mark {
	align-items: center;
	background: linear-gradient(135deg, #f8fafc 0%, #e8edf2 100%);
	border: 2px solid #d6dee7;
	border-radius: 999px;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
	box-sizing: border-box;
	color: #1a2b4a;
	display: inline-flex;
	font-family: var(--heading_font, "Roboto Condensed", sans-serif);
	font-size: clamp(1.05rem, 2vw, 1.45rem);
	font-weight: 900;
	justify-content: center;
	letter-spacing: 0.08em;
	line-height: 1.05;
	min-height: 4.5rem;
	min-width: min(100%, 12rem);
	padding: 0.85rem 1.25rem;
	text-align: center;
	text-transform: uppercase;
}

body.foley-tech-tips-landing .foley-tt-card-title {
	font-family: var(--heading_font, "Roboto Condensed", sans-serif);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.03em;
}

body.foley-tech-tips-landing .foley-tt-card-count {
	color: #666;
	font-size: 0.875rem;
}

/* Buttons */
body.foley-tech-tips-landing .foley-tt-cta-row {
	margin: var(--space_big, 2rem) 0 0;
	text-align: center;
}

body.foley-tech-tips-landing .foley-tt-btn {
	background-color: #c44031;
	border: 2px solid #c44031;
	color: #fff !important;
	display: inline-block;
	font-family: var(--heading_font, "Roboto Condensed", sans-serif);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	padding: 0.75rem 1.75rem;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

body.foley-tech-tips-landing .foley-tt-btn:hover,
body.foley-tech-tips-landing .foley-tt-btn:focus {
	background-color: #a33428;
	border-color: #a33428;
	color: #fff !important;
}

/* Product promos */
body.foley-tech-tips-landing .foley-tt-promos {
	display: grid;
	gap: var(--space_normal, 1rem);
	grid-template-columns: 1fr;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 48em) {

	body.foley-tech-tips-landing .foley-tt-promos {
		grid-template-columns: repeat(3, 1fr);
	}
}

body.foley-tech-tips-landing .foley-tt-promo-link {
	color: inherit;
	display: block;
	text-decoration: none;
}

body.foley-tech-tips-landing .foley-tt-promo-media {
	aspect-ratio: 3 / 4;
	display: block;
	overflow: hidden;
	position: relative;
}

body.foley-tech-tips-landing .foley-tt-promo-media::before {
	background-color: #000;
	content: "";
	inset: 0;
	opacity: 0.22;
	position: absolute;
	transition: opacity 0.28s ease;
	z-index: 1;
}

body.foley-tech-tips-landing .foley-tt-promo-img {
	display: block;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 0.35s ease, filter 0.35s ease;
	width: 100%;
}

body.foley-tech-tips-landing .foley-tt-promo-placeholder {
	background: linear-gradient(145deg, #ddd, #bbb);
	display: block;
	height: 100%;
	width: 100%;
}

body.foley-tech-tips-landing .foley-tt-promo-overlay {
	align-items: center;
	bottom: 0;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	left: 0;
	justify-content: flex-end;
	padding: 1rem 1rem 0.95rem;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
}

body.foley-tech-tips-landing .foley-tt-promo-overlay-title {
	color: #fff;
	font-family: var(--heading_font, "Roboto Condensed", sans-serif);
	font-size: clamp(1.75rem, 2.4vw, 2.2rem);
	font-weight: 700;
	letter-spacing: 0.015em;
	line-height: 1.06;
	text-align: center;
	text-transform: uppercase;
	transform: translateY(0);
	transition: transform 0.28s ease, opacity 0.28s ease;
}

body.foley-tech-tips-landing .foley-tt-promo-overlay-count {
	color: #fff;
	font-size: 0.95rem;
	opacity: 0.92;
	text-transform: lowercase;
	transform: translateY(0);
	transition: transform 0.28s ease, opacity 0.28s ease;
}

body.foley-tech-tips-landing .foley-tt-promo-overlay-btn {
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.85);
	color: #fff;
	display: inline-block;
	font-family: var(--heading_font, "Roboto Condensed", sans-serif);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	margin-top: 0.6rem;
	opacity: 0;
	padding: 0.52rem 1.05rem;
	pointer-events: none;
	text-transform: uppercase;
	transform: translateY(14px);
	transition: opacity 0.24s ease, transform 0.24s ease;
}

body.foley-tech-tips-landing .foley-tt-promo-link:hover .foley-tt-promo-media::before,
body.foley-tech-tips-landing .foley-tt-promo-link:focus-visible .foley-tt-promo-media::before {
	opacity: 0.36;
}

body.foley-tech-tips-landing .foley-tt-promo-link:hover .foley-tt-promo-img,
body.foley-tech-tips-landing .foley-tt-promo-link:focus-visible .foley-tt-promo-img {
	filter: saturate(1.04);
	transform: scale(1.035);
}

body.foley-tech-tips-landing .foley-tt-promo-link:hover .foley-tt-promo-overlay-title,
body.foley-tech-tips-landing .foley-tt-promo-link:hover .foley-tt-promo-overlay-count,
body.foley-tech-tips-landing .foley-tt-promo-link:focus-visible .foley-tt-promo-overlay-title,
body.foley-tech-tips-landing .foley-tt-promo-link:focus-visible .foley-tt-promo-overlay-count {
	transform: translateY(-13px);
}

body.foley-tech-tips-landing .foley-tt-promo-link:hover .foley-tt-promo-overlay-btn,
body.foley-tech-tips-landing .foley-tt-promo-link:focus-visible .foley-tt-promo-overlay-btn {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

	body.foley-tech-tips-landing .foley-tt-promo-media::before,
	body.foley-tech-tips-landing .foley-tt-promo-img,
	body.foley-tech-tips-landing .foley-tt-promo-overlay-title,
	body.foley-tech-tips-landing .foley-tt-promo-overlay-count,
	body.foley-tech-tips-landing .foley-tt-promo-overlay-btn {
		transition: none;
	}
}

/* Brand marquee (two identical strips, –50% loop) */
body.foley-tech-tips-landing .foley-tt-brand-marquee {
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
	margin-left: calc(-1 * var(--gutter_width, 1.25rem));
	margin-right: calc(-1 * var(--gutter_width, 1.25rem));
	margin-top: var(--space_big, 2rem);
	mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
	overflow: hidden;
	padding-bottom: 0.5rem;
	padding-top: 0.5rem;
	width: calc(100% + 2 * var(--gutter_width, 1.25rem));
}

body.foley-tech-tips-landing .foley-tt-brand-track {
	animation: foley-tt-brand-marquee 50s linear infinite;
	display: flex;
	width: max-content;
}

body.foley-tech-tips-landing .foley-tt-brand-marquee:hover .foley-tt-brand-track {
	animation-play-state: paused;
}

@keyframes foley-tt-brand-marquee {

	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

body.foley-tech-tips-landing .foley-tt-brand-strip--marquee {
	align-items: center;
	display: flex;
	flex-shrink: 0;
	flex-wrap: nowrap;
	gap: clamp(1rem, 3vw, 2rem);
	justify-content: flex-start;
	list-style: none;
	margin: 0;
	padding: 0 clamp(1.5rem, 3vw, 2.5rem);
}

body.foley-tech-tips-landing .foley-tt-brand-strip--marquee .foley-tt-brand-link {
	background-color: #fff;
	border: 1px solid #d8e0e8;
	border-radius: 999px;
	box-shadow: 0 4px 14px rgba(15, 35, 58, 0.08);
	color: #1a2b4a;
	display: block;
	font-family: var(--heading_font, "Roboto Condensed", sans-serif);
	font-size: clamp(1rem, 1.8vw, 1.35rem);
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1;
	padding: 1rem 1.45rem;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
	white-space: nowrap;
}

body.foley-tech-tips-landing .foley-tt-brand-strip--marquee .foley-tt-brand-link:hover,
body.foley-tech-tips-landing .foley-tt-brand-strip--marquee .foley-tt-brand-link:focus-visible {
	background-color: #1a2b4a;
	border-color: #1a2b4a;
	color: #fff;
	transform: translateY(-1px);
}

body.foley-tech-tips-landing .foley-tt-brand-strip--marquee .foley-tt-brand-name {
	display: block;
}

@media (prefers-reduced-motion: reduce) {

	body.foley-tech-tips-landing .foley-tt-brand-track {
		animation: none;
		flex-wrap: wrap;
		justify-content: center;
		margin-left: auto;
		margin-right: auto;
		max-width: var(--max_width_wide, 87.5rem);
		width: 100%;
	}

	body.foley-tech-tips-landing .foley-tt-brand-marquee {
		-webkit-mask-image: none;
		margin-left: 0;
		margin-right: 0;
		mask-image: none;
		width: 100%;
	}

	body.foley-tech-tips-landing .foley-tt-brand-marquee [aria-hidden="true"] {
		display: none !important;
	}

	body.foley-tech-tips-landing .foley-tt-brand-strip--marquee {
		flex-wrap: wrap;
		justify-content: center;
	}
}

