/**
 * Button Reset
 *
 */
/**
 * Size
 *
 */
/**
 * Block Cover
 * Creates a block that covers the full width/height of parent div. Typically used on a :before pseudo element
 */
/**
 * Placeholder Color
 *
 */
/**
 * Clearfix
 *
 */
html {
  scroll-behavior: smooth;
}

.work-card, .wp-block-stb-work-card {
  /* flex: 1 1 50%;
  display: flex;
  flex-direction: column; */
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 70px 1fr;
  text-decoration: none;
  color: inherit;
  min-height: 0; /* NEW */
  min-width: 0; /* NEW; needed for Firefox */
}
.work-card > .work-card, .wp-block-stb-work-card > .work-card {
  display: contents;
}

.work-card-header {
  /* padding-bottom: var(--space-xs); */
}

.work-card-header h3 {
  margin: 0px;
}

.work-card-header p {
  margin: 0px;
  font-weight: 400;
}

.work-card-media {
  /* background-color: var(--wp--preset--color--primary); */
  align-self: stretch;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
}

.work-card-media img, .work-card-media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.02);
  transition: all ease-in-out 0.3s;
}

.work-card:hover img {
  transform: scale(1.001);
}

:where(.editor-styles-wrapper) .wp-block-stb-work-card {
  display: grid;
}
/*# sourceMappingURL=style.css.map */
