/* Link */
a.wp-block-gfd-link-block.link-block {
    text-decoration: none;
}
/* Anchor Scroll padding */
[id] {
  scroll-margin-top: 160px;
}
/* === Tablet Override === */
.wp-block-group[data-default-column="2fr-1fr"] {
    display:grid;
    grid-template-columns: 2fr 1fr;
}
.wp-block-group[data-default-column="3fr-2fr"] {
    display:grid;
    grid-template-columns: 3fr 2fr;
}
.wp-block-group[data-default-column="1fr-2fr"] {
    display:grid;
    grid-template-columns: 1fr 2fr;
}
.wp-block-group[data-default-column="2fr-3fr"] {
    display:grid;
    grid-template-columns: 2fr 3fr;
}
.wp-block-group[data-default-column="4fr-3fr"] {
    display:grid;
    grid-template-columns: 4fr 3fr;
}
.wp-block-group[data-default-column="200px-1fr-200px"] {
    display:grid;
    grid-template-columns: 200px 1fr 200px;
}

@media (max-width: 1200px) {
	.wp-block-group[data-tablet-column="1fr"] {
        display:grid;
		grid-template-columns: 1fr;
	}
    .wp-block-group[data-tablet-column="1fr"][data-mobile-stack-order="right-to-left"]{
        display:flex !important;
        flex-direction: column-reverse;
    }
	.wp-block-group[data-tablet-column="1fr-1fr"] {
        display:grid;
		grid-template-columns: 1fr 1fr;
	}
	.wp-block-group[data-tablet-column="1fr-1fr-1fr"] {
        display:grid;
		grid-template-columns: 1fr 1fr 1fr;
	}
}
/* === GForms Override === */
input#gform_submit_button_1 {
    padding: 0.8rem 2.5rem;
    font-size: var(--wp--preset--font-size--medium);
}
div.gfield .ginput_container input{
    width: 100%;
    inline-size: 100% !important;
    font-size: var(--wp--preset--font-size--medium);
}
.gform_confirmation_message {
    text-align: center !important;
}

@media (max-width: 768px) {
    .center-on-mobile {
        justify-content: center !important;
    }
}

/* Reverse columns on mobile */
@media (max-width: 768px) {
  .wp-block-group[data-mobile-stack-order="right-to-left"] {
    display:flex !important;
    flex-direction: column-reverse;
  }
}
@media (max-width: 768px) {
    /* === Mobile First (Default) === */
    .wp-block-group[data-mobile-column="1fr"] {
        display:grid;
        grid-template-columns: 1fr;
    }
    .wp-block-group[data-mobile-column="1fr-1fr"] {
        display:grid;
        grid-template-columns: 1fr 1fr;
    }
    .wp-block-group[data-mobile-column="1fr-1fr-1fr"] {
        display:grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
}


/* Has Background Color Style */
.has-accent-1-background-color {
	color: var(--wp--preset--color--base);
}
strong{
    font-weight: 600;
}

.wp-block-search__inside-wrapper {
    padding: 0px !important;
    border-radius:10px;
}

.wp-block-search__inside-wrapper .wp-block-search__input-2 {padding-block: 0px !important;}

.wp-block-search__inside-wrapper .wp-block-search__button{
    padding:0.7rem 20px 0.6rem !important;
    height: 25px;
}
.wp-block-search__inside-wrapper button.wp-block-search__button{
    height: 45px;
}
:root :where(.wp-site-blocks) > *,
:where(.wp-site-blocks) > * {
    margin-block-start: 0rem !important;
    margin-block-end: 0;
}


/* Section Styles */

.is-style-section-purple-pink {
    background: linear-gradient(336deg, rgb(179, 38, 163) 2%, rgb(113, 44, 133) 65%) !important;
}
.is-style-section-doodle {
    background-image: url(/wp-content/themes/gosadi/assets/images/bg-pattern-1a.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size:450px;
}

.is-style-section-doodle:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url(/wp-content/themes/gosadi/assets/images/bg-pattern-1b.svg);
    background-repeat: no-repeat;
    background-position: right top;
    background-size:450px;
    top: 0px;
    left: 0px;
    z-index: -1;
}
.is-style-button-base-with-arrow > *{
    background-image: url(/wp-content/themes/gosadi/assets/images/arrow-right.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 1rem) center;
    background-size: 30px;
}
.is-style-image-orbit-left > * {
    aspect-ratio: 1;
    object-fit: cover;
}
.is-style-image-orbit-left {
    aspect-ratio: 1;
}

.is-style-image-orbit-left img{
    aspect-ratio: 1 !important;
}

.is-style-image-orbit-left {
    border: 2px dashed #712b84;
    border-radius: 100%;
    padding: 10px;
    position:relative;
}

.is-style-image-orbit-left:before {
    content: "";
    position: absolute;
    width: 17px;
    aspect-ratio: 1 / 1;
    left: calc(20% - 20px);
    top: calc(11% - 3px);
    border-radius: 50%;
    background: #712b84;
    z-index: 1
}


/* Navigation Override */
.navigation-seperator {
    /* display: none !important; */
    display: grid !important;
    grid-template-columns: 230px 1fr 100px;
}

.navigation-seperator > *:last-child {
    display: flex;
    justify-content: flex-end;
}
header{
        position: sticky;
    top: 0px;
    z-index: 99;
    background: #FFF;
    box-shadow: -5px 5px 5px #00000021;
}
@media (max-width:768px){
.navigation-seperator {
    /* display: none !important; */
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:"item1 item2"
                        "item3 item3";
}
.navigation-seperator > *:nth-child(1){
    grid-area:item1;
}
.navigation-seperator > *:nth-child(2){
    grid-area:item3;
}
.navigation-seperator > *:nth-child(3){
    grid-area:item2;
}
}

/* Very custom meta */
img.profile_image_product_page {
    border-radius: 100%;
    border: 3px solid var(--wp--preset--color--accent-1);
    width: 60px;
    aspect-ratio: 1;
    background: var(--wp--preset--color--accent-1);
}
.make-it-block{
    display:block !important;
}
.make-it-block > * {
    display:inline !important;
}

.grid-product-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.grid-product-gallery > .grid-item {
    /* width: 100px; */
}

.grid-product-gallery > .grid-item > img {
    width: 100%;
    border: 1px solid var(--wp--preset--color--accent-3) !important;
    border-radius: 10px;
    aspect-ratio: 1;
    object-fit: cover;
}

.channel-grids {
    display: flex;
    gap: 20px;
}

.channel-grids > * {
    width: 200px;
    border: 1px solid var(--wp--preset--color--accent-1);
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.channel-grids > * > a img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.channel-grids > * > a.button {
    background: var(--wp--preset--color--accent-1);
    color: #FFF;
    /* padding: 10px; */
    width: 100%;
    display: block;
    padding-block: 10px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
}

.wp-block-gfd-slider-block button.swipe-prev {
    position: absolute;
    left: -80px;
    top: 130px;
}

.wp-block-gfd-slider-block.wp-slider-block {
    position: relative;
}

.wp-block-gfd-slider-block button.swipe-next {
    position: absolute;
    right: -80px;
    top: 130px;
}

.wp-block-gfd-slider-block button {
    background: #FFF;
    border: 1px solid var(--wp--preset--color--accent-1);
    border-radius: 100%;
    aspect-ratio: 1;
    width: 60px;
}
.wp-block-gfd-slider-block button svg{
    transform:translate(2px,1px);

}
.wp-block-gfd-slider-block button.swipe-prev svg{
    transform:scaleX(-1) translate(2px,1px);

}
.wp-block-gfd-slider-block button svg path {
    fill: var(--wp--preset--color--accent-1);
    stroke: var(--wp--preset--color--accent-1);
}

/* Search box pop-up */

  .gsd-pop { 
    width: calc(100% - 15px); position: absolute; top:50px; left:0px !important;z-index: 99999; background:#fff; border:1px solid #e5e7eb; border-radius:10px;
             box-shadow: 0 12px 28px rgba(0,0,0,.12); padding:0px 6px; max-height:420px; overflow:auto; min-width:260px; }
  .gsd-sec { font:600 12px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial; color:#64748b; padding:8px 8px 6px; 
             text-transform:uppercase; letter-spacing:.04em; position:sticky; top:0; background:#fff; }
  .gsd-item { display:flex; gap:10px; align-items:center; padding:8px; border-radius:10px; cursor:pointer; }
  .gsd-item:hover, .gsd-item[aria-selected="true"] { background:#f8fafc; }
  .gsd-thumb { width:48px; height:48px; border-radius:8px; object-fit:cover; background:#f1f5f9; flex:0 0 48px; }
  .gsd-txt { display:flex; flex-direction:column; gap:2px; line-height:1.2; }
  .gsd-name { font-weight:600; font-size:14px; color:#0f172a; }
  .gsd-attr { font-size:12px; color:#475569; text-transform:capitalize; }
  .gsd-empty { padding:10px; color:#64748b; font-size:13px; }



    .search_result .gsd-grid,
    .search_result_context_1 .gsd-grid,
     .search_result_context_2 .gsd-grid,
        .search_result_context_3 .gsd-grid { display:grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap:14px; }
    
    .search_result .gsd-card,
    .search_result_context_1 .gsd-card,
    .search_result_context_2 .gsd-card,
    .search_result_context_3 .gsd-card { display:block; border:1px solid #eee; border-radius:12px; overflow:hidden; background:#fff; text-decoration:none; color:inherit; }
    
    .search_result .gsd-imgwrap,
    .search_result_context_1 .gsd-imgwrap,
    .search_result_context_2 .gsd-imgwrap,
    .search_result_context_3 .gsd-imgwrap { width:100%; aspect-ratio: 4 / 3; background:#f6f6f6; overflow:hidden; }
    
    .search_result .gsd-imgwrap img,
    .search_result_context_1 .gsd-imgwrap img,
    .search_result_context_2 .gsd-imgwrap img,
    .search_result_context_3 .gsd-imgwrap img { width:100%; height:100%; object-fit:cover; }
    
    .search_result .gsd-title,
    .search_result_context_1 .gsd-title,
    .search_result_context_2 .gsd-title,
    .search_result_context_3 .gsd-title{ padding:10px 12px; font-weight:600; line-height:1.25; font-size:.95rem; }
  


    ul.filters-list {
    list-style-type: none; /* Removes the default bullets */
    padding-left: 0;       /* Optional: removes left indentation */
    margin: 0;
}

ul.filters-list > li > label {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 10px;
}

ul.filters-list > li .filter-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

ul.filters-list > li .filter-label > * {
    margin: 0px;
}

ul.filters-list > li > label input[type="checkbox"] {
    /* border: 5px solid #000; */
}

ul.filters-list > li {
    margin-block: 10px;
    border-bottom: 1px solid #ddd;
}

ul.filters-list .filter-label {}

ul.filters-list .accordion-content label {
    display: flex;
}
ul.filters-list .accordion-content label > *{
    margin-block:5px;
    margin-left:10px;
}

form.wp-block-search__button-inside.wp-block-search__text-button.wp-block-search {
    position: relative;
}

.entry-content > p > img {
    width: 100%;
}
.entry-content > p > a > img {
    width: 100%;
}
.entry-content > * img {
    width: 100%;
}

.wp-block-navigation a.is-current {
  text-decoration: underline;

}
figure.wp-block-image.maker-image:before,
figure.wp-block-post-featured-image.designer-image:before,
figure.wp-block-image.designer-image:before {
    content: "";
    position: absolute;
    width: 30%;
    height: 30%;
    border-radius: 25px;
    z-index: -1;
    left: -12px;
    top: -12px;
    background: #712b84;
}
figure.wp-block-image.maker-image:after,
figure.wp-block-post-featured-image.designer-image:after,
figure.wp-block-image.designer-image:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 50%;
    border-radius: 25px;
    z-index: -1 !important;
    top:unset !important;
    left:unset !important;
    bottom: -12px !important;
    right: -12px !important;
    background: #b895c1;
}

figure.wp-block-image.maker-image:before {
    background: #f16521;
    top:-12px !important;
    left:unset !important;
    bottom: unset !important;
    right: -12px !important;
}

figure.wp-block-image.maker-image:after {
    background: #f7a881;
    top:unset !important;
    left: -12px !important;
    bottom: -12px !important;
    right: unset !important;
}

.single-post .entry-content h1,
.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4,
.single-post .entry-content h5,
.single-post .entry-content h6,
.single-post h1.wp-block-post-title{
    font-weight:bold;
    /*color: var(--wp--preset--color--accent-1);*/
}





/* Switch on/off */
/* ——— variables ——— */
:root{
  --on:#5bcd8b;        /* track when ON  */
  --off:#bdbdbd;       /* track when OFF */
  --thumb:#fff;        /* knob */
  --focus:#3b82f6;     /* focus ring */
}

/* ——— layout ——— */
.switch{
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font: 600 22px / 1.2 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: #35263a;
    user-select: none;
    cursor: pointer;
    width: 100%;
    justify-content: space-between;
  
}

/* hide the native checkbox but keep it accessible */
.switch > input{
  position:absolute;
  opacity:0;
  width:1px;
  height:1px;
  overflow:hidden;
}

/* track */
.switch .track{
  --w:56px; --h:28px; --pad:3px;
  position:relative;
  width:var(--w);
  height:var(--h);
  background:var(--off);
  border-radius:999px;
  transition:background .25s ease;
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.06);
}

/* thumb */
.switch .thumb{
  position:absolute;
  top:var(--pad);
  left:var(--pad);
  width:calc(var(--h) - var(--pad)*2);
  height:calc(var(--h) - var(--pad)*2);
  background:var(--thumb);
  border-radius:50%;
  box-shadow:0 1px 2px rgba(0,0,0,.25);
  transition:transform .25s ease;
  
}

/* ON state */
.switch > input:checked + .track{
    background: var(--wp--preset--color--accent-1);
}
.switch > input:checked + .track .thumb{
  transform:translateX(calc(var(--w) - var(--h)));
}

/* keyboard focus */
.switch > input:focus-visible + .track{
  outline:3px solid color-mix(in oklab, var(--focus) 55%, #fff);
  outline-offset:3px;
}

/* disabled example */
.switch > input:disabled + .track{
  filter:grayscale(.2);
  opacity:.6;
  cursor:not-allowed;
}
.switch > input:disabled ~ .switch-text{ opacity:.6; }


.wp-block-group.is-style-section-card-outline-badge:before {
    content: "Suggested";
    position: absolute;
    top: 40px;
    right: 0; /* move to left side */
    background: #6a1b9a; /* purple like your image */
    color: #FFF;
    font-weight: 500;
    padding: 8px 20px 8px 30px;
  /* ribbon notch on LEFT side */
  clip-path: polygon(
    0 0,          /* top-left corner */
    100% 0,       /* top-right */
    100% 100%,    /* bottom-right */
    0 100%,       /* bottom-left */
    12px 50%      /* inward notch cut */
  );
}

ul.is-style-checkmark-list {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

ul.is-style-checkmark-list li {
  position: relative;
  padding-left: 40px; /* space for the check icon */
  margin-bottom: 16px;
  padding-inline-start: 40px !important;
}

ul.is-style-checkmark-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236a1b9a'><path d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM9.29 16.29 5.7 12.7a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L10 14.17l6.88-6.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-7.59 7.59c-.38.39-1.02.39-1.41 0z'/></svg>") no-repeat center;
  background-size: contain;
}


 :root{
    --search-filter-bg: #ffffff;
    --search-filter-text:#2b2233;
    --search-filter-border:#eae4ef;
    --search-filter-brand:#6d2ea7;
    --search-filter-brand-600:#712b84db;
    --search-filter-shadow:0 10px 30px rgba(18, 0, 38, .12);
    --search-filter-radius:14px;
  }

  .search-filter-btn{
    display:inline-flex; align-items:center; gap:.6rem;
    background:var(--wp--preset--color--accent-1); color:#fff; border:none;
    padding:.8rem 1.2rem; border-radius:10px; cursor:pointer;
    font-size: var(--wp--preset--font-size--medium);
    font-weight: 600;
  }
 .search-filter-btn svg{
   fill:#FFF;
   width: 25px;
   height: 25px;
 }
  .search-filter-btn .search-filter-caret{
                                         transition:transform .2s ease;
                                         width: 30px;
                                         height: 30px;
                                         }

  .search-filter-popover{
    position:absolute;
    width:385px;
    left:-250px;
    background:var(--search-filter-bg); color:var(--search-filter-text);
    border:1px solid var(--search-filter-border);
    border-radius:var(--search-filter-radius);
    box-shadow:var(--search-filter-shadow); z-index:10;
  }
  .search-filter-popover-body{ padding:22px; max-height:70vh; overflow:auto; }
  .search-filter-section{ padding-block:10px 16px; border-bottom:1px solid var(--search-filter-border); }
  .search-filter-section:last-of-type{ border-bottom:none; }
  .search-filter-section-title{
                     font-size: var(--wp--preset--font-size--medium);  
                          
    margin: 0 0 14px;font-weight: 600;}

  .search-filter-opt{ display:flex; align-items:center; gap:.75rem; padding:.45rem .2rem; }
  .search-filter-opt input{ inline-size:20px; block-size:20px; accent-color: var(--wp--preset--color--accent-1); }
  .search-filter-opt span{ font-size:16px; }

  .search-filter-actions{
    display:flex; gap:12px; justify-content:space-between;
    padding-top:8px; margin-top:12px;
  }
  .search-filter-btn-ghost, .search-filter-btn-primary{
    padding:.9rem 1.4rem; border-radius:12px; font-size:14px;
    cursor:pointer; border:1px solid transparent;
  }
  .search-filter-btn-ghost{ background:#fff; color:var(--wp--preset--color--accent-1); border-color:var(--search-filter-border); 
                                           font-size: var(--wp--preset--font-size--medium);  
                             font-weight: 600;
                          }
  .search-filter-btn-primary{ background:var(--wp--preset--color--accent-1); color:#fff; 
                 font-size: var(--wp--preset--font-size--medium);  
                             font-weight: 600;
                            }
  .search-filter-btn-primary:hover{ background:var(--search-filter-brand-600); }




  /* Panels start collapsed via [hidden]; this animates height when shown/hidden */
.wp-block-gfd-accordions-block.accordions-block .item-subtitle {
  overflow: hidden;
  transition: grid-template-rows 200ms ease, opacity 200ms ease;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
}
.wp-block-gfd-accordions-block.accordions-block > *{
  border-bottom:1px solid #bfbfbf;
}
.wp-block-gfd-accordions-block.accordions-block .item-subtitle > * {
  min-height: 0; /* allow collapsing */
}
.wp-block-gfd-accordions-block.accordions-block .item-title[aria-expanded="true"] + .item-subtitle {
  grid-template-rows: 1fr;
  opacity: 1;
  font-size: var(--wp--preset--font-size--large);
}
.wp-block-gfd-accordions-block.accordions-block .item-subtitle[hidden] {
  display: grid !important; /* keep layout for animation; JS controls visibility */
}


.wp-block-gfd-accordions-block.accordions-block .item-title {
  position: relative;
  cursor: pointer;
  padding-right: 30px; /* space for arrow */
  font-size: var(--wp--preset--font-size--x-large);
}

/* Insert SVG as background via data URI */
.wp-block-gfd-accordions-block.accordions-block .item-title::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  width: 36px;
  height: 36px;
  transform: translateY(-50%) rotate(-90deg); /* ▼ down */
  background: no-repeat center / contain
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M11.67 3.87 9.9 2.1 0 12l9.9 9.9 1.77-1.77L3.54 12z"/></svg>');
  color: currentColor;
  transition: transform 0.25s ease;
}

/* Rotate up when expanded */
.wp-block-gfd-accordions-block.accordions-block .item-title[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(90deg); /* ▲ up */
}

.wp-block-gfd-accordions-block.accordions-block .item-title {
  position: relative;
  cursor: pointer;

  /* Space for left icon and right arrow */
  padding-left: 42px;
  padding-right: 30px;

  /* LEFT ICON — your provided SVG as a background image */
  background-repeat: no-repeat;
  background-position: left 8px center;  /* tweak 8px to nudge horizontally */
  background-size: 22px auto;            /* scale icon */
  background-image: url('/wp-content/themes/gosadi/assets/images/questionIcon.svg');
}

.block-editor-block-list__block .item-subtitle {
    opacity: unset !important;
    grid-template-rows: unset !important;
}

.wp-block-navigation__responsive-container-content {
    padding: 20px;
}



.team-view-profile a{
        background-color: var(--wp--preset--color--base);
    border-radius: 10px;
    border-color: var(--wp--preset--color--accent-1);
    border-width: 1px;
    border-style: solid;
    color: var(--wp--preset--color--accent-1) !important;
    font-size: var(--wp--preset--font-size--medium);
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.5;
    padding-top: 0.8rem;
    padding-right: 3.5rem;
    padding-bottom: 0.8rem;
    padding-left: 2.5rem;
    background-image: url(/wp-content/themes/gosadi/assets/images/arrow-right.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 1rem) center;
    background-size: 30px;
    transition: all 0.3s ease;
}
.team-view-profile a:hover {
    color: #FFF !important;
    background-color: var(--wp--preset--color--accent-1);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='m12 4-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z'/></svg>");
}


.post-type-archive-event a.wp-block-read-more {
    background-color: var(--wp--preset--color--accent-1);
    border-radius: 10px;
    border-color: var(--wp--preset--color--base);
    border-width: 1px;
    border-style: solid;
    color: var(--wp--preset--color--base);
    font-size: var(--wp--preset--font-size--medium);
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.5;
    padding-top: .8rem;
    padding-right: 1.2rem;
    padding-bottom: .8rem;
    padding-left: 1.2rem;
    transition: all 0.3s ease;
}
.post-type-archive-event a.wp-block-read-more:hover{
      background-color: var(--wp--preset--color--base) !important;
    color: var(--wp--preset--color--accent-1) !important;
    border-color:var(--wp--preset--color--accent-1) !important;
}


.post-type-archive-event .wp-block-post > div > *{
  display: grid;
  grid-template-columns: 3fr 4fr; /* or however many columns you need */
  grid-template-areas:"item1 item2"
}

.post-type-archive-event .wp-block-post > div > div > .wp-block-group:first-child {
  grid-area:item2;
}

.post-type-archive-event .wp-block-post > div > div > .wp-block-group:last-child {
  grid-area:item1;
}

.post-type-archive-event .wp-block-post:nth-child(even) > div > *{

  grid-template-columns: 4fr 3fr; /* or however many columns you need */

}

.post-type-archive-event .wp-block-post:nth-child(even) > div > div > .wp-block-group:first-child {
  grid-area:item1;
}

.post-type-archive-event .wp-block-post:nth-child(even) > div > div > .wp-block-group:last-child {
  grid-area:item2;
}

@media (max-width: 768px){
  .post-type-archive-event .wp-block-post > div > *{
    display: grid;
    grid-template-columns: 1fr !important; /* or however many columns you need */
    grid-template-areas:"item1"
                        "item2";
  }
  .post-type-archive-event .wp-block-post > div > div > .wp-block-group:first-child {
    grid-area:item1;
  }
  
  .post-type-archive-event .wp-block-post > div > div > .wp-block-group:last-child {
    grid-area:item2;
  }
}

.text-align-center {
    text-align: center;
}
.single-event a.wp-block-gfd-meta-link-container{
  text-decoration: none;  
}
.single-event a.wp-block-gfd-meta-link-container > .wp-block-gfd-meta-link {
    background-color: var(--wp--preset--color--accent-1);
    border-radius: 10px;
    border-color: var(--wp--preset--color--base);
    border-width: 1px;
    border-style: solid;
    color: var(--wp--preset--color--base);
    font-size: var(--wp--preset--font-size--medium);
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.5;
    padding-top: .8rem;
    padding-right: 1.2rem;
    padding-bottom: .8rem;
    padding-left: 1.2rem;
    /* display: flex; */
}
.single-event a.wp-block-gfd-meta-link-container > .wp-block-gfd-meta-link:hover{
    background-color: var(--wp--preset--color--base);
    color: var(--wp--preset--color--accent-1);
    border-color:var(--wp--preset--color--accent-1);
}
.single-event a.wp-block-gfd-meta-link-container > .wp-block-gfd-meta-link p{
    margin:0px !important;
}


input#wp-block-search__input-2 {
    padding-right: 0px !important;
}

/* Buttons hover */
.is-style-button-accent-1 a.wp-block-button__link.wp-element-button,
.is-style-button-accent-2 a.wp-block-button__link.wp-element-button,
.is-style-button-base a.wp-block-button__link.wp-element-button{
  transition: all 0.3s ease;
}
.is-style-button-accent-1 a.wp-block-button__link.wp-element-button:hover{
  background-color: var(--wp--preset--color--accent-1-dark);
  background-color: var(--wp--preset--color--base);
  color: var(--wp--preset--color--accent-1);
  border-color: var(--wp--preset--color--accent-1);
}
.is-style-button-accent-2 a.wp-block-button__link.wp-element-button{

  border: 1px solid var(--wp--preset--color--accent-2);
}
.is-style-button-base a.wp-block-button__link.wp-element-button:hover{
  background-color: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  border-color:var(--wp--preset--color--accent-1);
}
.is-style-button-accent-2 a.wp-block-button__link.wp-element-button:hover{
  background-color: var(--wp--preset--color--accent-2-dark);
  background-color: var(--wp--preset--color--base);
  color: var(--wp--preset--color--accent-2);
  border: 1px solid var(--wp--preset--color--accent-2);
}

.has-accent-1-background-color .is-style-button-accent-1 a.wp-block-button__link.wp-element-button:hover{
  background-color: var(--wp--preset--color--base);
  color: var(--wp--preset--color--accent-1);
}
.has-accent-1-lighter-background-color .is-style-button-base a.wp-block-button__link.wp-element-button:hover,
.has-accent-1-background-color .is-style-button-base a.wp-block-button__link.wp-element-button:hover{
  background-color: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  border-color:var(--wp--preset--color--base);
}
.gform-theme input.gform_button:hover,
.gform-theme input.gform-button:hover {
    background-color: var(--wp--preset--color--base) !important;
    color: var(--wp--preset--color--accent-1) !important;
    border-color:var(--wp--preset--color--accent-1) !important;
}


.pricing-switch > a:hover > div{
    background:var(--wp--preset--color--accent-1);
    color:var(--wp--preset--color--base) !important;

}
.pricing-switch > a:hover > div > p{
    color:var(--wp--preset--color--base) !important;
}
