
	.mrl-footer {
		padding-top: 48px;
		padding-left: 32px;
		padding-right: 32px;
		background: #000;
	  	color: #fff4e1;
	}

	.mrl-footer__inner {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		/* height: 425px; */
	
	}

	/* LEFT SIDE - COPYRIGHT */
	.mrl-footer__left {
		display: block;
		grid-column: 1;
		grid-row: 1 / 3;
	}

	.mrl-footer__copy {
		color: var(--Beige, #FFF4E1);
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 140%; 
		opacity: var(--Opacity-opacity-3, 0.6);
		margin-bottom: 40px;
	}

	/* RIGHT SIDE - Contact stays in flex container */
	.mrl-footer__right {
		display: flex;
		flex-direction: column;
		grid-column: 3;
		grid-row: 1 / 3;
		margin-left: 30px;
		
	}

	/* Contact Grid */
	.mrl-footer__contact {
		display: grid;
		grid-template-columns: 100px 1fr;
		column-gap: 24px;
		color: var(--Beige, #FFF4E1);
        font-family: var(--Font-Font-Family-ff-body, "FK Grotesk Neue");
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
        opacity: var(--Opacity-opacity-3, 0.6);
		padding-bottom: var(--space-m);
	}

	.mrl-footer__label {
		color: var(--Beige, #FFF4E1);
		/* Body/M/Body M */
		font-family: var(--Font-Font-Family-ff-body, "FK Grotesk Neue");
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 140%; /* 19.6px */
	}

	.mrl-footer__value {
		color: #fff4e1;
		text-decoration: none;
		transition: opacity 0.2s ease;
		word-break: break-word;
		padding-bottom: var(--space-2xs);
	}

	.mrl-footer__value:hover {
		opacity: 0.8;
	}

	/* Legal links */
	.mrl-footer__legal {
		color: var(--Beige, #FFF4E1);
		/* Body/S/Body S */
		font-family: var(--Font-Font-Family-ff-body, "FK Grotesk Neue");
		font-size: 11px;
		font-style: normal;
		font-weight: 400;
		line-height: 140%; /* 15.4px */
		padding-bottom: var(--space-m);
	}

	.mrl-footer__legal a {
		color: var(--Beige, #FFF4E1);
		/* Body/S/Body S */
		font-family: var(--Font-Font-Family-ff-body, "FK Grotesk Neue");
		font-size: 11px;
		font-style: normal;
		font-weight: 400;
		line-height: 140%; /* 15.4px */
		opacity: 0.6;
        text-decoration-line: none;
	}

	.mrl-footer__legal a:hover {
		opacity: 0.8;
	}

	.mrl-footer__legal span {
		opacity: 0.4;
	}

	/* LOGO - FULL WIDTH BOTTOM */
	.mrl-footer__logo {
		grid-column: 1 / -1;
		grid-row: 3;
		display: block;
		width: 100%;
		padding-bottom: 15px;
	}


	@media (min-width: 768px) and (max-width: 1024px) {

		.mrl-footer__inner {
		   
			height: auto;
		}
		.mrl-footer {
			padding-top: 30px !important;
			padding-left: 16px !important;
			padding-right: 16px !important;
			background: #000;
			color: #fff4e1;
		}
		}