/*
Theme Name: Evolab
Description: Evolab offers a powerful design with a clean, modern layout—perfect for creating functional websites for Laboratory, Scientific Research, and related fields. Evolab is the ideal choice for building a professional and credible online presence that highlights your expertise and builds trust with researchers, institutions, and partners.
Author: Jegtheme
Author URI: https://support.jegtheme.com/
Theme URI: https://fse.jegtheme.com/evolab/
Version: 1.0.0
Stable tag: 1.0.0
Requires at least: 6.2
Tested up to: 6.6
Requires PHP: 7.0
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: evolab
Tags: grid-layout,three-columns,block-patterns,block-styles,editor-style,full-site-editing
Copyright: © Jegtheme. All rights reserved.
*/

:root{
    
}
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > .block-library-block__reusable-block-container {
    max-width: 100%;
}

/*
 * Fix: Gutenverse 动画兜底
 * 部分区块（如首页 "We Provide Trusted" 等）带有 `animated guten-element-hide desktop-fadeIn` 类，
 * 默认被 plugin CSS 设为 visibility:hidden，需要 animation-basic.js 在 load/scroll 时机触发动画后才显示。
 * 在主题切换 / 缓存命中的某些情况下 JS 触发时机错过，导致元素一直保持隐藏。
 * 这里强制保证 hidden 兜底元素可见，淡入动画在 JS 成功触发时仍按 opacity 0→1 正常播放。
 */
.guten-element-hide[class*="desktop-"],
.guten-element-hide[class^="desktop-"],
.guten-element-hide[class*="__desktop-"],
.guten-element-hide[class^="__desktop-"],
.guten-element-hide[class*="tablet-"],
.guten-element-hide[class^="tablet-"],
.guten-element-hide[class*="__tablet-"],
.guten-element-hide[class^="__tablet-"],
.guten-element-hide[class*="mobile-"],
.guten-element-hide[class^="mobile-"],
.guten-element-hide[class*="__mobile-"],
.guten-element-hide[class^="__mobile-"] {
    visibility: visible !important;
}