
/*!**************************************!*\
  !*** ../src/elements/tile/tile.scss ***!
  \**************************************/
/*******************************
 * Buttons
 ******************************/
/*
 * Applies the complete set of button styles with all desired style variations.
 * This mixin is normally applied to form buttons or links with
 * the desired button classes eg. .button.style-xxx.
 */
/*
 * Contains styles that all of the buttons have in common.
 * Some button styles might opt out or override some of these styles.
 * One benefit of this approach is that all of the buttons will be consistently
 * configurable with the CSS variables defined below.
 */
/*******************************
 * Button Styles
 *
 * Styles should define the way the buttons look. Depending on the project,
 * you may need to optimize each style based on the section / element that
 * a button is used in. For that purpose you can use the predefined CSS
 * variables to easily overwrite the desired colors based on your need.
 ******************************/
/*******************************
 * Inputs
 ******************************/
.tile {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.tile-image {
  overflow: hidden;
  margin-bottom: /* grow(20, 30) */ clamp(1.25rem, 0.9821428571rem + 1.1904761905vw, 1.875rem);
}
.tile-image img {
  width: 100%;
  transition: transform 200ms;
}
.tile:where(:has(a:hover)) .tile-image img {
  transform: scale(1.05);
}
.tile-footer {
  margin-top: auto;
  padding-block-start: /* grow(20, 30) */ clamp(1.25rem, 0.9821428571rem + 1.1904761905vw, 1.875rem);
}

/*# sourceMappingURL=css-wpce--tile.css.map*/