/* 
/*
Theme Name: ECC Child Theme
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
/* ECC: Gutenberg buttons styled like Elementor buttons (posts only) */
body.single-post .wp-block-button__link,
body.blog .wp-block-button__link,
body.archive .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
    background-color: var( --e-global-color-primary );
    font-family: "Poppins", Sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2em;
    color: var( --e-global-color-2a4efaf );
    padding: 12px 18px 12px 18px;
	    border-radius: 3px;
}

/* Filled button look */
body.single-post .wp-block-button.is-style-fill .wp-block-button__link {
  background: var(--e-global-color-primary, #4b2e83);
  color: #fff;
  border-color: transparent;
}

/* Outline button look */
body.single-post .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--e-global-color-primary, #4b2e83);
  border-color: var(--e-global-color-primary, #4b2e83);
}

/* Hover/focus */
body.single-post .wp-block-button__link:hover {
  transform: translateY(-1px);
  opacity: .95;
}
body.single-post .wp-block-button__link:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
}
