/*
Theme Name: Iconica Base (Modified for Suzy G LP)
Theme URI: 
Author: Iconica Communications
Author URI: https://iconica.ca
Description: Base block theme for Iconica Client sites.
Requires at least: 6.0
Tested up to: 6.5.2
Requires PHP: 5.7
Version: 2024-8-23
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: full-site-editing, 
*/

.entry-content, 
footer {
    margin: 0;
}
header > .is-position-sticky {
    position: fixed;
    width: 100%;
}
.entry-content a {
    transition: all 0.5s;
}

/* ====================== Block elements ======================*/  

/* Columns */
.entry-content .wp-block-columns:not(.entry-content > .alignfull) {
    gap: 2.5rem;
}

/* Buttons */
.wp-block-button__link {
    transition:all 0.5s;
}

/* Excerpt */
.wp-block-post-excerpt__excerpt {
    word-break: break-word;
}

/* Images */
figcaption.wp-element-caption {
    font-size: 1.13rem !important;
}

/* ====================== Custom Patterns ======================*/  

/* Custom Pattern: 2-column pattern with image on left or right */
.two-col-img-left, 
.two-col-img-right {
    gap: 0;
}
.two-col-img-left .inner-wrapper,
.two-col-img-right .inner-wrapper {
    box-sizing: border-box;
}
/* If image is on right column */
.two-col-img-right .inner-wrapper {
    padding-right: 40px;
}
/* If image is on left column */
.two-col-img-left .inner-wrapper {
    padding-left: 40px;
}

/* .grid-layout items */
.grid-layout {
    display: flex;
    flex-wrap: wrap;
}
.grid-layout .full-width {
    flex-basis: 100%;
}
.grid-layout .half-width {
    flex-basis: 50%;
}
.grid-layout .quarter-width {
    flex-basis: 25%;
}
.grid-layout .third-width {
    flex-basis: 33.3%;
}
.grid-layout .eighth-width {
    flex-basis: 12.5%;
}