/* Sprint 2 Module 3: Daily Impact Score and Content Discovery */
.ec-impact {
	display: grid;
	grid-template-columns: minmax(260px, 0.9fr) minmax(440px, 1.65fr) minmax(240px, 0.75fr);
	gap: clamp(24px, 3vw, 44px);
	align-items: center;
	margin-bottom: var(--ec-section-space);
	padding: clamp(26px, 3.4vw, 46px);
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-card-radius);
	background: var(--ec-white);
	box-shadow: var(--ec-card-shadow);
}

.ec-impact__heading h2,
.ec-discovery__header h2 {
	margin: 0;
	color: var(--ec-dark);
	font-family: Poppins, Inter, sans-serif;
	letter-spacing: -0.03em;
}

.ec-impact__heading h2 {
	font-size: clamp(24px, 2.1vw, 31px);
	line-height: 1.22;
}

.ec-impact__meter {
	position: relative;
	display: grid;
	width: 144px;
	height: 144px;
	place-items: center;
	margin: 24px 0 14px;
	border-radius: 50%;
	background: conic-gradient(var(--ec-orange) 0 var(--ec-impact-score, 0%), #eceff3 var(--ec-impact-score, 0%) 100%);
}

.ec-impact__meter--limited {
	background: #eceff3;
}

.ec-impact__meter--limited small {
	max-width: 52px;
	line-height: 1.15;
	white-space: normal;
}

.ec-impact__meter::before {
	position: absolute;
	inset: 12px;
	border-radius: inherit;
	background: var(--ec-white);
	content: "";
}

.ec-impact__meter > span {
	position: relative;
	display: flex;
	align-items: baseline;
	color: var(--ec-dark);
}

.ec-impact__meter strong {
	font-family: Poppins, Inter, sans-serif;
	font-size: 43px;
	letter-spacing: -0.05em;
	line-height: 1;
}

.ec-impact__meter small {
	margin-left: 4px;
	color: var(--ec-text-muted);
	font-size: 13px;
	font-weight: 700;
}

.ec-impact__status {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 11px;
	border-radius: 999px;
	background: rgba(34, 197, 94, 0.12);
	color: #147a36;
	font-size: 12px;
	font-weight: 700;
}

.ec-impact__status--mixed {
	background: rgba(245, 158, 11, 0.14);
	color: #8a5200;
}

.ec-impact__status--watch,
.ec-impact__status--limited {
	background: #eceff3;
	color: var(--ec-text-muted);
}

.ec-impact__score > p:last-child {
	max-width: 350px;
	margin: 14px 0 0;
	color: var(--ec-text-muted);
	font-size: 14px;
	line-height: 1.6;
}

.ec-impact__indicators {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.ec-impact-indicator {
	min-width: 0;
	padding: 18px;
	border: 1px solid var(--ec-border);
	border-radius: 15px;
	background: var(--ec-light-gray);
}

.ec-impact-indicator__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}

.ec-impact-indicator h3 {
	margin: 0;
	color: var(--ec-dark);
	font-size: 14px;
	line-height: 1.35;
}

.ec-impact-indicator__header span {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 5px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.ec-impact-indicator__header i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--ec-text-muted);
}

.ec-impact-indicator--positive .ec-impact-indicator__header span {
	color: #147a36;
}

.ec-impact-indicator--positive .ec-impact-indicator__header i {
	background: var(--ec-success);
}

.ec-impact-indicator--watch .ec-impact-indicator__header span {
	color: #9a5b00;
}

.ec-impact-indicator--watch .ec-impact-indicator__header i {
	background: var(--ec-warning);
}

.ec-impact-indicator--limited .ec-impact-indicator__header span,
.ec-impact-indicator--mixed .ec-impact-indicator__header span {
	color: var(--ec-text-muted);
}

.ec-impact-indicator--limited .ec-impact-indicator__header i,
.ec-impact-indicator--mixed .ec-impact-indicator__header i {
	background: var(--ec-text-muted);
}

.ec-impact-indicator p {
	margin: 9px 0 0;
	color: var(--ec-text-muted);
	font-size: 12px;
	line-height: 1.5;
}

.ec-impact__actions {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
	padding-left: clamp(20px, 2.5vw, 36px);
	border-left: 1px solid var(--ec-border);
}

.ec-impact__actions > svg {
	width: 34px;
	height: 34px;
	margin-bottom: 15px;
	fill: none;
	stroke: var(--ec-orange-hover);
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ec-impact__actions p {
	margin: 0 0 20px;
	color: var(--ec-text-muted);
	font-size: 13px;
	line-height: 1.55;
}

.ec-impact__actions .ec-button {
	width: 100%;
	text-align: center;
}

.ec-impact__actions .ec-text-link {
	align-self: center;
	margin-top: 15px;
}

.ec-impact__methodology {
	grid-column: 1 / -1;
	padding-top: 18px;
	border-top: 1px solid var(--ec-border);
	color: var(--ec-text-muted);
	font-size: 13px;
}

.ec-impact__methodology summary {
	width: fit-content;
	color: var(--ec-text);
	font-weight: 700;
	cursor: pointer;
}

.ec-impact__methodology p {
	max-width: 900px;
	margin: 12px 0 0;
	line-height: 1.6;
}

.ec-discovery {
	margin-top: var(--ec-section-space-medium);
}

.ec-discovery__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 22px;
}

.ec-discovery__header h2 {
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.15;
}

.ec-discovery__header > div > p:last-child {
	max-width: 720px;
	margin: 9px 0 0;
	color: var(--ec-text-muted);
	font-size: 15px;
	line-height: 1.55;
}

.ec-discovery__status {
	flex: 0 0 auto;
	margin: 0 0 3px;
	color: var(--ec-text-muted);
	font-size: 12px;
	font-weight: 600;
}

.ec-discovery__filter-scroller {
	margin-bottom: 22px;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scrollbar-width: thin;
}

.ec-discovery__filters {
	display: flex;
	width: max-content;
	min-width: 100%;
	gap: 8px;
	padding-bottom: 3px;
}

.ec-discovery__filters button {
	min-height: var(--ec-control-height);
	padding: 0 17px;
	border: 1px solid var(--ec-border);
	border-radius: 999px;
	background: var(--ec-white);
	color: var(--ec-text);
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.ec-discovery__filters button:not(:disabled):hover {
	border-color: var(--ec-orange);
	transform: translateY(-1px);
}

.ec-discovery__filters button:disabled,
.ec-content-card__utilities button:disabled {
	cursor: not-allowed;
	opacity: 0.48;
}

.ec-discovery__filters button[aria-pressed="true"] {
	border-color: var(--ec-dark);
	background: var(--ec-dark);
	color: var(--ec-white);
}

.ec-discovery__filters button:focus-visible,
.ec-content-card button:focus-visible,
.ec-content-card a:focus-visible,
.ec-impact a:focus-visible {
	outline: 3px solid rgba(255, 122, 0, 0.42);
	outline-offset: 3px;
}

.ec-discovery__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-auto-flow: dense;
	gap: 20px;
}

.ec-discovery__empty {
	padding: clamp(24px, 4vw, 40px);
	border: 1px dashed var(--ec-border);
	border-radius: var(--ec-card-radius);
	background: var(--ec-light-gray);
	text-align: center;
}

.ec-discovery__empty h3 {
	margin: 0 0 8px;
	color: var(--ec-dark);
	font-family: Poppins, Inter, sans-serif;
	font-size: 20px;
}

.ec-discovery__empty p {
	margin: 0;
	color: var(--ec-text-muted);
	line-height: 1.6;
}

.ec-topic-preferences {
	margin: -6px 0 22px;
}

.ec-topic-preferences details {
	border: 1px solid var(--ec-border);
	border-radius: 16px;
	background: var(--ec-white);
}

.ec-topic-preferences summary {
	width: fit-content;
	padding: 14px 18px;
	color: var(--ec-text);
	font-weight: 800;
	cursor: pointer;
}

.ec-topic-preferences summary::marker {
	color: var(--ec-orange);
}

.ec-topic-preferences__panel {
	display: grid;
	grid-template-columns: minmax(230px, 0.8fr) minmax(320px, 1.2fr);
	gap: 18px 28px;
	padding: 4px 18px 18px;
}

.ec-topic-preferences__panel h3,
.ec-topic-preferences__panel p {
	margin: 0;
}

.ec-topic-preferences__panel h3 {
	font-size: 16px;
}

.ec-topic-preferences__panel > div:first-child p,
.ec-topic-preferences__status {
	margin-top: 6px;
	color: var(--ec-text-muted);
	font-size: 12px;
	line-height: 1.55;
}

.ec-topic-preferences fieldset {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin: 0;
	padding: 0;
	border: 0;
}

.ec-topic-preferences label {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 8px 11px;
	border: 1px solid var(--ec-border);
	border-radius: 10px;
	font-size: 13px;
	font-weight: 700;
}

.ec-topic-preferences input {
	width: 18px;
	height: 18px;
	accent-color: var(--ec-orange);
}

.ec-topic-preferences__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.ec-topic-preferences__actions .ec-text-button {
	border: 0;
	background: transparent;
	color: var(--ec-text);
	font: inherit;
	font-weight: 700;
	text-decoration: underline;
	cursor: pointer;
}

.ec-topic-preferences__status {
	align-self: center;
}

.ec-content-card.is-topic-match {
	border-color: var(--ec-orange);
	box-shadow: 0 14px 36px rgba(255, 122, 0, 0.12);
}

.ec-topic-preferences summary:focus-visible,
.ec-topic-preferences button:focus-visible,
.ec-topic-preferences input:focus-visible {
	outline: 3px solid rgba(255, 122, 0, 0.42);
	outline-offset: 3px;
}

.ec-discovery__empty[hidden] {
	display: none;
}

.ec-discovery__empty-actions,
.ec-discovery__archive-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 20px;
}

.ec-discovery__archive-links a {
	color: var(--ec-text);
	font-weight: 700;
}

.ec-content-card__disclosure {
	border-color: rgba(255, 255, 255, 0.7) !important;
	background: var(--ec-dark) !important;
	color: var(--ec-white) !important;
}

.ec-content-card__commercial-note {
	margin: 16px 0 0;
	padding: 10px 12px;
	border: 1px solid var(--ec-border);
	border-radius: 10px;
	background: var(--ec-light-gray);
	color: var(--ec-text-muted);
	font-size: 12px;
	line-height: 1.5;
}

.ec-content-card {
	display: flex;
	min-width: 0;
	grid-column: span 4;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-card-radius);
	background: var(--ec-white);
	box-shadow: var(--ec-card-shadow);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ec-content-card--featured {
	grid-column: span 8;
}

.ec-content-card--medium {
	grid-column: span 6;
}

.ec-content-card[hidden] {
	display: none;
}

.ec-content-card:hover {
	border-color: rgba(255, 122, 0, 0.7);
	box-shadow: var(--ec-card-shadow-hover);
	transform: translateY(-3px);
}

.ec-content-card__media {
	position: relative;
	margin: 0;
	overflow: hidden;
	background: var(--ec-dark);
}

.ec-content-card__media img {
	display: block;
	width: 100%;
	height: 190px;
	object-fit: cover;
	transition: transform 450ms ease;
}

.ec-content-card--medium .ec-content-card__media img {
	height: 250px;
}

.ec-content-card--featured .ec-content-card__media img {
	height: 360px;
}

.ec-content-card:hover .ec-content-card__media img {
	transform: scale(1.025);
}

.ec-content-card__badges {
	position: absolute;
	top: 14px;
	left: 14px;
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.ec-content-card__badges span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	box-shadow: 0 5px 14px rgba(17, 17, 17, 0.16);
}

.ec-content-card__pillar {
	background: var(--ec-orange);
	color: var(--ec-dark);
}

.ec-content-card__type {
	background: rgba(17, 17, 17, 0.88);
	color: var(--ec-white);
	backdrop-filter: blur(8px);
}

.ec-content-card__type--sponsored {
	border: 1px solid rgba(255, 255, 255, 0.65);
	background: rgba(255, 255, 255, 0.92);
	color: var(--ec-dark);
}

.ec-content-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 20px 20px 16px;
}

.ec-content-card--featured .ec-content-card__body {
	padding: 28px 28px 20px;
}

.ec-content-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 10px;
	color: var(--ec-text-muted);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.4;
}

.ec-content-card h3 {
	margin: 0;
	color: var(--ec-dark);
	font-family: Poppins, Inter, sans-serif;
	font-size: 20px;
	letter-spacing: -0.025em;
	line-height: 1.3;
}

.ec-content-card--medium h3 {
	font-size: clamp(21px, 2vw, 26px);
}

.ec-content-card--featured h3 {
	max-width: 780px;
	font-size: clamp(27px, 3vw, 39px);
	line-height: 1.18;
}

.ec-content-card h3 a {
	text-decoration: none;
}

.ec-content-card h3 a:hover {
	color: var(--ec-orange-hover);
}

.ec-content-card__summary {
	margin: 11px 0 16px;
	color: var(--ec-text-muted);
	font-size: 13px;
	line-height: 1.58;
}

.ec-content-card--featured .ec-content-card__summary {
	max-width: 760px;
	font-size: 15px;
}

.ec-content-card__why {
	margin-top: auto;
	padding: 14px;
	border-left: 3px solid var(--ec-orange);
	border-radius: 0 10px 10px 0;
	background: var(--ec-light-gray);
}

.ec-content-card__why strong {
	display: block;
	margin-bottom: 4px;
	color: var(--ec-dark);
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.ec-content-card__why p {
	margin: 0;
	color: var(--ec-text-muted);
	font-size: 12px;
	line-height: 1.48;
}

.ec-content-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 0 20px 20px;
}

.ec-content-card--featured .ec-content-card__footer {
	padding: 0 28px 28px;
}

.ec-content-card__utilities {
	display: flex;
	gap: 7px;
}

.ec-content-card__utilities button {
	display: inline-grid;
	width: var(--ec-control-height);
	height: var(--ec-control-height);
	place-items: center;
	padding: 0;
	border: 1px solid var(--ec-border);
	border-radius: 10px;
	background: var(--ec-white);
	color: var(--ec-text);
	cursor: pointer;
}

.ec-content-card__utilities button:not(:disabled):hover,
.ec-content-card__utilities button[aria-pressed="true"] {
	border-color: var(--ec-orange);
	background: rgba(255, 122, 0, 0.1);
	color: var(--ec-orange-hover);
}

.ec-content-card__utilities button[aria-pressed="true"] svg {
	fill: currentColor;
}

.ec-content-card__utilities svg,
.ec-content-card__read svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ec-content-card__read {
	display: inline-flex;
	min-height: var(--ec-control-height);
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 0 13px;
	border-radius: 10px;
	background: var(--ec-dark);
	color: var(--ec-white);
	text-decoration: none;
	font-size: 12px;
	font-weight: 700;
}

.ec-content-card__read:hover {
	background: var(--ec-orange-hover);
	color: var(--ec-dark);
}

@media (max-width: 1180px) {
	.ec-impact {
		grid-template-columns: minmax(250px, 0.8fr) minmax(420px, 1.4fr);
	}

	.ec-impact__actions {
		grid-column: 1 / -1;
		flex-direction: row;
		align-items: center;
		gap: 18px;
		padding: 22px 0 0;
		border-top: 1px solid var(--ec-border);
		border-left: 0;
	}

	.ec-impact__actions > svg {
		flex: 0 0 34px;
		margin: 0;
	}

	.ec-impact__actions p {
		flex: 1;
		margin: 0;
	}

	.ec-impact__actions .ec-button {
		width: auto;
		white-space: nowrap;
	}

	.ec-impact__actions .ec-text-link {
		align-self: auto;
		margin: 0;
		white-space: nowrap;
	}
}

@media (max-width: 1000px) {
	.ec-impact {
		grid-template-columns: 1fr;
	}

	.ec-impact__score {
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: center;
		column-gap: 24px;
	}

	.ec-impact__heading,
	.ec-impact__status,
	.ec-impact__score > p:last-child {
		grid-column: 1;
	}

	.ec-impact__meter {
		grid-column: 2;
		grid-row: 1 / span 3;
		margin: 0;
	}

	.ec-content-card,
	.ec-content-card--medium,
	.ec-content-card--featured {
		grid-column: span 6;
	}

	.ec-content-card--featured .ec-content-card__media img,
	.ec-content-card--medium .ec-content-card__media img {
		height: 250px;
	}

	.ec-content-card--featured .ec-content-card__body {
		padding: 22px 22px 16px;
	}

	.ec-content-card--featured .ec-content-card__footer {
		padding: 0 22px 22px;
	}

	.ec-content-card--featured h3 {
		font-size: clamp(23px, 3vw, 30px);
	}
}

@media (max-width: 782px) {
	.ec-impact__indicators {
		grid-template-columns: 1fr;
	}

	.ec-impact__actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.ec-impact__actions .ec-button {
		width: 100%;
	}

	.ec-impact__actions .ec-text-link {
		align-self: center;
	}

	.ec-discovery__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.ec-discovery__status {
		margin: 0;
	}

	.ec-topic-preferences__panel {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.ec-impact {
		padding: 24px;
	}

	.ec-impact__score {
		display: block;
	}

	.ec-impact__meter {
		width: 132px;
		height: 132px;
		margin: 22px 0 13px;
	}

	.ec-impact__meter strong {
		font-size: 39px;
	}

	.ec-content-card,
	.ec-content-card--medium,
	.ec-content-card--featured {
		grid-column: 1 / -1;
	}

	.ec-content-card__media img,
	.ec-content-card--medium .ec-content-card__media img,
	.ec-content-card--featured .ec-content-card__media img {
		height: clamp(210px, 62vw, 300px);
	}
}

@media (max-width: 420px) {
	.ec-topic-preferences fieldset {
		grid-template-columns: 1fr;
	}

	.ec-topic-preferences__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.ec-content-card__footer {
		align-items: stretch;
		flex-direction: column-reverse;
	}

	.ec-content-card__utilities {
		justify-content: flex-end;
	}

	.ec-content-card__read {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ec-impact *,
	.ec-impact *::before,
	.ec-impact *::after,
	.ec-discovery *,
	.ec-discovery *::before,
	.ec-discovery *::after {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}

/* Sprint 8 live content search and editorial widgets. */
.ec-content-search,
.ec-live-widgets {
	margin-block: clamp(2rem, 5vw, 4.5rem);
}

.ec-content-search {
	display: grid;
	grid-template-columns: minmax(13rem, 0.7fr) minmax(0, 2fr);
	gap: clamp(1.25rem, 3vw, 3rem);
	align-items: end;
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid var(--ec-border, #e5e7eb);
	border-radius: 1.5rem;
	background: #fff;
	box-shadow: 0 18px 45px rgba(17, 17, 17, 0.06);
}

.ec-content-search h2,
.ec-live-widgets h2,
.ec-live-widget h3,
.ec-live-widget h4 {
	margin: 0;
}

.ec-content-search__form {
	display: grid;
	grid-template-columns: minmax(12rem, 1.5fr) repeat(3, minmax(9rem, 1fr)) auto;
	gap: 0.65rem;
	align-items: end;
}

.ec-content-search__form label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
}

.ec-content-search__form input,
.ec-content-search__form select {
	min-width: 0;
	height: 3rem;
	padding-inline: 0.85rem;
	border: 1px solid var(--ec-border, #e5e7eb);
	border-radius: 0.8rem;
	background: #f5f7fa;
	color: #1f2937;
}

.ec-live-widgets__header {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	align-items: end;
	margin-bottom: 1.25rem;
}

.ec-live-widgets__header > p {
	max-width: 42rem;
	margin: 0;
	color: #6b7280;
}

.ec-live-widgets__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.ec-live-widget {
	min-width: 0;
	padding: 1.25rem;
	border: 1px solid var(--ec-border, #e5e7eb);
	border-radius: 1.25rem;
	background: #fff;
	box-shadow: 0 12px 30px rgba(17, 17, 17, 0.045);
}

.ec-live-widget > header > p,
.ec-live-widget__empty p {
	margin: 0.4rem 0 0;
	color: #6b7280;
}

.ec-live-widget__stories {
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
}

.ec-live-widget__stories li {
	padding-block: 0.9rem;
	border-top: 1px solid #e5e7eb;
}

.ec-live-widget__stories h4 {
	font-size: 1rem;
	line-height: 1.4;
}

.ec-live-widget__stories h4 a {
	color: #1f2937;
	text-decoration: none;
}

.ec-live-widget__stories h4 a:hover {
	color: #ff7a00;
}

.ec-live-widget__meta {
	display: flex;
	gap: 0.35rem;
	margin-bottom: 0.35rem;
	font-size: 0.75rem;
	color: #6b7280;
}

.ec-live-widget__stories li > p {
	margin: 0.35rem 0 0;
	font-size: 0.75rem;
	color: #6b7280;
}

.ec-live-widget__empty {
	margin-top: 1rem;
	padding: 1rem;
	border-radius: 0.9rem;
	background: #f5f7fa;
}

.ec-content-search__form :is(input, select, button):focus-visible,
.ec-live-widget a:focus-visible {
	outline: 3px solid #ff7a00;
	outline-offset: 3px;
}

@media (max-width: 1100px) {
	.ec-content-search,
	.ec-content-search__form {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ec-live-widgets__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.ec-content-search,
	.ec-content-search__form,
	.ec-live-widgets__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.ec-live-widgets__header {
		display: block;
	}

	.ec-live-widgets__header > p {
		margin-top: 0.75rem;
	}
}
