
/*!********************************************************************************!*\
  !*** ../src/features/post-types/post/elements/partials/post-box/post-box.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
 ******************************/
.box.post-box {
  --box-padding: 2rem;
  color: inherit;
}
.box.post-box:focus:not(:focus-visible) {
  outline: none;
}
.box.post-box:focus-visible {
  outline: 2px solid var(--focus-color, var(--primary-color));
  outline-offset: var(--focus-offset, 3px);
}
.box.post-box .post-box-category {
  opacity: 0.6;
}
.box.post-box .post-box-title {
  margin-block: 1.5rem;
}
.box.post-box .show-post {
  pointer-events: none;
}

/*# sourceMappingURL=css-shared-template--post-box.css.map*/