// WordPress custom properties from theme.json // stylelint-disable custom-property-pattern, csstools/value-no-unknown-custom-properties @use '../variables' as *; @use '../helpers/clamp' as *; // Error 404 title .block-error-404 { .container { @media (min-width: $breakpoint-mobile) { padding-bottom: 10%; padding-top: 10%; } } .content { text-align: center; } h1 { font-size: clamp-calc($breakpoint-mobile, 1600px, 60px, 120px); line-height: var(--wp--custom--typography--heading-core-line-height); margin-bottom: 1.25rem; } }