/* Color theme */
/*
html {
    -moz-filter: grayscale(100%)!important;
    -webkit-filter: grayscale(100%)!important;
    filter: gray!important; 
    filter: grayscale(100%)!important; 
}*/

/* Focus section action buttons — 與「焦點」標題同款樣式 */
.layout-home .focus-heading-row {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
	flex-wrap: wrap;
}

.layout-home .focus-heading-row > span:first-child {
	color: #571a64;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
}

.layout-home .focus-action-btns {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
	flex-wrap: wrap;
}

.layout-home .focus-action-btn {
	display: inline-block;
	padding: 0;
	background: none !important;
	border: 0 !important;
	border-radius: 0;
	box-shadow: none !important;
	color: #571a64 !important;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	text-align: left;
	text-decoration: none !important;
	cursor: pointer;
	white-space: nowrap;
}

.layout-home .focus-action-btn:hover,
.layout-home .focus-action-btn:focus {
	background: none !important;
	color: #571a64 !important;
	text-decoration: underline !important;
}

body.small-font-size .layout-home .focus-heading-row > span:first-child,
body.small-font-size .layout-home .focus-action-btn {
	font-size: 22.5px;
}

body.large-font-size .layout-home .focus-heading-row > span:first-child,
body.large-font-size .layout-home .focus-action-btn {
	font-size: 36.4px;
}

@media (max-width: 640px) {
	.layout-home .focus-heading-row > span:first-child,
	.layout-home .focus-action-btn {
		font-size: 22px;
	}
	.layout-home .focus-action-btns {
		gap: 14px;
	}
}
