.ml-blog-archive-inner {
	width: min(100% - 80px, 1600px);
	margin-inline: auto;
}

.ml-blog-archive {
	padding: 80px 0 100px;
	background: #ffffff;
	color: #0a0a0f;
}

.ml-archive-header {
	margin-bottom: 48px;
}

.ml-archive-header h1 {
	margin: 0;
	font-size: 70px;
	line-height: 1;
	color: #0a0a0f;
}

.ml-blog-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 48px;
	align-items: start;
}

.ml-blog-content {
	min-width: 0;
}

.ml-blog-grid-archive {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px 28px;
}

.ml-blog-archive .ml-blog-thumb {
	display: block;
	overflow: hidden;
	border-radius: 6px;
	background: #f5f5f5;
	aspect-ratio: 16 / 10;
	text-decoration: none;
}

.ml-blog-archive .ml-blog-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ml-blog-archive .ml-blog-title {
	margin: 14px 0 0;
	font-family: "Inter", sans-serif;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.15;
	text-align: center;
}

.ml-blog-archive .ml-blog-title a {
	color: #0a0a0f;
	text-decoration: none;
}

.ml-blog-archive .ml-blog-title a:hover,
.ml-blog-archive .ml-blog-title a:focus,
.ml-blog-archive .ml-blog-title a:focus-visible {
	color: #2368ff;
	text-decoration: none;
}

.ml-blog-sidebar {
	position: sticky;
	top: 120px;
}

.ml-sidebar-box {
	border: 1px solid #efefef;
	border-radius: 8px;
	padding: 24px;
	margin-bottom: 24px;
	background: #ffffff;
}

.ml-sidebar-box h2 {
	margin: 0 0 16px;
	font-size: 18px;
	line-height: 1.2;
	color: #0a0a0f;
}

.ml-sidebar-box ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ml-sidebar-box li {
	border-bottom: 1px solid #f0f0f0;
}

.ml-sidebar-box li:last-child {
	border-bottom: none;
}

.ml-sidebar-box a {
	display: block;
	padding: 10px 0;
	color: #2368ff;
	text-decoration: none;
	font-size: 18px;
}

.ml-sidebar-box a:hover,
.ml-sidebar-box a:focus,
.ml-sidebar-box a:focus-visible {
	color: #0a0a0f;
	text-decoration: none;
}

.ml-blog-sidebar .search-form {
	display: flex;
}

.ml-blog-sidebar .search-form label {
	width: 100%;
}

.ml-blog-sidebar .search-form input[type="search"] {
	width: 100%;
	min-height: 44px;
	border: 1px solid #e5e5e5;
	border-radius: 0;
	padding: 10px 14px;
	font-size: 16px;
}

.ml-blog-sidebar .search-form input[type="submit"],
.ml-blog-sidebar .search-form .search-submit {
	display: none;
}

.ml-pagination {
	margin-top: 56px;
}

.ml-pagination__list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ml-pagination__item {
	margin: 0;
	padding: 0;
}

.ml-pagination a,
.ml-pagination span {
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border: 1px solid #e5e5e5;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #0a0a0f;
	background: #ffffff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
}

.ml-pagination a:hover,
.ml-pagination a:focus,
.ml-pagination a:focus-visible {
	border-color: #2368ff;
	background: #2368ff;
	color: #ffffff;
	text-decoration: none;
}

.ml-pagination .current {
	border-color: #0a0a0f;
	background: #0a0a0f;
	color: #ffffff;
}

.ml-pagination .dots {
	border-color: transparent;
	background: transparent;
	min-width: auto;
	padding-inline: 4px;
}

@media (max-width: 1100px) {
	.ml-blog-layout {
		grid-template-columns: 1fr;
	}

	.ml-blog-sidebar {
		position: static;
	}

	.ml-blog-grid-archive {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.ml-blog-archive-inner {
		width: min(100% - 40px, 1600px);
	}

	.ml-blog-archive {
		padding: 60px 0 80px;
	}

	.ml-archive-header h1 {
		font-size: 52px;
	}

	.ml-blog-grid-archive {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.ml-blog-archive .ml-blog-title {
		font-size: 20px;
	}

	.ml-pagination a,
	.ml-pagination span {
		min-width: 40px;
		height: 40px;
		font-size: 15px;
	}
}

/* Single blog */
.ml-single {
	width: min(100% - 80px, 1600px);
	margin: 40px auto 100px;
	color: #0a0a0f;
}

.ml-single-header {
	margin-bottom: 50px;
	background: #f5f5f5;
	border: 1px solid #f5f5f5;
	border-radius: 10px;
	overflow: hidden;
}

.ml-single-header-grid {
	display: grid;
	grid-template-columns: 55% 45%;
	align-items: center;
}

.ml-single-header-left {
	padding: 40px;
}

.ml-single-title {
	margin: 0 0 20px;
	font-size: 70px;
	line-height: 1;
	color: #0a0a0f;
}

.ml-single-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 14px;
	opacity: .75;
}

.ml-single-meta-sep {
	opacity: .6;
}

.ml-single-featured img {
	width: 100%;
	height: auto;
	display: block;
}

.ml-single-layout {
	display: grid;
	grid-template-columns: 20% 60% 20%;
	align-items: start;
}

.ml-single-col-left {
	position: sticky;
	top: 40px;
}

.ml-single-col-center {
	min-width: 0;
	padding: 0 40px;
}

.ml-single-col-right {
	position: sticky;
	top: 40px;
}

.ml-single-content {
	font-size: 23px;
	line-height: 1.3;
}

.ml-single-content p {
	margin: 0 0 1em;
}

.ml-single-content h2 {
	font-size: 35px;
	line-height: 1.15;
	margin: 25px 0 14px;
}

.ml-single-content h3 {
	font-size: 25px;
	line-height: 1.2;
	margin: 25px 0 12px;
}

.ml-single-content ul,
.ml-single-content ol {
	margin: 0 0 1em 1.2em;
	padding: 0;
}

.ml-single-content li + li {
	margin-top: 4px;
}

.ml-author-label {
	margin-top: 56px;
	margin-bottom: 10px;
	color: #0a0a0f;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
}

.ml-author-box {
	margin-top: 0;
	padding: 24px;
	border: 1px solid #efefef;
	border-radius: 12px;
	display: flex;
	gap: 20px;
	align-items: center;
	background: #f5f5f5;
}

.ml-author-avatar {
	flex: 0 0 96px;
}

.ml-author-avatar img {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	display: block;
	object-fit: cover;
}

.ml-author-content {
	min-width: 0;
}

.ml-author-name {
	display: inline-block;
	margin-bottom: 8px;
	color: #0a0a0f;
	font-family: "Shibsted Grotesk", sans-serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.1;
	text-decoration: none;
}

.ml-author-name:hover,
.ml-author-name:focus,
.ml-author-name:focus-visible {
	color: #2368ff;
	text-decoration: none;
}

.ml-author-content p {
	margin: 0;
	color: #333333;
	font-size: 16px;
	line-height: 1.45;
}

@media (max-width: 1200px) {
	.ml-single-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.ml-single-col-left,
	.ml-single-col-right {
		position: static;
	}

	.ml-single-col-center {
		padding: 0;
	}
}

@media (max-width: 900px) {
	.ml-single {
		width: min(100% - 40px, 1600px);
		margin-top: 30px;
	}

	.ml-single-header-grid {
		grid-template-columns: 1fr;
	}

	.ml-single-title {
		font-size: 46px;
	}

	.ml-single-header-left {
		padding: 28px;
	}
}

@media (max-width: 700px) {
	.ml-author-box {
		align-items: flex-start;
		padding: 20px;
		gap: 16px;
	}

	.ml-author-avatar {
		flex: 0 0 72px;
	}

	.ml-author-avatar img {
		width: 72px;
		height: 72px;
	}

	.ml-author-name {
		font-size: 20px;
	}

	.ml-author-content p {
		font-size: 15px;
	}
}

.ml-contact-page {
	color: #0a0a0f;
}

.ml-contact-hero {
	padding: 90px 0 100px;
}

.ml-contact-hero__inner {
	width: min(100% - 80px, 1600px);
	margin-inline: auto;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 80px;
	align-items: center;
}

.ml-contact-hero__title {
	margin: 0 0 34px;
	font-size: 70px;
	line-height: 1;
	color: #0a0a0f;
}

.ml-contact-hero__points {
	list-style: none;
	margin: 0 0 44px;
	padding: 0;
}

.ml-contact-hero__points li {
	position: relative;
	padding-left: 32px;
	margin-bottom: 12px;
	font-size: 23px;
	line-height: 1.3;
	color: #333333;
}

.ml-contact-hero__points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.25em;
	width: 16px;
	height: 16px;
	background-image: url("https://www.marcoloprete.it/wp-content/uploads/2026/06/check-box.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.ml-contact-call__title {
	margin: 0 0 12px;
	font-size: 23px;
	line-height: 1.2;
	color: #0a0a0f;
}

.ml-contact-call__profile-wrap.ml-consulting-cta {
	padding: 0;
	background: transparent;
	color: inherit;
}

.ml-contact-call__profile-wrap.ml-consulting-cta .ml-consulting-cta__profile {
	margin: 0;
}

.ml-contact-note {
	margin: 32px 0 0;
	font-size: 16px;
	line-height: 1.35;
	color: #0a0a0f;
}

.ml-contact-form-box {
	padding: 48px;
	border-radius: 8px;
	background: #f0f0f0;
}

.ml-contact-form-box .wpforms-container {
	margin: 0;
}

.ml-contact-form-box .wpforms-field {
	padding-top: 0;
	padding-bottom: 24px;
}

.ml-contact-form-box input[type="text"],
.ml-contact-form-box input[type="email"],
.ml-contact-form-box input[type="tel"],
.ml-contact-form-box textarea {
	border-radius: 0;
	border: 1px solid #bdbdbd;
	background: #ffffff;
	min-height: 42px;
	font-size: 18px;
}

.ml-contact-form-box textarea {
	min-height: 120px;
}

.ml-contact-form-box .wpforms-submit {
	min-width: 300px;
	min-height: 58px;
	border-radius: 999px;
	background: #2368ff;
	color: #ffffff;
	border: 0;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
}

.ml-contact-form-box .wpforms-submit:hover,
.ml-contact-form-box .wpforms-submit:focus {
	background: #0a0a0f;
	color: #ffffff;
}

@media (max-width: 1100px) {
	.ml-contact-hero__inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.ml-contact-hero__title {
		font-size: 56px;
	}
}

@media (max-width: 700px) {
	.ml-contact-hero__inner {
		width: min(100% - 40px, 1600px);
	}

	.ml-contact-hero {
		padding: 60px 0 80px;
	}

	.ml-contact-hero__title {
		font-size: 44px;
	}

	.ml-contact-hero__points li {
		font-size: 20px;
	}

	.ml-contact-form-box {
		padding: 28px 20px;
	}

	.ml-contact-form-box .wpforms-submit {
		width: 100%;
		min-width: 0;
	}
}

.ml-about-page {
	color: #0a0a0f;
}

.ml-about-hero {
	padding: 72px 0 78px;
	background: #050559;
	color: #ffffff;
}

.ml-about-hero__inner,
.ml-about-intro__inner,
.ml-about-services__inner {
	width: min(100% - 80px, 1600px);
	margin-inline: auto;
}

.ml-about-hero__title {
	margin: 0 0 14px;
	color: #ffffff;
	font-size: 70px;
	line-height: 1;
}

.ml-about-hero__subtitle {
	max-width: 820px;
	margin: 0;
	color: #ffffff;
	font-size: 23px;
	line-height: 1.3;
}

.ml-about-intro {
	padding: 120px 0;
	background: #ffffff;
}

.ml-about-intro__inner {
	display: flex;
	align-items: flex-start;
	gap: 50px;
}

.ml-about-intro__content {
	order: 1;
	flex: 3 1 0;
	min-width: 0;
}

.ml-about-intro__content h2 {
	max-width: none;
	margin: 0 0 24px;
	font-size: 36px;
	line-height: 1.12;
	color: #0a0a0f;
}

.ml-about-intro__content p {
	max-width: none;
	margin: 0 0 14px;
	font-size: 23px;
	line-height: 1.3;
	color: #0a0a0f;
}

.ml-about-intro__profile {
	order: 2;
	flex: 1 1 0;
	width: auto;
	max-width: none;
}

.ml-about-intro__profile .ml-profile-box {
	width: 100%;
	padding: 22px 22px 28px;
}

.ml-about-intro__profile .ml-side-photo img {
	width: 100%;
	display: block;
}

.ml-about-intro__profile .ml-profile-btn {
	width: 100%;
	justify-content: center;
	white-space: nowrap;
}

.ml-about-services {
	padding: 24px 0 40px;
	background: #ffffff;
}

.ml-about-services__inner {
	width: calc(100% - 80px);
	max-width: none;
	margin-inline: auto;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 1.8vw, 28px);
	align-items: stretch;
}

.ml-about-service-card {
	min-height: 100%;
	width: 100%;
	padding: 48px 52px 48px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	color: #ffffff;
}

.ml-about-service-card--web {
	background: #3f2fee;
}

.ml-about-service-card--seo {
	background: #ffd500;
	color: #0a0a0f;
}

.ml-about-service-card--ads {
	background: #6e14cf;
}

.ml-about-service-card__title {
	margin: 0 0 26px;
	font-size: clamp(36px, 2.2vw, 44px);
	line-height: 1.02;
	color: inherit;
}

.ml-about-service-card__text {
	margin: 0 0 34px;
	font-size: 23px;
	line-height: 1.35;
	color: inherit;
}

.ml-about-service-card__list {
	list-style: none;
	margin: 0 0 40px;
	padding: 0;
}

.ml-about-service-card__list li {
	position: relative;
	padding: 16px 0 16px 28px;
	border-bottom: 1px solid #ffffff;
	font-size: 23px;
	font-weight: 700;
	line-height: 1.25;
	color: inherit;
}

.ml-about-service-card__list li:last-child {
	border-bottom: 0;
}

.ml-about-service-card--seo .ml-about-service-card__list li {
	border-bottom-color: #0a0a0f;
}

.ml-about-service-card__list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 14px;
	font-size: 23px;
	font-weight: 700;
	line-height: 1;
}

.ml-about-service-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: fit-content;
	margin-top: auto;
	padding: 18px 34px;
	border-radius: 999px;
	background: #0a0a0f;
	color: #ffffff;
	font-size: 23px;
	font-weight: 700;
	line-height: 1;
	max-width: 100%;
	text-align: center;
	text-decoration: none;
}

.ml-about-service-card__button::after {
	content: "";
	display: inline-block;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	background-image: url("https://www.marcoloprete.it/wp-content/uploads/2026/01/top-right.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: transform 0.2s ease;
}

.ml-about-service-card__button:hover,
.ml-about-service-card__button:focus,
.ml-about-service-card__button:focus-visible {
	background: #2368ff;
	color: #ffffff;
	text-decoration: none;
}

.ml-about-service-card__button:hover::after,
.ml-about-service-card__button:focus-visible::after {
	transform: translate(3px, -3px);
}

@media (max-width: 768px) {
	.ml-about-intro {
		padding: 60px 0;
	}

	.ml-about-intro__content h2,
	.ml-about-service-card__title {
		font-size: 35px;
		line-height: 1.08;
	}
}

@media (max-width: 1100px) {
	.ml-about-intro__inner {
		flex-direction: column;
		gap: 40px;
	}

	.ml-about-intro__content,
	.ml-about-intro__profile {
		order: initial;
		width: 100%;
	}

	.ml-about-services__inner {
		grid-template-columns: 1fr;
	}

	.ml-about-hero__title {
		font-size: 56px;
	}
}

@media (max-width: 700px) {
	.ml-about-hero__inner,
	.ml-about-intro__inner,
	.ml-about-services__inner {
		width: min(100% - 40px, 1600px);
	}

	.ml-about-hero {
		padding: 56px 0 64px;
	}

	.ml-about-hero__title {
		font-size: 46px;
	}

	.ml-about-hero__subtitle,
	.ml-about-intro__content p {
		font-size: 20px;
	}

	.ml-about-service-card {
		padding: 32px 28px 28px;
	}

	.ml-about-service-card__text {
		font-size: 20px;
	}

	.ml-about-service-card__list li {
		font-size: 18px;
	}

	.ml-about-service-card__button {
		font-size: 20px;
		padding: 16px 24px;
	}
}

.ml-person-page {
	color: #0a0a0f;
}

.ml-person-page__inner {
	width: min(100% - 80px, 1600px);
	margin-inline: auto;
	padding: 40px 0 90px;
}

.ml-person-hero {
	display: grid;
	grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
	gap: 50px;
	align-items: center;
	margin-bottom: 32px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.ml-person-hero__media {
	min-width: 0;
}

.ml-person-hero__image-wrap {
	border-radius: 10px;
	overflow: hidden;
	background: #eef2f7;
}

.ml-person-hero__image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.ml-person-hero__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	color: #ffffff;
	background: #2368ff;
	font-family: "Shibsted Grotesk", sans-serif;
	font-size: 64px;
	font-weight: 600;
}

.ml-person-hero__content {
	min-width: 0;
}

.ml-person-hero__title {
	margin: 0 0 12px;
	font-size: clamp(40px, 5vw, 64px);
	line-height: 1.02;
	font-weight: 600;
	color: #0a0a0f;
	letter-spacing: -0.03em;
}

.ml-person-hero__job-title {
	margin: 0 0 24px;
	font-size: clamp(24px, 2.5vw, 34px);
	line-height: 1.15;
	font-weight: 400;
	color: #8a8a8a;
	letter-spacing: -0.02em;
}

.ml-person-hero__intro {
	margin-bottom: 28px;
	color: #0a0a0f;
	font-size: 25px;
	line-height: 1.3;
}

.ml-person-hero__intro p {
	margin: 0 0 14px;
}

.ml-person-hero__intro p:last-child {
	margin-bottom: 0;
}

.ml-person-hero__actions {
	display: flex;
	flex-wrap: nowrap;
	gap: 14px;
	align-items: center;
	margin-bottom: 18px;
}

.ml-person-hero__actions--inline {
	gap: 30px;
	align-items: stretch;
	max-width: 760px;
}

.ml-person-page .ml-person-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 14px 24px;
	border-radius: 999px;
	border: 1px solid transparent;
	font-size: 23px;
	font-weight: 500;
	line-height: 1.1;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ml-person-page .ml-person-action:hover,
.ml-person-page .ml-person-action:focus,
.ml-person-page .ml-person-action:focus-visible {
	text-decoration: none;
	transform: translateY(-1px);
}

.ml-person-page .ml-person-action--primary {
	background: #2368ff;
	color: #ffffff;
}

.ml-person-page .ml-person-action--primary:hover,
.ml-person-page .ml-person-action--primary:focus,
.ml-person-page .ml-person-action--primary:focus-visible {
	background: #0a0a0f;
	color: #ffffff;
}

.ml-person-page .ml-person-action--secondary {
	background: #ffffff;
	color: #0a0a0f;
	border-color: #d8e0ea;
}

.ml-person-page .ml-person-action--secondary:hover,
.ml-person-page .ml-person-action--secondary:focus,
.ml-person-page .ml-person-action--secondary:focus-visible {
	background: #f5f5f5;
	color: #0a0a0f;
	border-color: #c8d2df;
}

.ml-person-hero__actions--inline .ml-person-action--primary {
	margin-bottom: 0;
	display: inline-flex;
	flex: 1 1 0;
	align-items: center;
	justify-content: center;
	min-height: 72px;
	padding: 20px 34px;
	border-radius: 999px;
	background: #2368ff;
	color: #ffffff;
	font-size: 23px;
	line-height: 1.2;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	width: 100%;
}

.ml-person-hero__actions--inline .ml-person-action--primary:hover,
.ml-person-hero__actions--inline .ml-person-action--primary:focus,
.ml-person-hero__actions--inline .ml-person-action--primary:focus-visible {
	background: #1957df;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-1px);
}

.ml-person-hero__actions--inline .ml-person-action--primary::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-left: 12px;
	background-image: url("https://www.marcoloprete.it/wp-content/uploads/2026/01/top-right.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	flex: 0 0 auto;
}

.ml-person-section {
	margin-bottom: 24px;
	padding: 36px 38px;
	border: 1px solid #dddddd;
	border-radius: 10px;
	background: #ffffff;
}

.ml-person-section__title {
	margin: 0 0 20px;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 600;
	color: #0a0a0f;
}

.ml-person-section__content {
	max-width: none;
	color: #0a0a0f;
	font-size: 23px;
	line-height: 1.3;
	margin-bottom: 10px;
}

.ml-person-section__content p {
	margin: 0 0 16px;
}

.ml-person-section__content > *:last-child {
	margin-bottom: 0;
}

.ml-person-skills {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.ml-person-skills__item {
	display: inline-flex;
	align-items: center;
	min-height: 46px;
	padding: 10px 18px;
	border-radius: 999px;
	background: #edf3ff;
	border: 1px solid #d9e6ff;
	color: #183153;
	font-size: 23px;
	line-height: 1.3;
	font-weight: 400;
}

.ml-person-sameas {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 14px;
}

.ml-person-sameas__item {
	min-width: 0;
}

.ml-person-sameas__link {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 12px 18px;
	border-radius: 18px;
	background: #f7f9fc;
	border: 1px solid #e2e8f0;
	color: #0f172a;
	text-decoration: none;
	text-align: center;
	font-size: 23px;
	font-weight: 400;
	line-height: 1.35;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.ml-person-sameas__link:hover,
.ml-person-sameas__link:focus,
.ml-person-sameas__link:focus-visible {
	background: #eef4ff;
	border-color: #cfe0ff;
	color: #2368ff;
	text-decoration: none;
	transform: translateY(-1px);
}

.ml-person-email-card {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	min-height: 58px;
	padding: 10px 18px;
	border-radius: 999px;
	background: #f7f9fc;
	border: 1px solid #e2e8f0;
	color: #0a0a0f;
	text-decoration: none;
}

.ml-person-hero__actions--inline .ml-person-email-card {
	display: flex;
	gap: 0;
	min-height: 0;
	min-width: 0;
	color: #0a0a0f;
	flex: 1 1 0;
	width: 100%;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	text-decoration: none;
}

.ml-person-email-card:hover,
.ml-person-email-card:focus,
.ml-person-email-card:focus-visible {
	background: #eef4ff;
	border-color: #cfe0ff;
	color: #0a0a0f;
	text-decoration: none;
}

.ml-person-hero__actions--inline .ml-person-email-card:hover,
.ml-person-hero__actions--inline .ml-person-email-card:focus,
.ml-person-hero__actions--inline .ml-person-email-card:focus-visible {
	background: transparent;
	color: #0a0a0f;
	text-decoration: none;
}

.ml-person-email-card__label {
	display: block;
	font-size: 20px;
	line-height: 1.2;
	color: #6b7280;
}

.ml-person-email-card__text {
	display: block;
	font-size: 23px;
	line-height: 1.3;
	font-weight: 500;
	color: #0a0a0f;
	word-break: break-word;
}

.ml-person-contact__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

@media (max-width: 1080px) {
	.ml-person-hero {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 0;
	}

	.ml-person-hero__media {
		max-width: 460px;
	}

	.ml-person-hero__title {
		font-size: 56px;
	}

	.ml-person-hero__job-title {
		font-size: 30px;
	}
}

@media (max-width: 700px) {
	.ml-person-page__inner {
		width: min(100% - 40px, 1600px);
		padding: 28px 0 70px;
	}

	.ml-person-section {
		padding: 24px;
	}

	.ml-person-hero {
		gap: 24px;
		margin-bottom: 20px;
		padding: 0;
	}

	.ml-person-hero__title {
		font-size: 44px;
	}

	.ml-person-hero__job-title {
		font-size: 24px;
		margin-bottom: 18px;
	}

	.ml-person-hero__intro,
	.ml-person-section__content {
		font-size: 20px;
	}

	.ml-person-hero__actions {
		flex-wrap: wrap;
	}

	.ml-person-hero__actions--inline {
		flex-direction: column;
		align-items: stretch;
		gap: 40px;
	}

	.ml-person-hero__actions--inline .ml-person-email-card {
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	.ml-person-hero__actions--inline .ml-person-email-card__label,
	.ml-person-hero__actions--inline .ml-person-email-card__text {
		text-align: center;
	}

	.ml-person-hero__actions--inline .ml-person-action--primary,
	.ml-person-hero__actions--inline .ml-person-email-card {
		width: 100%;
		min-width: 0;
	}

	.ml-person-page .ml-person-action {
		width: 100%;
	}

	.ml-person-email-card {
		width: 100%;
	}

	.ml-person-contact__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.ml-person-section {
		margin-bottom: 18px;
	}

	.ml-person-section__title {
		font-size: 32px;
	}

	.ml-person-skills__item,
	.ml-person-sameas__link {
		font-size: 16px;
	}
}
