/**
 * Homepage Section 6 — Legal / Company Info Bottom Strip
 * Primary wrapper selector: .sm-section--home-6
 *
 * Content: Company name, copyright, BTW/KVK/address, Privacy Policy & T&C links
 * Layout: Horizontal flex (info left / links right) on desktop; stacked on mobile
 * Matches studiom.ai bottom company info strip (below .sm-section--home-5)
 *
 * SCOPE: This CSS is ONLY for homepage Section 6.
 * All selectors are scoped under .sm-section--home-6.
 * No global element selectors without the wrapper prefix.
 *
 * @package StudioM_Child
 */

/* ========================================================================
   Section Outer Container
   ======================================================================== */

.sm-section--home-6 {
	padding-top: 24px;
	padding-bottom: 32px;
	background-color: #ffffff;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.sm-section--home-6.has-global-padding,
.sm-section--home-6.is-layout-constrained {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* ========================================================================
   Nested has-global-padding / is-layout-constrained neutralization
   Prevents TT5 from injecting unwanted horizontal padding inside the section
   ======================================================================== */

.sm-section--home-6 .has-global-padding,
.sm-section--home-6 .is-layout-constrained {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* ========================================================================
   Inner Container — matches Sections 2–5 max-width (1200px)
   ======================================================================== */

.sm-section--home-6 .sm-container {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px !important;
	padding-right: 20px !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

@media (min-width: 768px) {
	.sm-section--home-6 .sm-container {
		padding-left: 40px !important;
		padding-right: 40px !important;
	}
}

/* ========================================================================
   Top Border — subtle separator from Section 5
   ======================================================================== */

.sm-section--home-6 .sm-container::before {
	content: '';
	display: block;
	height: 1px;
	background-color: #e8e8e8;
	margin-bottom: 24px;
}

/* ========================================================================
   Inner Flex Layout — company info left / legal links right
   On mobile: stacked vertically
   On desktop (≥768px): side-by-side, space-between
   ======================================================================== */

.sm-section--home-6 .sm-legal__inner {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
}

@media (min-width: 768px) {
	.sm-section--home-6 .sm-legal__inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 24px;
	}
}

/* ========================================================================
   Company Info Text
   Small, muted — Chivo light 12px, secondary gray
   ======================================================================== */

.sm-section--home-6 .sm-legal__info {
	font-family: 'Chivo', sans-serif;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.6;
	color: #888888;
	margin: 0;
	padding: 0;
}

/* ========================================================================
   Legal Links List
   Inline row — Privacy Policy · Terms & Conditions
   ======================================================================== */

.sm-section--home-6 .sm-legal__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
	flex-shrink: 0;
}

.sm-section--home-6 .sm-legal__links li {
	margin: 0;
	padding: 0;
}

.sm-section--home-6 .sm-legal__links a {
	font-family: 'Chivo', sans-serif;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.6;
	color: #888888;
	text-decoration: none;
	transition: color 0.2s ease;
}

.sm-section--home-6 .sm-legal__links a:hover,
.sm-section--home-6 .sm-legal__links a:focus {
	color: #333333;
	text-decoration: underline;
}

.sm-section--home-6 .sm-legal__links a:focus-visible {
	outline: 2px solid #111111;
	outline-offset: 2px;
}

/* ========================================================================
   WordPress Block Spacing Normalization — scoped to Section 6 only
   ======================================================================== */

.sm-section--home-6 .wp-block-group {
	gap: 0;
}
