/* Additional theme styles and Bootstrap tweaks */
.object-fit-cover { object-fit: cover; width:100%; height:100%; }
.ratio > img, .ratio > .wp-post-image { width:100%; height:100%; object-fit:cover; }
.container { max-width: var(--mt-container-max); }

/***** Header shrink on scroll *****/
.scrolled .site-branding img { max-height: calc(var(--mt-logo-h) - 14px); }
.scrolled .header-nav-bar { 
	padding: 6px;
  }

/* Link underline animation */
.navbar .nav-link, .card a { position:relative; }
.navbar .nav-link:after, .card a:after { content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background: currentColor; transition: width .25s ease; }
.navbar .nav-link:hover:after, .card a:hover:after { width:100%; }

/* Forms */
form .form-control, form .form-select { border-radius: .5rem; }

/* High contrast mode for accessibility */
@media (prefers-contrast: more){
  a { text-decoration: underline; }
  .btn { box-shadow: inset 0 0 0 2px rgba(255,255,255,.8); }
}
