/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

html {

}

figure {
    margin: 0;
}

.clickable-card {
    position: relative;
	
	&:hover {
		transform: translatey(-.5em);
	}
	
	&:hover .featured-service-card__icon-wrapper {
		background-color: oklch(var(--color-action));
	}
	
	&:hover svg {
		stroke: oklch(var(--color-action)) !important;
	}

   & a::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
    }
}

.text-highlight--primary {
	color: oklch(var(--color-primary));
}

.text-highlight--action {
	color: oklch(var(--color-action));
}