/**
 * footer_section.css — 4-column footer on near-black BG.
 */

.ncm-footer {
	padding: 90px 0;
	background-color: #262626;
	color: var(--clr-bg-warm);
	min-height: 300px;
}

.ncm-footer__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 0.6fr;
	gap: 64px;
	align-items: flex-start;
}

.ncm-footer__col {
	display: flex;
	flex-direction: column;
	gap: 24px;
	font-family: var(--ff-primary);
	font-size: 16px;
	line-height: 24px;
	color: var(--clr-bg-warm);
}

.ncm-footer__logo-text {
	font-family: var(--ff-display);
	font-size: 28px;
	line-height: 32px;
	letter-spacing: 0.05em;
	color: var(--clr-bg-warm);
}

.ncm-footer__logo-img img {
	width: auto;
	height: 30px;
	display: block;
}

.ncm-footer__address {
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
	color: var(--clr-bg-warm);
	margin: 0;
}

.ncm-footer__col-label {
	font-family: var(--ff-primary);
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.04em;
	text-transform: capitalize;
	color: #EBE3D6;
	margin: 0;
}

.ncm-footer__col-text {
	font-size: 16px;
	line-height: 24px;
	color: var(--clr-bg-warm);
}

.ncm-footer__socials {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 20px;
}

.ncm-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 20px;
	color: var(--clr-bg-warm);
	text-decoration: none;
	transition: all 0.3s ease;
}

.ncm-footer__social a:hover,
.ncm-footer__social a:focus {
	opacity: 0.75;
	transform: translateY(-1px);
}

.ncm-footer__social img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.ncm-topic-two-col__content-section .ncm-topic-two-col__section-title {
	font-family: var(--ff-display);
}

@media (max-width: 1024px) {
	.ncm-footer {
		padding: 64px 32px;
	}

	.ncm-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media (max-width: 767px) {
	.ncm-footer {
		padding: 48px 20px;
	}

	.ncm-footer__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}