/**
 * Giuseppina Shell - Footer CSS
 * Handles footer branding placement, links alignment, and medical disclaimer formatting.
 */

.site-footer {
	background-color: var(--dark);
	color: #C9C4B8;
	padding: 64px 0 32px;
	font-size: 13px;
	margin-top: auto; /* Push to bottom if content is short */
}

.footer-container {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.footer-grid {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.footer-branding .logo {
	color: var(--white);
	font-family: var(--font-head);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.01em;
	text-decoration: none;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 24px;
	padding: 0;
}

.footer-links a {
	color: #C9C4B8;
	text-decoration: none;
	transition: color var(--transition-speed) ease;
}

.footer-links a:hover {
	color: var(--white);
}

.disclaimer {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 24px;
	color: #9C9788;
	font-size: 12px;
	line-height: 1.6;
}

.disclaimer p {
	margin: 0;
}

@media (min-width: 720px) {
	.footer-grid {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}
}

.footer-branding {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-tagline {
	font-size: 13px;
	color: #9C9788;
	margin-top: 4px;
	max-width: 440px;
	line-height: 1.6;
	font-style: italic;
}

