.lamorc-services-section {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.lamorc-services-section-heading {
	margin: 0;
	text-align: center;
	font-size: 34px;
	line-height: 1.15;
	font-weight: 700;
	color: #0b2c83;
}

.lamorc-services-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
	align-items: stretch;
}

.lamorc-service-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #ffffff;
	border: 1px solid #e6ebf2;
	border-radius: 18px;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
	overflow: hidden;
}

.lamorc-service-image img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.lamorc-service-content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 22px;
}

.lamorc-service-title {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.25;
	color: #102447;
}

.lamorc-service-description {
	margin: 0 0 20px;
	color: #5b6472;
	line-height: 1.7;
	flex: 1;
}

.lamorc-service-actions {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	align-items: center;
}

.lamorc-service-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	flex: 1 1 0;
	white-space: nowrap;
}

.lamorc-service-button:hover {
	transform: translateY(-1px);
}

.lamorc-service-button-primary {
	background: #103ea8;
	color: #ffffff;
	box-shadow: 0 12px 24px rgba(16, 62, 168, 0.2);
}

.lamorc-service-button-secondary {
	background: #eef5ff;
	color: #103ea8;
}

.lamorc-service-button-disabled {
	cursor: default;
}

.lamorc-service-button-disabled:hover {
	transform: none;
}

.lamorc-services-empty {
	padding: 32px;
	border-radius: 18px;
	background: #f6f9ff;
	color: #22304a;
	text-align: center;
}

.lamorc-popup-backdrop {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(7, 18, 37, 0.72);
	backdrop-filter: blur(6px);
}

.lamorc-popup-backdrop.is-hidden {
	opacity: 0;
	transition: opacity 0.18s ease;
}

.lamorc-popup-modal {
	position: relative;
	width: min(100%, 760px);
	max-height: 90vh;
	overflow: auto;
	background: #ffffff;
	border-radius: 24px;
	box-shadow: 0 24px 90px rgba(6, 19, 45, 0.28);
}

.lamorc-popup-close {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 999px;
	background: rgba(9, 22, 45, 0.82);
	color: #ffffff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 10px 22px rgba(9, 22, 45, 0.2);
}

.lamorc-popup-image-wrap {
	background: linear-gradient(135deg, #f3f7ff, #e7f0ff);
}

.lamorc-popup-image {
	display: block;
	width: 100%;
	max-height: 360px;
	object-fit: cover;
}

.lamorc-popup-body {
	padding: 28px;
}

.lamorc-popup-title {
	margin: 0 0 10px;
	font-size: 30px;
	line-height: 1.15;
	color: #102447;
}

.lamorc-popup-dates {
	display: inline-block;
	margin: 0 0 16px;
	padding: 8px 12px;
	border-radius: 999px;
	background: #eef4ff;
	color: #103ea8;
	font-size: 14px;
	font-weight: 700;
}

.lamorc-popup-content {
	color: #445065;
	line-height: 1.7;
}

.lamorc-popup-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}

.lamorc-popup-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 18px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.lamorc-popup-button-primary {
	background: #103ea8;
	color: #ffffff;
}

.lamorc-popup-button-secondary {
	background: #eef5ff;
	color: #103ea8;
}

.lamorc-popup-button-disabled {
	opacity: 0.7;
	cursor: default;
}

@media (max-width: 1024px) {
	.lamorc-services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.lamorc-services-grid {
		grid-template-columns: 1fr;
	}

	.lamorc-services-section-heading {
		font-size: 26px;
	}

	.lamorc-popup-body {
		padding: 20px;
	}

	.lamorc-popup-title {
		font-size: 24px;
	}

	.lamorc-popup-close {
		top: 10px;
		right: 10px;
		width: 40px;
		height: 40px;
	}
}

.lamorc-project-report-section {
	margin-top: 48px;
	padding-top: 12px;
}

.lamorc-project-report-section-home {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
}

.lamorc-project-report-section-full {
	margin-top: 0;
	padding-top: 0;
}

.lamorc-project-report-heading {
	margin: 0 0 28px;
}

.lamorc-project-report-home-heading {
	margin: 0 0 24px;
	text-align: center;
	font-size: 24px;
	line-height: 1.3;
	font-weight: 600;
}

.lamorc-project-report-summary-grid,
.lamorc-project-report-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.lamorc-project-report-list-grid {
	align-items: stretch;
}

.lamorc-project-report-home-showcase {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.18fr);
	gap: 28px;
	align-items: stretch;
}

.lamorc-project-report-home-stack {
	display: flex;
	flex-direction: column;
	height: 100%;
	gap: 18px;
	padding: 18px;
	background: #ffffff;
	border: 1px solid #e6ebf2;
	border-radius: 18px;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.lamorc-project-report-grid-home {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.lamorc-project-report-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 18px;
}

.lamorc-project-report-summary-grid {
	margin-bottom: 28px;
}

.lamorc-project-report-summary-card,
.lamorc-project-report-card {
	background: #ffffff;
	border: 1px solid #dfe7f4;
	border-radius: 20px;
	box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.lamorc-project-report-feature-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	height: 100%;
	padding: 18px;
	border: 1px solid #e6ebf2;
	border-radius: 18px;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
}

.lamorc-project-report-feature-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.lamorc-project-report-feature-image,
.lamorc-project-report-tile-image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.lamorc-project-report-image {
	background: linear-gradient(180deg, #eef4ff 0%, #ffffff 100%);
}

.lamorc-project-report-canvas {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 220px;
	padding: 20px;
	background:
		radial-gradient(circle at top right, rgba(16, 62, 168, 0.14), transparent 36%),
		linear-gradient(135deg, #f5f9ff 0%, #ddeaff 100%);
}

.lamorc-project-report-canvas-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(16, 62, 168, 0.14);
	color: #103ea8;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	box-shadow: 0 10px 24px rgba(16, 62, 168, 0.1);
}

.lamorc-project-report-feature-image {
	aspect-ratio: 1 / 1;
	border-radius: 12px;
}

.lamorc-project-report-tile-image {
	aspect-ratio: 1 / 1;
	border-radius: 12px;
}

.lamorc-project-report-summary-card {
	padding: 24px 18px;
	text-align: center;
}

.lamorc-project-report-summary-count {
	font-size: 34px;
	line-height: 1;
	font-weight: 800;
	color: #103ea8;
}

.lamorc-project-report-summary-label {
	margin-top: 10px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #40516f;
}

.lamorc-project-report-card {
	display: block;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	margin: 0;
}

.lamorc-project-report-card:hover,
.lamorc-project-report-feature-card:hover,
.lamorc-project-report-more-link:hover {
	transform: none;
}

.lamorc-project-report-card-home {
	min-height: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.lamorc-project-report-card-home .lamorc-project-report-canvas {
	height: auto;
	aspect-ratio: 1 / 1;
	padding: 16px;
	border-radius: 12px;
}

.lamorc-project-report-name {
	display: block;
	padding: 16px 18px 20px;
	font-size: 18px;
	line-height: 1.35;
	font-weight: 700;
	color: #102447;
}

.lamorc-project-report-card-home .lamorc-project-report-name {
	padding: 8px 0 0;
	font-size: 14px;
	line-height: 1.35;
	text-align: center;
	min-height: 0;
}

.lamorc-project-report-home-copy {
	display: block;
	margin-top: 6px;
	color: #5b6472;
	font-size: 11px;
	line-height: 1.45;
	font-weight: 500;
}

.lamorc-project-report-more-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	color: inherit;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease;
}

.lamorc-project-report-list-card .lamorc-service-description {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.lamorc-project-report-support-copy {
	margin: 0 0 20px;
	min-height: 88px;
}

.lamorc-project-report-feature-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: flex-end;
	padding-top: 20px;
}

.lamorc-project-report-support-copy-home {
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: 100%;
	margin-bottom: 0;
}

.lamorc-project-report-cta {
	width: 100%;
	flex: 0 0 auto;
	min-height: 54px;
	padding: 14px 22px;
	white-space: normal;
	text-align: center;
	line-height: 1.5;
}

.lamorc-project-report-cta-whatsapp {
	background: #25d366;
	color: #ffffff;
	box-shadow: 0 14px 28px rgba(37, 211, 102, 0.22);
}

.lamorc-project-report-cta-whatsapp:hover,
.lamorc-project-report-cta-whatsapp:focus {
	color: #ffffff;
	background: #22c55e;
}

.lamorc-project-report-cta-partner {
	background: #eef5ff;
	color: #103ea8;
	box-shadow: 0 12px 24px rgba(16, 62, 168, 0.14);
	animation: lamorc-project-report-cta-blink 1.35s ease-in-out infinite;
}

.lamorc-project-report-cta-partner:hover,
.lamorc-project-report-cta-partner:focus {
	color: #103ea8;
	background: #dbe9ff;
	animation-play-state: paused;
}

@keyframes lamorc-project-report-cta-blink {
	0%,
	100% {
		box-shadow: 0 12px 24px rgba(16, 62, 168, 0.14);
	}
	50% {
		box-shadow: 0 12px 24px rgba(16, 62, 168, 0.14), 0 0 0 6px rgba(16, 62, 168, 0.1);
	}
}

.lamorc-project-report-list-card {
	position: relative;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.lamorc-project-report-list-card:hover,
.lamorc-project-report-list-card:focus-within {
	transform: translateY(-8px);
	box-shadow: 0 24px 54px rgba(15, 23, 42, 0.16);
	border-color: rgba(16, 62, 168, 0.22);
}

.lamorc-project-report-list-card::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 18px;
	border: 1px solid transparent;
	pointer-events: none;
	transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.lamorc-project-report-list-card:hover::after,
.lamorc-project-report-list-card:focus-within::after {
	border-color: rgba(16, 62, 168, 0.16);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.lamorc-project-report-list-card:hover .lamorc-service-title,
.lamorc-project-report-list-card:focus-within .lamorc-service-title {
	color: #103ea8;
}

.lamorc-news-page {
	padding: 12px 0 32px;
}

.lamorc-news-shell {
	max-width: 1724px;
	margin: 0 auto;
	padding: 0 20px;
}

.lamorc-news-page-heading {
	margin: 0 0 26px;
	text-align: center;
	font-size: 34px;
	line-height: 1.15;
	font-weight: 700;
	color: #0b2c83;
}

.lamorc-news-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
}

.lamorc-news-card {
	display: grid;
	grid-template-rows: 58% 42%;
	width: 100%;
	aspect-ratio: 4 / 7;
	background: #ffffff;
	border: 1px solid #e0e8f4;
	border-radius: 22px;
	box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
	overflow: hidden;
	box-sizing: border-box;
}

.lamorc-news-card-image {
	height: 100%;
}

.lamorc-news-card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lamorc-news-card-body {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
	padding: 14px 16px 16px;
	gap: 10px;
}

.lamorc-news-card-title {
	display: block;
	margin: 0;
	padding: 0;
	font-size: clamp(15px, 1.1vw, 20px);
	line-height: 1.3;
	height: 3.9em;
	overflow: hidden;
	color: #102447;
	font-weight: 700;
	box-sizing: border-box;
}

.lamorc-news-card-excerpt {
	display: block;
	flex: 1 1 auto;
	margin: 0;
	padding: 0;
	min-height: 0;
	height: 7.25em;
	overflow: hidden;
	color: #50607a;
	font-size: clamp(12px, 0.9vw, 14px);
	line-height: 1.45;
	font-weight: 400;
	box-sizing: border-box;
}

.lamorc-news-card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 0 0 auto;
	gap: 10px;
	min-height: 20px;
	padding: 0;
	box-sizing: border-box;
	margin-top: auto;
	width: 100%;
	min-width: 0;
}

.lamorc-news-card-meta-left {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1 1 auto;
	min-width: 0;
}

.lamorc-news-card-date {
	font-size: 11px;
	line-height: 20px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #6a7890;
	white-space: nowrap;
}

.lamorc-news-share {
	position: relative;
	display: flex;
	align-items: center;
}

.lamorc-news-share-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #103ea8;
	cursor: pointer;
	transition: color 0.2s ease, transform 0.2s ease;
}

.lamorc-news-share-toggle svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.lamorc-news-share:hover .lamorc-news-share-toggle,
.lamorc-news-share.is-open .lamorc-news-share-toggle {
	color: #0b2c83;
	transform: translateY(-1px);
}

.lamorc-news-share-menu {
	position: absolute;
	left: 0;
	bottom: calc(100% + 8px);
	z-index: 30;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	min-width: 172px;
	padding: 8px;
	border: 1px solid #d9e2f0;
	border-radius: 14px;
	background: #ffffff;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(6px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.lamorc-news-share:hover .lamorc-news-share-menu,
.lamorc-news-share.is-open .lamorc-news-share-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

@media (hover: none), (pointer: coarse) {
	.lamorc-news-share:hover .lamorc-news-share-toggle {
		color: #103ea8;
		transform: none;
	}

	.lamorc-news-share:hover .lamorc-news-share-menu {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(6px);
	}

	.lamorc-news-share.is-open .lamorc-news-share-toggle {
		color: #0b2c83;
		transform: translateY(-1px);
	}

	.lamorc-news-share.is-open .lamorc-news-share-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}
}

.lamorc-news-share-option {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #23406c;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
}

.lamorc-news-share-option svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.lamorc-news-share-option:hover {
	transform: translateY(-1px);
	color: #103ea8;
}

.lamorc-news-share-option-button {
	width: 28px;
	font-family: inherit;
	text-align: center;
}

.lamorc-news-share-option-whatsapp {
	color: #25d366;
}

.lamorc-news-share-option-telegram {
	color: #229ed9;
}

.lamorc-news-share-option-facebook {
	color: #1877f2;
}

.lamorc-news-share-option-x {
	color: #111111;
}

.lamorc-news-share-option-instagram {
	color: #dd2a7b;
}

.lamorc-news-share-option-linkedin {
	color: #0a66c2;
}

.lamorc-news-share-option-gmail {
	color: #ea4335;
}

.lamorc-news-share-option-copy {
	color: #5b6b84;
}

.lamorc-news-read-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: #103ea8;
	font-size: 11px;
	line-height: 20px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: none;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.lamorc-news-read-more:hover {
	transform: none;
	box-shadow: none;
	color: #0b2c83;
}

.lamorc-news-cta-row {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
	margin-top: -4px;
}

.lamorc-news-cta-row-mobile {
	display: none;
}

.lamorc-news-load-more-wrap {
	display: block !important;
	width: 100% !important;
	margin: 24px auto 0 !important;
	text-align: center !important;
	clear: both;
}

.lamorc-news-load-more-button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	padding: 14px 28px;
	margin: 0 auto !important;
	border: 1px solid #0b2c83;
	border-radius: 999px;
	background: #0b2c83;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s ease;
	box-shadow: 0 14px 30px rgba(11, 44, 131, 0.2);
}

.lamorc-news-load-more-button:hover:not(:disabled) {
	transform: translateY(-1px);
	background: #103ea8;
	box-shadow: 0 18px 36px rgba(16, 62, 168, 0.24);
}

.lamorc-news-load-more-button:disabled,
.lamorc-news-load-more-button.is-loading {
	cursor: wait;
	opacity: 0.82;
	transform: none;
}

@keyframes lamorcPartnerCtaBlink {
	0%,
	100% {
		background-color: #38bdf8;
		box-shadow: 0 14px 30px rgba(56, 189, 248, 0.32);
	}

	50% {
		background-color: #0ea5e9;
		box-shadow: 0 18px 38px rgba(14, 165, 233, 0.48);
	}
}

.lamorc-news-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	border-radius: 999px;
	background: #38bdf8;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 14px 30px rgba(56, 189, 248, 0.32);
	animation: lamorcPartnerCtaBlink 1.25s ease-in-out infinite;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lamorc-news-cta-button:hover {
	transform: translateY(-1px);
	background: #0ea5e9;
	box-shadow: 0 18px 38px rgba(14, 165, 233, 0.48);
}

.entry-content [data-lamorc-blog-cta="true"] a {
	background: #38bdf8 !important;
	color: #ffffff !important;
	box-shadow: 0 14px 30px rgba(56, 189, 248, 0.32) !important;
	animation: lamorcPartnerCtaBlink 1.25s ease-in-out infinite;
}

.entry-content [data-lamorc-blog-cta="true"] a:hover {
	background: #0ea5e9 !important;
	transform: translateY(-1px);
}

@media (max-width: 1024px) {
	.lamorc-project-report-summary-grid,
	.lamorc-project-report-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lamorc-project-report-home-showcase {
		grid-template-columns: 1fr;
	}

	.lamorc-project-report-more-wrap {
		margin-top: 16px;
	}

	.lamorc-news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lamorc-news-card {
		aspect-ratio: 4 / 7;
	}

	.lamorc-news-cta-row-desktop {
		display: none;
	}

	.lamorc-news-cta-row-mobile {
		display: flex;
	}
}

@media (max-width: 767px) {
	.lamorc-news-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.lamorc-project-report-heading {
		font-size: 26px;
	}

	.lamorc-project-report-home-heading {
		font-size: 22px;
	}

	.lamorc-project-report-section-home {
		padding-left: 16px;
		padding-right: 16px;
	}

	.lamorc-project-report-summary-grid,
	.lamorc-project-report-grid {
		grid-template-columns: 1fr;
	}

	.lamorc-project-report-grid-home {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.lamorc-project-report-home-stack,
	.lamorc-project-report-feature-card {
		padding: 14px;
	}

	.lamorc-project-report-more-link {
		font-size: 13px;
	}

	.lamorc-news-page-heading {
		font-size: 26px;
	}

	.lamorc-news-card-title {
		font-size: 22px;
	}

	.lamorc-news-card-image img {
		height: 220px;
	}

	.lamorc-news-card-meta {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 8px;
		width: 100%;
		min-width: 0;
	}

	.lamorc-news-card-meta-left {
		flex: 1 1 auto;
		min-width: 0;
	}

	.lamorc-news-card-date {
		font-size: 10px;
		letter-spacing: 0.02em;
	}

	.lamorc-news-read-more {
		flex: 0 0 auto;
		font-size: 10px;
	}
}
