/* Media Mentions — base styles.
   All sizes/typography can be overridden from Media Mentions → Listing Styles. */

.mm-wrap {
	--mm-accent: #b6531f;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}
.mm-wrap *,
.mm-wrap *::before,
.mm-wrap *::after { box-sizing: border-box; }

/* Grid */
.mm-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

/* Card */
.mm-card {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	background: #ffffff;
	border-top: 3px solid var(--mm-accent);
	padding: 22px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* Clickable card variant */
.mm-card--link {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.mm-card--link:hover {
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}
.mm-card--link:focus-visible {
	outline: 2px solid var(--mm-accent);
	outline-offset: 2px;
}

/* The text box (left) */
.mm-card__box-wrap {
	flex: 0 0 auto;
}
.mm-card__box {
	width: 72px;
	height: 72px;
	background-color: #14403a;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}
.mm-card__box-text {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.1;
	padding: 4px;
	word-break: break-word;
}

/* Body (right) */
.mm-card__body {
	flex: 1 1 auto;
	min-width: 0;
}

/* Outlet label */
.mm-card__outlet {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--mm-accent);
	margin-bottom: 8px;
}

/* Title */
.mm-card__title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: #1f2d28;
	margin: 0 0 8px;
}

/* Date / meta */
.mm-card__date {
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.02em;
	color: var(--mm-accent);
	margin-bottom: 6px;
}

/* Description */
.mm-card__desc {
	font-size: 14px;
	line-height: 1.45;
	color: #5a5a55;
}

.mm-empty { padding: 30px; color: #777; grid-column: 1 / -1; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) and (min-width: 641px) {
	.mm-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 640px) {
	.mm-grid { grid-template-columns: 1fr !important; }
	.mm-card { padding: 18px; }
}
