/* Custom layout plugin */

.custom-layout-split{
  display:grid;
  background:var(--cl-split-bg,transparent);
  color:var(--cl-split-text,inherit);
  border:var(--cl-split-border-width,0) var(--cl-split-border-style,solid) var(--cl-split-border-color,#dcdcde);
  border-radius:var(--cl-split-radius,0);
  padding:var(--cl-split-padding,0);
  grid-template-columns:1fr 1fr;
  gap:36px;
  align-items:center;
  margin:36px 0;
}

@media(min-width:769px){
  .custom-layout-split.ratio-40-60{
    grid-template-columns:2fr 3fr;
  }

  .custom-layout-split.ratio-40-60.is-reverse{
    grid-template-columns:3fr 2fr;
  }

  .custom-layout-split.ratio-30-70{
    grid-template-columns:3fr 7fr;
  }

  .custom-layout-split.ratio-30-70.is-reverse{
    grid-template-columns:7fr 3fr;
  }

  .custom-layout-split.ratio-25-75{
    grid-template-columns:1fr 3fr;
  }

  .custom-layout-split.ratio-25-75.is-reverse{
    grid-template-columns:3fr 1fr;
  }

  .custom-layout-split.ratio-20-80{
    grid-template-columns:1fr 4fr;
  }

  .custom-layout-split.ratio-20-80.is-reverse{
    grid-template-columns:4fr 1fr;
  }

  .custom-layout-split.ratio-60-40{
    grid-template-columns:3fr 2fr;
  }

  .custom-layout-split.ratio-60-40.is-reverse{
    grid-template-columns:2fr 3fr;
  }
}

.custom-layout-split{
  align-items:start;
}

/* The vertical-position option aligns the shorter side against the taller side.
   Applying it to the grid itself works whether the image or the text is taller. */
.custom-layout-split.valign-top{
  align-items:start !important;
}

.custom-layout-split.valign-center{
  align-items:center !important;
}

.custom-layout-split.valign-bottom{
  align-items:end !important;
}

.custom-layout-split-body{
  display:flex;
  min-width:0;
  flex-direction:column;
  align-self:auto !important;
}

.custom-layout-split.is-reverse .custom-layout-split-image{
  order:2;
}

.custom-layout-split.is-reverse .custom-layout-split-body{
  order:1;
}

.custom-layout-split-image{
  align-self:auto !important;
  width:100%;
}

.custom-layout-split-image img{
  display:block;
  width:100%;
  max-width:100%;
  height:auto;
  border:0;
  outline:0;
}

.custom-layout-split-image.image-fit-original img{
  aspect-ratio:auto;
  object-fit:contain;
}

.custom-layout-split-image.image-fit-crop{
  aspect-ratio:4 / 3;
}

.custom-layout-split-image.image-fit-crop img{
  width:100%;
  height:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
  object-position:center center;
}

.custom-layout-content > *:last-child{
  margin-bottom:0;
}

.custom-layout-split-body.body-size-small .custom-layout-content{
  font-size:15px;
  line-height:1.8;
}

.custom-layout-split-body.body-size-standard .custom-layout-content{
  font-size:17px;
  line-height:1.9;
}

.custom-layout-split-body.body-size-large .custom-layout-content{
  font-size:19px;
  line-height:2;
}

.custom-layout-split-body.body-size-xlarge .custom-layout-content{
  font-size:21px;
  line-height:2.1;
}

.custom-layout-split-body.indent-small,
.custom-layout-box.indent-small,
.custom-layout-cta.indent-small{
  padding-left:1em;
}

.custom-layout-split-body.indent-medium,
.custom-layout-box.indent-medium,
.custom-layout-cta.indent-medium{
  padding-left:2em;
}

.custom-layout-split-body.indent-large,
.custom-layout-box.indent-large,
.custom-layout-cta.indent-large{
  padding-left:3em;
}

.custom-layout-columns{
  display:grid;
  gap:var(--cl-column-gap,24px);
  margin:var(--cl-column-top-margin,36px) 0 var(--cl-column-bottom-margin,36px);
}

.custom-layout-columns.columns-2{
  grid-template-columns:repeat(2, 1fr);
}

.custom-layout-columns.columns-3{
  grid-template-columns:repeat(3, 1fr);
}

.custom-layout-columns > *{
  background:var(--cl-column-bg,rgba(255,255,255,.55));
  color:var(--cl-column-text,inherit);
  border:var(--cl-column-border-width,1px) var(--cl-column-border-style,solid) var(--cl-column-border-color,#dcdcde);
  border-radius:var(--cl-column-radius,0);
  padding:var(--cl-column-padding,24px);
}


.custom-layout-columns.columns-border-none > *{
  border:none;
}
.custom-layout-box{
  margin:36px 0;
  background:var(--cl-box-bg,#fff);
  color:var(--cl-box-text,inherit);
  border:var(--cl-box-border-width,1px) var(--cl-box-border-style,solid) var(--cl-box-border-color,#dcdcde);
  border-radius:var(--cl-box-radius,0);
  padding:var(--cl-box-padding,28px 32px);
}

.custom-layout-box.type-dark{
  background:#2a241f;
  color:#fff;
  border-color:#c49a5f;
}

.custom-layout-box.type-note{
  background:#f9f6ee;
}

.custom-layout-cta{
  margin:42px 0;
  padding:34px;
  background:var(--cl-cta-bg,#2a241f);
  border:var(--cl-cta-border-width,0) var(--cl-cta-border-style,solid) var(--cl-cta-border-color,#ded2bf);
  color:var(--cl-cta-text,#fff);
  text-align:center;
}


/* 2-column CTA */
.custom-layout-cta.layout-split{
  padding:34px 38px;
  text-align:center;
}

.custom-layout-cta.layout-split .custom-layout-cta-intro{
  max-width:820px;
  margin:0 auto;
}

.custom-layout-cta.layout-split .custom-layout-cta-actions{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  margin-top:26px;
  border-top:1px solid var(--cl-cta-border-color,#ded2bf);
}

.custom-layout-cta.layout-split .custom-layout-cta-action{
  min-width:0;
  padding:26px 30px 4px;
  box-sizing:border-box;
}

.custom-layout-cta.layout-split .custom-layout-cta-action + .custom-layout-cta-action{
  border-left:1px solid var(--cl-cta-border-color,#ded2bf);
}

.custom-layout-cta.layout-split .custom-layout-cta-action-title{
  display:block;
  margin:0 0 10px;
  color:var(--cl-cta-heading,#fff);
  font-size:18px;
  font-weight:700;
  line-height:1.5;
}

.custom-layout-contact-phone{
  display:inline-block !important;
  margin:2px 0 8px !important;
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
  color:inherit !important;
  font-size:clamp(24px,3vw,34px) !important;
  font-weight:700 !important;
  line-height:1.25 !important;
  letter-spacing:.02em !important;
  text-decoration:none !important;
  white-space:nowrap;
}
.custom-layout-cta.layout-split .custom-layout-contact-phone{
  color:var(--cl-cta-heading,#1d2327) !important;
}
.custom-layout-purpose.type-contact .custom-layout-contact-phone,
.editor-content .custom-layout-purpose.type-contact .custom-layout-contact-phone,
.entry-content .custom-layout-purpose.type-contact .custom-layout-contact-phone{
  color:var(--cl-purpose-cta-heading,#1d2327) !important;
}
.custom-layout-contact-phone:hover,
.custom-layout-contact-phone:focus-visible{
  text-decoration:underline !important;
}

.custom-layout-cta.layout-split .custom-layout-cta-action-text,
.custom-layout-cta.layout-split .custom-layout-cta-action-text p{
  color:var(--cl-cta-text,#fff);
  line-height:1.8;
}

.custom-layout-cta.layout-split .custom-layout-cta-action-text p{
  margin:0 0 8px;
}

.custom-layout-cta.layout-split .custom-layout-cta-action .custom-layout-button{
  margin-top:16px;
}

@media(max-width:767px){
  .custom-layout-cta.layout-split{
    padding:26px 20px;
  }
  .custom-layout-cta.layout-split .custom-layout-cta-actions{
    grid-template-columns:1fr;
  }
  .custom-layout-cta.layout-split .custom-layout-cta-action{
    padding:22px 0 4px;
  }
  .custom-layout-cta.layout-split .custom-layout-cta-action + .custom-layout-cta-action{
    margin-top:18px;
    border-left:0;
    border-top:1px solid var(--cl-cta-border-color,#ded2bf);
  }
}


.custom-layout-button{
  display:inline-block;
  margin-top:18px;
  padding:12px 28px;
  background:var(--cl-cta-button-bg,#c67a2d);
  color:var(--cl-cta-button-text,#fff) !important;
  text-decoration:none !important;
}

.custom-layout-button:hover,
.custom-layout-button:focus{
  background:var(--cl-cta-button-hover,#ad641f);
}

.custom-layout-gallery{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px;
  margin:36px 0;
}

.custom-layout-gallery figure{
  margin:0;
}

.custom-layout-gallery img{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio:4 / 3;
  object-fit:cover;
}







/* Responsive Table */

.custom-layout-table-wrap{
  --cl-table-border:#ded2bf;
  --cl-table-head-bg:#2a241f;
  --cl-table-head-text:#ffffff;
  --cl-table-cell-bg:#ffffff;
  --cl-table-cell-text:#1f1d1a;
  --cl-table-align:left;
  --cl-table-head-align:left;
  --cl-table-valign:top;
  margin:36px 0;
  width:100%;
  clear:both;
  font-size:inherit;
}

.custom-layout-table-wrap::before,
.custom-layout-table-wrap::after{
  content:none !important;
}

.custom-layout-table,
.custom-layout-table *,
.custom-layout-table-wrap{
  box-sizing:border-box;
}

.custom-layout-table{
  width:100%;
  border-collapse:collapse;
  background:var(--cl-table-cell-bg);
  table-layout:auto;
}

.custom-layout-table th,
.custom-layout-table td{
  border:1px solid var(--cl-table-border);
  padding:14px 16px;
  line-height:1.7;
  overflow-wrap:anywhere;
  word-break:break-word;
  vertical-align:var(--cl-table-valign);
}

.custom-layout-table th{
  background:var(--cl-table-head-bg);
  color:var(--cl-table-head-text);
  font-weight:700;
  text-align:var(--cl-table-head-align);
}

.custom-layout-table td{
  background:var(--cl-current-cell-bg, var(--cl-table-cell-bg));
  color:var(--cl-table-cell-text);
  text-align:var(--cl-table-align);
  white-space:normal;
}

.custom-layout-table td{
  font-weight:400 !important;
}

.custom-layout-table-wrap.has-custom-widths .custom-layout-table{
  table-layout:fixed !important;
}

.custom-layout-table td p{
  margin:0;
}

.custom-layout-table tr:empty{
  display:none;
}

.custom-layout-table-wrap.no-headers .custom-layout-table thead{
  display:none;
}

@media(max-width:768px){

  .custom-layout-split,
  .custom-layout-columns.columns-2,
  .custom-layout-columns.columns-3,
  .custom-layout-gallery{
    grid-template-columns:1fr;
  }

  .custom-layout-split.is-reverse .custom-layout-split-image{
    order:1;
  }

  .custom-layout-split.is-reverse .custom-layout-split-body{
    order:2;
  }

  .custom-layout-split-body.indent-small,
  .custom-layout-split-body.indent-medium,
  .custom-layout-split-body.indent-large,
  .custom-layout-box.indent-small,
  .custom-layout-box.indent-medium,
  .custom-layout-box.indent-large,
  .custom-layout-cta.indent-small,
  .custom-layout-cta.indent-medium,
  .custom-layout-cta.indent-large{
    padding-left:0;
  }

  .custom-layout-split.valign-top,
  .custom-layout-split.valign-center,
  .custom-layout-split.valign-bottom{
    align-items:stretch;
  }

  .custom-layout-table,
  .custom-layout-table thead,
  .custom-layout-table tbody,
  .custom-layout-table tr,
  .custom-layout-table th,
  .custom-layout-table td{
    display:block;
    width:100%;
  }

  .custom-layout-table thead{
    display:none;
  }

  .custom-layout-table tr{
    margin:0 0 18px;
    border:1px solid var(--cl-table-border);
    background:var(--cl-table-cell-bg);
  }

  .custom-layout-table-wrap.has-headers .custom-layout-table td{
    display:grid;
    grid-template-columns:minmax(7em, 34%) minmax(0, 1fr);
    align-items:var(--cl-table-valign);
    gap:10px;
    width:100%;
    border:none;
    border-bottom:1px solid var(--cl-table-border);
    background:var(--cl-current-cell-bg, var(--cl-table-cell-bg));
    color:var(--cl-table-cell-text);
    text-align:left;
  }

  .custom-layout-table-wrap.has-headers .custom-layout-table td::before{
    content:attr(data-label);
    display:block;
    min-width:0;
    color:#3a3028;
    font-weight:700;
    line-height:1.7;
    overflow-wrap:anywhere;
    align-self:start;
  }

  .custom-layout-table-wrap.has-headers .custom-layout-table td:last-child,
  .custom-layout-table-wrap.no-headers .custom-layout-table td:last-child{
    border-bottom:none;
  }

  .custom-layout-table-wrap.no-headers .custom-layout-table td{
    display:block;
    width:100%;
    border:none;
    border-bottom:1px solid var(--cl-table-border);
    background:var(--cl-current-cell-bg, var(--cl-table-cell-bg));
    color:var(--cl-table-cell-text);
    text-align:var(--cl-table-align);
  }

  .custom-layout-table-wrap.no-headers .custom-layout-table td::before{
    content:none !important;
    display:none !important;
  }
}


/* Front-end table color priority fix v2.1.2 */

.editor-content .custom-layout-table th,
.editor-content .custom-layout-table td,
.custom-layout-table-wrap .custom-layout-table th,
.custom-layout-table-wrap .custom-layout-table td{
  border-color:var(--cl-table-border) !important;
}

.editor-content .custom-layout-table th,
.custom-layout-table-wrap .custom-layout-table th{
  background:var(--cl-table-head-bg) !important;
  color:var(--cl-table-head-text) !important;
}

.editor-content .custom-layout-table td,
.custom-layout-table-wrap .custom-layout-table td{
  background:var(--cl-current-cell-bg, var(--cl-table-cell-bg)) !important;
  color:var(--cl-table-cell-text) !important;
}

.editor-content .custom-layout-table-wrap.has-headers .custom-layout-table td::before,
.custom-layout-table-wrap.has-headers .custom-layout-table td::before{
  color:var(--cl-table-head-bg) !important;
}


/* Table cell links */

.custom-layout-table td a{
  color:#2f5fa7;
  text-decoration:none;
  border-bottom:1px solid rgba(47,95,167,.35);
}

.custom-layout-table td a:hover,
.custom-layout-table td a:focus{
  color:#163d78;
  border-bottom-color:#163d78;
}


/* Front page table layout hardening v2.3.1 */

.editor-content .custom-layout-table-wrap,
.custom-layout-table-wrap{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  overflow:visible !important;
}

.editor-content .custom-layout-table-wrap table.custom-layout-table,
.custom-layout-table-wrap table.custom-layout-table{
  width:100% !important;
  max-width:100% !important;
  border-collapse:collapse !important;
  border-spacing:0 !important;
  table-layout:auto !important;
  margin:0 !important;
}

.editor-content .custom-layout-table-wrap .custom-layout-table th,
.editor-content .custom-layout-table-wrap .custom-layout-table td,
.custom-layout-table-wrap .custom-layout-table th,
.custom-layout-table-wrap .custom-layout-table td{
  box-sizing:border-box !important;
  border:1px solid var(--cl-table-border) !important;
  padding:14px 16px !important;
  line-height:1.7 !important;
  float:none !important;
  position:static !important;
  height:auto !important;
  min-height:0 !important;
  white-space:normal !important;
  overflow-wrap:anywhere !important;
  word-break:break-word !important;
}

.editor-content .custom-layout-table-wrap .custom-layout-table th,
.custom-layout-table-wrap .custom-layout-table th{
  background:var(--cl-table-head-bg) !important;
  color:var(--cl-table-head-text) !important;
  text-align:var(--cl-table-head-align) !important;
  vertical-align:var(--cl-table-valign, top) !important;
}

.editor-content .custom-layout-table-wrap .custom-layout-table td,
.custom-layout-table-wrap .custom-layout-table td{
  background:var(--cl-current-cell-bg, var(--cl-table-cell-bg)) !important;
  color:var(--cl-table-cell-text) !important;
  text-align:var(--cl-table-align) !important;
  vertical-align:var(--cl-table-valign, top) !important;
}

.custom-layout-table-cell-inner{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  margin:0 !important;
  padding:0 !important;
}


.editor-content .custom-layout-table-cell-inner a,
.custom-layout-table-cell-inner a{
  display:inline !important;
  color:#2f5fa7 !important;
  text-decoration:none !important;
  border-bottom:1px solid rgba(47,95,167,.35) !important;
  background:transparent !important;
  padding:0 !important;
  margin:0 !important;
}

.editor-content .custom-layout-table-cell-inner a:hover,
.editor-content .custom-layout-table-cell-inner a:focus,
.custom-layout-table-cell-inner a:hover,
.custom-layout-table-cell-inner a:focus{
  color:#163d78 !important;
  border-bottom-color:#163d78 !important;
}

@media(max-width:768px){

  .editor-content .custom-layout-table-wrap table.custom-layout-table,
  .editor-content .custom-layout-table-wrap .custom-layout-table thead,
  .editor-content .custom-layout-table-wrap .custom-layout-table tbody,
  .editor-content .custom-layout-table-wrap .custom-layout-table tr,
  .editor-content .custom-layout-table-wrap .custom-layout-table th,
  .editor-content .custom-layout-table-wrap .custom-layout-table td,
  .custom-layout-table-wrap table.custom-layout-table,
  .custom-layout-table-wrap .custom-layout-table thead,
  .custom-layout-table-wrap .custom-layout-table tbody,
  .custom-layout-table-wrap .custom-layout-table tr,
  .custom-layout-table-wrap .custom-layout-table th,
  .custom-layout-table-wrap .custom-layout-table td{
    display:block !important;
    width:100% !important;
  }

  .editor-content .custom-layout-table-wrap .custom-layout-table thead,
  .custom-layout-table-wrap .custom-layout-table thead{
    display:none !important;
  }

  .editor-content .custom-layout-table-wrap .custom-layout-table tr,
  .custom-layout-table-wrap .custom-layout-table tr{
    display:block !important;
    margin:0 0 18px !important;
    border:1px solid var(--cl-table-border) !important;
    background:var(--cl-table-cell-bg) !important;
  }

  .editor-content .custom-layout-table-wrap.has-headers .custom-layout-table td,
  .custom-layout-table-wrap.has-headers .custom-layout-table td{
    display:grid !important;
    grid-template-columns:minmax(7em, 34%) minmax(0, 1fr) !important;
    gap:10px !important;
    align-items:var(--cl-table-valign, start) !important;
    border:none !important;
    border-bottom:1px solid var(--cl-table-border) !important;
    text-align:left !important;
  }

  .editor-content .custom-layout-table-wrap.has-headers .custom-layout-table td::before,
  .custom-layout-table-wrap.has-headers .custom-layout-table td::before{
    content:attr(data-label) !important;
    display:block !important;
    font-weight:700 !important;
    color:var(--cl-table-head-bg) !important;
    line-height:1.7 !important;
    min-width:0 !important;
    overflow-wrap:anywhere !important;
  }

  .editor-content .custom-layout-table-wrap.has-headers .custom-layout-table td:last-child,
  .editor-content .custom-layout-table-wrap.no-headers .custom-layout-table td:last-child,
  .custom-layout-table-wrap.has-headers .custom-layout-table td:last-child,
  .custom-layout-table-wrap.no-headers .custom-layout-table td:last-child{
    border-bottom:none !important;
  }

  .editor-content .custom-layout-table-wrap.no-headers .custom-layout-table td,
  .custom-layout-table-wrap.no-headers .custom-layout-table td{
    display:block !important;
    border:none !important;
    border-bottom:1px solid var(--cl-table-border) !important;
    text-align:var(--cl-table-align) !important;
  }

  .editor-content .custom-layout-table-wrap.no-headers .custom-layout-table td::before,
  .custom-layout-table-wrap.no-headers .custom-layout-table td::before{
    content:none !important;
    display:none !important;
  }
}


/* Table cell line break fix v2.3.2 */

.custom-layout-table-cell-inner{
  white-space:normal !important;
  line-height:1.7 !important;
}

.custom-layout-table-cell-inner br{
  display:initial !important;
  content:normal !important;
}

.custom-layout-table-cell-inner a{
  line-height:inherit !important;
}

@media(max-width:768px){

  .custom-layout-table-wrap.has-headers .custom-layout-table td{
    grid-template-columns:minmax(7em, 34%) minmax(0, 1fr) !important;
  }

  .custom-layout-table-wrap.has-headers .custom-layout-table td::before,
  .custom-layout-table-wrap.has-headers .custom-layout-table .custom-layout-table-cell-inner{
    min-width:0 !important;
  }

  .custom-layout-table-wrap.has-headers .custom-layout-table .custom-layout-table-cell-inner{
    display:block !important;
    width:100% !important;
    align-self:start !important;
  }

}


/* Purpose-specific layouts */

.custom-layout-purpose{
  margin:32px 0;
}


.custom-layout-faq-list{
  display:grid;
  gap:10px;
}

.custom-layout-faq-item{
  border:1px solid var(--cl-border,#ded2bf);
  background:#fff;
}

.custom-layout-faq-item summary{
  cursor:pointer;
  padding:16px 44px 16px 18px;
  font-weight:700;
  list-style:none;
  position:relative;
}

.custom-layout-faq-item summary::-webkit-details-marker{
  display:none;
}

.custom-layout-faq-item summary::after{
  content:"+";
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  font-size:20px;
  line-height:1;
}

.custom-layout-faq-item[open] summary::after{
  content:"−";
}

.custom-layout-faq-answer{
  padding:0 18px 18px;
  color:var(--cl-text,#1f1d1a);
}

.custom-layout-flow-list{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:34px;
  counter-reset:flow;
}

.custom-layout-flow-list.flow-columns-1{
  grid-template-columns:minmax(0,1fr);
}

.custom-layout-flow-list.flow-columns-2{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.custom-layout-flow-list.flow-columns-3{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.custom-layout-flow-item{
  position:relative;
  padding:20px;
  border:var(--cl-flow-border-width,1px) var(--cl-flow-border-style,solid) var(--cl-flow-border-color,var(--cl-border,#ded2bf));
  background:#fff;
  box-sizing:border-box;
}

.custom-layout-flow-item:not(:last-child)::after{
  content:"";
  position:absolute;
  right:-25px;
  top:50%;
  width:16px;
  height:16px;
  border-top-width:var(--cl-flow-arrow-width,2px);
  border-top-style:var(--cl-flow-arrow-style,solid);
  border-top-color:var(--cl-flow-arrow-color,var(--cl-accent,#c49a5f));
  border-right-width:var(--cl-flow-arrow-width,2px);
  border-right-style:var(--cl-flow-arrow-style,solid);
  border-right-color:var(--cl-flow-arrow-color,var(--cl-accent,#c49a5f));
  transform:translateY(-50%) rotate(45deg);
}

.custom-layout-flow-step{
  display:inline-block;
  margin-bottom:10px;
  padding:3px 10px;
  border-radius:999px;
  background:var(--cl-flow-step-color,var(--cl-dark,#2a241f));
  color:#fff;
  font-size:12px;
  letter-spacing:.04em;
}

.custom-layout-flow-image{
  display:block;
  width:100%;
  margin:0 0 16px;
}

.custom-layout-flow-image img{
  display:block;
  width:100%;
  height:auto;
}

.custom-layout-purpose.type-flow.flow-body-size-custom .custom-layout-flow-item > div,
.custom-layout-purpose.type-flow.flow-body-size-custom .custom-layout-flow-item > div p{
  font-size:var(--cl-flow-body-font-size) !important;
  line-height:1.8;
}

@media(min-width:769px){
  /* 3列目の後は次段へ折り返すため、右向き矢印を出さない。 */
  .custom-layout-flow-list.flow-columns-3 .custom-layout-flow-item:nth-child(3n):not(:last-child)::after{
    display:none;
  }
}

.custom-layout-purpose.indent-small .custom-layout-flow-item > div{ padding-left:1em; }
.custom-layout-purpose.indent-medium .custom-layout-flow-item > div{ padding-left:2em; }
.custom-layout-purpose.indent-large .custom-layout-flow-item > div{ padding-left:3em; }

.custom-layout-flow-item strong,
.custom-layout-purpose-card strong,
.custom-layout-work-card strong,
.custom-layout-purpose-block strong,
.custom-layout-purpose-cta strong{
  display:block;
  margin-bottom:8px;
  font-size:18px;
}

.custom-layout-works-grid,
.custom-layout-purpose-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:22px;
}

.custom-layout-work-card,
.custom-layout-purpose-card{
  border:1px solid var(--cl-border,#ded2bf);
  background:#fff;
}

.custom-layout-work-card figure{
  margin:0;
  aspect-ratio:4/3;
  overflow:hidden;
  background:#f5f0e6;
}

.custom-layout-work-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.custom-layout-work-body,
.custom-layout-purpose-card-body{
  padding:18px;
}

.custom-layout-work-meta,
.custom-layout-purpose-card span{
  display:inline-block;
  margin-bottom:10px;
  color:var(--cl-accent,#c49a5f);
  font-size:12px;
  letter-spacing:.04em;
}

.custom-layout-purpose-blocks{
  display:grid;
  gap:20px;
}

.custom-layout-purpose-block{
  display:grid;
  grid-template-columns:minmax(160px,.38fr) 1fr;
  gap:22px;
  align-items:center;
  padding:20px;
  border:1px solid var(--cl-border,#ded2bf);
  background:#fff;
}

.custom-layout-purpose-block figure{
  margin:0;
  aspect-ratio:4/3;
  overflow:hidden;
  background:#f5f0e6;
}

.custom-layout-purpose-block img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.custom-layout-purpose-cta{
  padding:32px;
  border:var(--cl-purpose-cta-border-width,1px) var(--cl-purpose-cta-border-style,solid) var(--cl-purpose-cta-border-color,#ded2bf);
  background:var(--cl-purpose-cta-bg,#f8f4ec);
  color:var(--cl-purpose-cta-text,#1f1d1a);
  text-align:center;
}

.custom-layout-purpose-cta .custom-layout-button{
  margin-top:14px;
}

/* Canonical contact layout: one definition for preview and public output. */
.custom-layout-purpose.type-contact > .custom-layout-purpose-contact-grid,
.editor-content .custom-layout-purpose.type-contact > .custom-layout-purpose-contact-grid,
.entry-content .custom-layout-purpose.type-contact > .custom-layout-purpose-contact-grid{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  width:var(--cl-cta-box-width,100%) !important;
  max-width:100% !important;
  margin-left:auto !important;
  margin-right:auto !important;
  padding:0 !important;
  border-width:var(--cl-purpose-cta-border-width,1px) !important;
  border-style:var(--cl-purpose-cta-border-style,solid) !important;
  border-color:var(--cl-purpose-cta-border-color,#dcdcde) !important;
  background:var(--cl-purpose-cta-bg,#f8f4ec) !important;
  color:var(--cl-purpose-cta-text,#1f1d1a) !important;
  text-align:left !important;
  box-sizing:border-box !important;
}

.custom-layout-purpose.type-contact > .custom-layout-purpose-contact-grid.is-single,
.editor-content .custom-layout-purpose.type-contact > .custom-layout-purpose-contact-grid.is-single,
.entry-content .custom-layout-purpose.type-contact > .custom-layout-purpose-contact-grid.is-single{
  grid-template-columns:1fr !important;
}

.custom-layout-purpose.type-contact .custom-layout-purpose-contact-column,
.editor-content .custom-layout-purpose.type-contact .custom-layout-purpose-contact-column,
.entry-content .custom-layout-purpose.type-contact .custom-layout-purpose-contact-column{
  display:block !important;
  min-width:0 !important;
  width:auto !important;
  margin:0 !important;
  padding:30px !important;
  border:0 !important;
  background:transparent !important;
  color:var(--cl-purpose-cta-text,#1f1d1a) !important;
  text-align:left !important;
  box-sizing:border-box !important;
}

.custom-layout-purpose.type-contact .custom-layout-purpose-contact-column + .custom-layout-purpose-contact-column,
.editor-content .custom-layout-purpose.type-contact .custom-layout-purpose-contact-column + .custom-layout-purpose-contact-column,
.entry-content .custom-layout-purpose.type-contact .custom-layout-purpose-contact-column + .custom-layout-purpose-contact-column{
  border-left:1px solid var(--cl-purpose-cta-border-color,#dcdcde) !important;
}

.custom-layout-purpose.type-contact .custom-layout-purpose-contact-column > strong,
.editor-content .custom-layout-purpose.type-contact .custom-layout-purpose-contact-column > strong,
.entry-content .custom-layout-purpose.type-contact .custom-layout-purpose-contact-column > strong{
  display:block !important;
  margin:0 0 10px !important;
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
  color:var(--cl-purpose-cta-heading,#1f1d1a) !important;
  font-size:18px !important;
  font-weight:700 !important;
  line-height:1.55 !important;
  text-align:left !important;
}

.custom-layout-purpose.type-contact .custom-layout-purpose-contact-column.is-phone .custom-layout-purpose-contact-text{
  margin-top:4px !important;
}

.custom-layout-purpose.type-contact .custom-layout-purpose-contact-text,
.editor-content .custom-layout-purpose.type-contact .custom-layout-purpose-contact-text,
.entry-content .custom-layout-purpose.type-contact .custom-layout-purpose-contact-text{
  min-height:0;
  margin:0 !important;
  padding:0 !important;
  color:var(--cl-purpose-cta-text,#1f1d1a) !important;
  text-align:left !important;
}

.custom-layout-purpose.type-contact .custom-layout-purpose-contact-text p,
.editor-content .custom-layout-purpose.type-contact .custom-layout-purpose-contact-text p,
.entry-content .custom-layout-purpose.type-contact .custom-layout-purpose-contact-text p{
  margin:0 0 .65em !important;
  padding:0 !important;
  color:var(--cl-purpose-cta-text,#1f1d1a) !important;
  text-align:left !important;
  line-height:var(--cl-body-line-height,1.8) !important;
}

.custom-layout-purpose.type-contact .custom-layout-button,
.editor-content .custom-layout-purpose.type-contact .custom-layout-button,
.entry-content .custom-layout-purpose.type-contact .custom-layout-button{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:var(--cl-button-width,auto) !important;
  max-width:100% !important;
  margin-top:16px !important;
  padding:var(--cl-button-pad-y,12px) var(--cl-button-pad-x,28px) !important;
  border-width:var(--cl-button-border-width,0px) !important;
  border-style:var(--cl-button-border-style,solid) !important;
  border-color:var(--cl-button-border-color,var(--cl-purpose-cta-button-bg,#2271b1)) !important;
  border-radius:var(--cl-button-radius,0px) !important;
  background:var(--cl-purpose-cta-button-bg,#2271b1) !important;
  color:var(--cl-purpose-cta-button-text,#fff) !important;
  font-size:var(--cl-button-font-size,16px) !important;
  font-weight:var(--cl-button-font-weight,400) !important;
  line-height:1.5 !important;
  text-align:center !important;
  text-decoration:none !important;
  box-sizing:border-box !important;
}

.custom-layout-purpose.type-contact .custom-layout-button:not(.is-disabled):hover,
.custom-layout-purpose.type-contact .custom-layout-button:not(.is-disabled):focus-visible,
.editor-content .custom-layout-purpose.type-contact .custom-layout-button:not(.is-disabled):hover,
.editor-content .custom-layout-purpose.type-contact .custom-layout-button:not(.is-disabled):focus-visible,
.entry-content .custom-layout-purpose.type-contact .custom-layout-button:not(.is-disabled):hover,
.entry-content .custom-layout-purpose.type-contact .custom-layout-button:not(.is-disabled):focus-visible{
  background:var(--cl-purpose-cta-button-hover,#135e96) !important;
  color:var(--cl-purpose-cta-button-text,#fff) !important;
}

.custom-layout-purpose.type-contact .custom-layout-button.is-disabled{
  opacity:.65 !important;
  cursor:not-allowed !important;
}

@media(max-width:520px){
  .custom-layout-purpose.type-contact > .custom-layout-purpose-contact-grid,
  .editor-content .custom-layout-purpose.type-contact > .custom-layout-purpose-contact-grid,
  .entry-content .custom-layout-purpose.type-contact > .custom-layout-purpose-contact-grid{
    grid-template-columns:1fr !important;
    width:100% !important;
  }

  .custom-layout-purpose.type-contact .custom-layout-purpose-contact-column + .custom-layout-purpose-contact-column,
  .editor-content .custom-layout-purpose.type-contact .custom-layout-purpose-contact-column + .custom-layout-purpose-contact-column,
  .entry-content .custom-layout-purpose.type-contact .custom-layout-purpose-contact-column + .custom-layout-purpose-contact-column{
    border-left:0 !important;
    border-top:1px solid var(--cl-purpose-cta-border-color,#dcdcde) !important;
  }
}

@media(max-width:768px){
  .custom-layout-flow-list,
  .custom-layout-flow-list.flow-columns-1,
  .custom-layout-flow-list.flow-columns-2,
  .custom-layout-flow-list.flow-columns-3{
    grid-template-columns:1fr;
    gap:44px;
  }

  .custom-layout-flow-item:not(:last-child)::after{
    display:block;
    right:auto;
    left:50%;
    top:auto;
    bottom:-28px;
    transform:translateX(-50%) rotate(135deg);
  }

  .custom-layout-purpose-block{
    grid-template-columns:1fr;
  }
}



.custom-layout-flow-item div p,
.custom-layout-purpose-card div p,
.custom-layout-work-body div p,
.custom-layout-purpose-block div p,
.custom-layout-purpose-cta div p{
  margin-top:0;
  margin-bottom:.7em;
}

.custom-layout-flow-item div p:last-child,
.custom-layout-purpose-card div p:last-child,
.custom-layout-work-body div p:last-child,
.custom-layout-purpose-block div p:last-child,
.custom-layout-purpose-cta div p:last-child{
  margin-bottom:0;
}




.custom-layout-purpose-block,
.custom-layout-purpose-card,
.custom-layout-purpose-cta,
.custom-layout-work-card{
  box-sizing:border-box;
}

.custom-layout-purpose-block > div,
.custom-layout-purpose-card > div,
.custom-layout-purpose-cta > div,
.custom-layout-work-body > div{
  width:100%;
}

.custom-layout-purpose-block p,
.custom-layout-purpose-card p,
.custom-layout-purpose-cta p,
.custom-layout-work-body p{
  width:100%;
}

.custom-layout-purpose.type-solution .custom-layout-purpose-block,
.custom-layout-purpose.type-voice .custom-layout-purpose-block,
.custom-layout-purpose.type-notice .custom-layout-purpose-block{
  grid-template-columns:1fr;
}

.custom-layout-purpose.type-solution .custom-layout-purpose-block > div,
.custom-layout-purpose.type-voice .custom-layout-purpose-block > div,
.custom-layout-purpose.type-notice .custom-layout-purpose-block > div{
  width:100%;
  max-width:100%;
}

.custom-layout-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:180px;
}



/* Purpose layout polish 2.8.1 */

.custom-layout-purpose.type-message .custom-layout-purpose-block,
.custom-layout-purpose.type-problem .custom-layout-purpose-block,
.custom-layout-purpose.type-solution .custom-layout-purpose-block,
.custom-layout-purpose.type-detail .custom-layout-purpose-block,
.custom-layout-purpose.type-voice .custom-layout-purpose-block,
.custom-layout-purpose.type-notice .custom-layout-purpose-block{
  grid-template-columns:1fr !important;
}

.custom-layout-purpose.type-message .custom-layout-purpose-block > div,
.custom-layout-purpose.type-problem .custom-layout-purpose-block > div,
.custom-layout-purpose.type-solution .custom-layout-purpose-block > div,
.custom-layout-purpose.type-detail .custom-layout-purpose-block > div,
.custom-layout-purpose.type-voice .custom-layout-purpose-block > div,
.custom-layout-purpose.type-notice .custom-layout-purpose-block > div{
  width:100% !important;
  max-width:100% !important;
}

.custom-layout-purpose.type-message .custom-layout-purpose-block p,
.custom-layout-purpose.type-problem .custom-layout-purpose-block p,
.custom-layout-purpose.type-solution .custom-layout-purpose-block p,
.custom-layout-purpose.type-detail .custom-layout-purpose-block p,
.custom-layout-purpose.type-voice .custom-layout-purpose-block p,
.custom-layout-purpose.type-notice .custom-layout-purpose-block p{
  width:100% !important;
  max-width:100% !important;
}


/* Table preview parity fix 2.9.7 */

.custom-layout-table-block,
.custom-layout-table-wrap{
  display:block;
  width:100%;
  max-width:100%;
  clear:both;
  box-sizing:border-box;
}

.custom-layout-table-wrap{
  overflow-x:auto;
}

.custom-layout-table-wrap.no-headers .custom-layout-table,
.custom-layout-table-wrap.type-overview.no-headers .custom-layout-table{
  display:table;
  width:100%;
  border-collapse:collapse;
}

.custom-layout-table-wrap.no-headers .custom-layout-table tbody,
.custom-layout-table-wrap.type-overview.no-headers .custom-layout-table tbody{
  display:table-row-group;
}

.custom-layout-table-wrap.no-headers .custom-layout-table tr,
.custom-layout-table-wrap.type-overview.no-headers .custom-layout-table tr{
  display:table-row;
}

.custom-layout-table-wrap.no-headers .custom-layout-table td,
.custom-layout-table-wrap.type-overview.no-headers .custom-layout-table td{
  display:table-cell;
  width:auto;
}

.custom-layout-table-wrap.no-headers .custom-layout-table td,
.custom-layout-table-wrap.type-overview.no-headers .custom-layout-table td{
  font-weight:400 !important;
}

.custom-layout-table-cell-inner br{
  display:block;
  content:"";
}

@media(max-width:768px){
  .custom-layout-table-wrap.no-headers .custom-layout-table,
  .custom-layout-table-wrap.type-overview.no-headers .custom-layout-table{
    display:table;
  }

  .custom-layout-table-wrap.no-headers .custom-layout-table tbody,
  .custom-layout-table-wrap.type-overview.no-headers .custom-layout-table tbody{
    display:table-row-group;
  }

  .custom-layout-table-wrap.no-headers .custom-layout-table tr,
  .custom-layout-table-wrap.type-overview.no-headers .custom-layout-table tr{
    display:table-row;
  }

  .custom-layout-table-wrap.no-headers .custom-layout-table td,
  .custom-layout-table-wrap.type-overview.no-headers .custom-layout-table td{
    display:table-cell;
  }
}



/* Representative message layout */

.custom-layout-message-block{
  display:block;
  width:100%;
  padding:24px;
  border:1px solid var(--cl-border,#ded2bf);
  background:#fff;
  box-sizing:border-box;
}

.custom-layout-message-body{
  width:100%;
}

.custom-layout-message-title{
  display:block;
  margin:0 0 12px;
  font-size:1.08em;
  font-weight:700;
}

.custom-layout-message-body p{
  margin-top:0;
}

.custom-layout-message-signature{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:4px;
  margin-top:22px;
  text-align:right;
}

.custom-layout-message-signature-image{
  display:block;
  width:auto;
  max-width:120px;
  max-height:80px;
  object-fit:contain;
  margin:0 0 6px auto;
}

.custom-layout-message-role{
  display:block;
  font-size:.92em;
}

.custom-layout-message-name{
  display:block;
  font-size:1.08em;
  font-weight:700;
}



.custom-layout-message-paragraph + .custom-layout-message-paragraph{
  margin-top:18px;
}

.custom-layout-message-paragraph-heading{
  display:block;
  margin:0 0 8px;
  font-weight:700;
}


/* Stable two-column normal table width and preview parity v3.2.2 */
@media (min-width:769px){
  .editor-content .custom-layout-table-wrap.type-normal.no-headers.columns-2:not(.has-custom-widths) table.custom-layout-table,
  .custom-layout-table-wrap.type-normal.no-headers.columns-2:not(.has-custom-widths) table.custom-layout-table{
    table-layout:fixed !important;
    min-width:520px;
  }

  .editor-content .custom-layout-table-wrap.type-normal.no-headers.columns-2:not(.has-custom-widths) .custom-layout-table td:first-child,
  .custom-layout-table-wrap.type-normal.no-headers.columns-2:not(.has-custom-widths) .custom-layout-table td:first-child{
    width:18% !important;
    min-width:6.5em;
    white-space:nowrap;
    overflow-wrap:normal !important;
    word-break:keep-all !important;
  }

  .editor-content .custom-layout-table-wrap.type-normal.no-headers.columns-2:not(.has-custom-widths) .custom-layout-table td:first-child .custom-layout-table-cell-inner,
  .custom-layout-table-wrap.type-normal.no-headers.columns-2:not(.has-custom-widths) .custom-layout-table td:first-child .custom-layout-table-cell-inner{
    white-space:nowrap;
    overflow-wrap:normal !important;
    word-break:keep-all !important;
  }

  .editor-content .custom-layout-table-wrap.type-normal.no-headers.columns-2:not(.has-custom-widths) .custom-layout-table td:nth-child(2),
  .custom-layout-table-wrap.type-normal.no-headers.columns-2:not(.has-custom-widths) .custom-layout-table td:nth-child(2){
    width:82% !important;
  }
}

.custom-layout-preview-scope .custom-layout-block{
  width:100%;
  max-width:100%;
}

.custom-layout-preview-scope .custom-layout-content p:first-child{
  margin-top:0;
}

.custom-layout-preview-scope .custom-layout-content p:last-child{
  margin-bottom:0;
}


/* Recruit-style compact first column width v3.2.3 */
@media (min-width:769px){
  .editor-content .custom-layout-table-wrap.type-normal.no-headers.columns-2:not(.has-custom-widths) table.custom-layout-table,
  .custom-layout-table-wrap.type-normal.no-headers.columns-2:not(.has-custom-widths) table.custom-layout-table{
    table-layout:fixed !important;
    min-width:520px;
  }

  .editor-content .custom-layout-table-wrap.type-normal.no-headers.columns-2:not(.has-custom-widths) .custom-layout-table td:first-child,
  .custom-layout-table-wrap.type-normal.no-headers.columns-2:not(.has-custom-widths) .custom-layout-table td:first-child{
    width:18% !important;
    min-width:6.5em;
    white-space:nowrap;
    overflow-wrap:normal !important;
    word-break:keep-all !important;
  }

  .editor-content .custom-layout-table-wrap.type-normal.no-headers.columns-2:not(.has-custom-widths) .custom-layout-table td:nth-child(2),
  .custom-layout-table-wrap.type-normal.no-headers.columns-2:not(.has-custom-widths) .custom-layout-table td:nth-child(2){
    width:82% !important;
  }
}


/* Saved and consecutive layout unit isolation v3.2.8 */
.custom-layout-rendered-unit{
  display:block;
  width:100%;
  max-width:100%;
  clear:both;
  box-sizing:border-box;
}

.custom-layout-rendered-unit::before,
.custom-layout-rendered-unit::after{
  content:"";
  display:table;
  clear:both;
}

.custom-layout-rendered-unit + .custom-layout-rendered-unit,
.custom-layout-rendered-unit + .custom-layout-block,
.custom-layout-block + .custom-layout-rendered-unit{
  margin-top:32px;
}

.custom-layout-rendered-unit > .custom-layout-saved-layout,
.custom-layout-rendered-unit > .custom-layout-block{
  margin-top:0;
  margin-bottom:0;
}


/* Image decoration options v3.3.0 */
.custom-layout-image-effect{
  --cl-image-border-color:#ded2bf;
  --cl-image-border-width:0px;
  display:block;
  position:relative;
  box-sizing:border-box;
  overflow:hidden;
  transition:box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

.custom-layout-image-effect img{
  display:block;
  width:100%;
  max-width:100%;
  height:auto;
  box-sizing:border-box;
  transition:transform .35s ease, filter .35s ease;
}

.custom-layout-image-effect.image-border-0 img{
  border:0 !important;
  outline:0 !important;
}

.custom-layout-image-effect.image-border-1 img{
  border-style:var(--cl-image-border-style,solid) !important;
  border-width:var(--cl-image-border-width) !important;
  border-color:var(--cl-image-border-color) !important;
  outline:0 !important;
}

.custom-layout-image-effect.image-frame-simple{
  padding:12px;
  background:#fff;
  border:1px solid var(--cl-image-border-color);
}

.custom-layout-image-effect.image-frame-photo{
  padding:18px 18px 30px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
}

.custom-layout-image-effect.image-frame-simple img,
.custom-layout-image-effect.image-frame-photo img{
  border:0 !important;
}

.custom-layout-image-effect.image-shadow-soft{
  box-shadow:0 5px 12px rgba(0,0,0,.13);
}

.custom-layout-image-effect.image-shadow-bottom-right{
  box-shadow:6px 7px 0 rgba(0,0,0,.16);
}

.custom-layout-image-effect.image-shadow-medium{
  box-shadow:0 8px 18px rgba(0,0,0,.18);
}

.custom-layout-image-effect.image-shadow-strong{
  box-shadow:0 10px 24px rgba(0,0,0,.24);
}

.custom-layout-image-effect.image-zoom-1:hover img,
.custom-layout-image-effect.image-zoom-1:focus-within img{
  transform:scale(1.06);
}

.custom-layout-message-signature-frame{
  display:inline-block;
  width:auto;
  max-width:140px;
  margin:0 0 6px auto;
}

.custom-layout-message-signature-frame img.custom-layout-message-signature-image{
  width:100%;
  max-width:120px;
  max-height:80px;
  object-fit:contain;
  margin:0;
}

.custom-layout-work-card figure.custom-layout-image-effect,
.custom-layout-purpose-block figure.custom-layout-image-effect{
  margin:0;
}

@media (prefers-reduced-motion: reduce){
  .custom-layout-image-effect,
  .custom-layout-image-effect img{
    transition:none;
  }

  .custom-layout-image-effect.image-zoom-1:hover img,
  .custom-layout-image-effect.image-zoom-1:focus-within img{
    transform:none;
  }
}



/* Image decoration refinement v3.3.1 */
.custom-layout-work-card{
  overflow:hidden;
}

.custom-layout-work-card figure,
.custom-layout-work-card figure.custom-layout-image-effect{
  margin:0 !important;
}

.custom-layout-work-card figure.custom-layout-image-effect{
  border-bottom-left-radius:0;
  border-bottom-right-radius:0;
}

.custom-layout-work-card figure.custom-layout-image-effect + .custom-layout-work-body{
  margin-top:0 !important;
  padding-top:14px;
}

.custom-layout-work-body{
  margin-top:0;
}

.custom-layout-image-effect.image-frame-simple,
.custom-layout-image-effect.image-frame-photo{
  border-width:1px;
}

.custom-layout-image-effect.image-frame-photo{
  box-shadow:none;
}

.custom-layout-image-effect.image-frame-photo.image-shadow-bottom-right{
  box-shadow:6px 7px 0 rgba(0,0,0,.14);
}



/* Photo frame thickness refinement v3.3.2 */
.custom-layout-image-effect.image-frame-photo img{
  box-shadow:0 1px 2px rgba(0,0,0,.08);
}

.custom-layout-image-effect.image-frame-photo.image-shadow-bottom-right{
  box-shadow:8px 9px 0 rgba(0,0,0,.14);
}


/* Works / purpose image gap and accidental border fix v3.3.3 */
.custom-layout-work-card{
  overflow:hidden;
}

.custom-layout-work-card figure,
.custom-layout-work-card figure.custom-layout-image-effect,
.custom-layout-purpose.type-works .custom-layout-work-card figure,
.custom-layout-purpose.type-works .custom-layout-work-card figure.custom-layout-image-effect{
  margin:0 !important;
  padding-bottom:0 !important;
  line-height:0;
}

.custom-layout-work-card figure.custom-layout-image-effect,
.custom-layout-purpose-block figure.custom-layout-image-effect{
  border:none !important;
}

.custom-layout-work-card figure.custom-layout-image-effect.image-frame-simple,
.custom-layout-work-card figure.custom-layout-image-effect.image-frame-photo,
.custom-layout-purpose-block figure.custom-layout-image-effect.image-frame-simple,
.custom-layout-purpose-block figure.custom-layout-image-effect.image-frame-photo{
  border:1px solid rgba(0,0,0,.08) !important;
}

.custom-layout-work-card figure.custom-layout-image-effect.image-border-0 img,
.custom-layout-purpose-block figure.custom-layout-image-effect.image-border-0 img,
.custom-layout-work-card figure.custom-layout-image-effect[style*="--cl-image-border-width:0px"] img,
.custom-layout-purpose-block figure.custom-layout-image-effect[style*="--cl-image-border-width:0px"] img{
  border:0 !important;
  outline:0 !important;
}

.custom-layout-work-card figure.custom-layout-image-effect img,
.custom-layout-purpose-block figure.custom-layout-image-effect img{
  display:block;
  margin:0 !important;
  vertical-align:top;
}

.custom-layout-work-card figure.custom-layout-image-effect + .custom-layout-work-body{
  margin-top:0 !important;
  padding-top:14px;
}

.custom-layout-work-body{
  margin-top:0 !important;
}

.custom-layout-work-card .custom-layout-work-body > :first-child{
  margin-top:0;
}

.custom-layout-work-card .custom-layout-work-body > :last-child{
  margin-bottom:0;
}


/* Works image real gap fix v3.3.4 */
.custom-layout-purpose.type-works .custom-layout-works-grid{
  align-items:start;
}

.custom-layout-purpose.type-works .custom-layout-work-card,
.custom-layout-works-grid .custom-layout-work-card{
  border:0 !important;
  box-shadow:none;
  background:#fff;
  overflow:hidden;
}

.custom-layout-purpose.type-works .custom-layout-work-card figure.custom-layout-image-effect,
.custom-layout-works-grid .custom-layout-work-card figure.custom-layout-image-effect{
  display:block !important;
  width:100%;
  margin:0 !important;
  padding:0 !important;
  aspect-ratio:4 / 3;
  line-height:0 !important;
  overflow:hidden !important;
  border:0 !important;
  outline:0 !important;
  background:#f5f0e6;
}

.custom-layout-purpose.type-works .custom-layout-work-card figure.custom-layout-image-effect.image-frame-photo,
.custom-layout-works-grid .custom-layout-work-card figure.custom-layout-image-effect.image-frame-photo{
  padding:18px 18px 30px !important;
  background:#fff;
  border:1px solid rgba(0,0,0,.08) !important;
}

.custom-layout-purpose.type-works .custom-layout-work-card figure.custom-layout-image-effect.image-frame-simple,
.custom-layout-works-grid .custom-layout-work-card figure.custom-layout-image-effect.image-frame-simple{
  padding:12px !important;
  background:#fff;
  border:1px solid rgba(0,0,0,.08) !important;
}

.custom-layout-purpose.type-works .custom-layout-work-card figure.custom-layout-image-effect.image-frame-none img,
.custom-layout-works-grid .custom-layout-work-card figure.custom-layout-image-effect.image-frame-none img,
.custom-layout-purpose.type-works .custom-layout-work-card figure.custom-layout-image-effect.image-border-0 img,
.custom-layout-works-grid .custom-layout-work-card figure.custom-layout-image-effect.image-border-0 img{
  width:100% !important;
  height:100% !important;
  max-width:none !important;
  object-fit:cover !important;
  display:block !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  outline:0 !important;
  box-shadow:none;
  vertical-align:top !important;
}

.custom-layout-purpose.type-works .custom-layout-work-card figure.custom-layout-image-effect + .custom-layout-work-body,
.custom-layout-works-grid .custom-layout-work-card figure.custom-layout-image-effect + .custom-layout-work-body{
  margin-top:0 !important;
  padding-top:12px !important;
}

.custom-layout-purpose.type-works .custom-layout-work-body,
.custom-layout-works-grid .custom-layout-work-body{
  margin:0 !important;
  padding-left:0;
  padding-right:0;
}


/* Restore works card frame while keeping image gap fix v3.3.5 */
.custom-layout-purpose.type-works .custom-layout-work-card,
.custom-layout-works-grid .custom-layout-work-card{
  border:1px solid var(--cl-border,#ded2bf) !important;
  background:#fff !important;
  overflow:hidden;
  box-shadow:none;
}

.custom-layout-purpose.type-works .custom-layout-work-body,
.custom-layout-works-grid .custom-layout-work-body{
  margin:0 !important;
  padding:18px !important;
}

.custom-layout-purpose.type-works .custom-layout-work-card figure.custom-layout-image-effect,
.custom-layout-works-grid .custom-layout-work-card figure.custom-layout-image-effect{
  margin:0 !important;
  line-height:0 !important;
  overflow:hidden !important;
}

.custom-layout-purpose.type-works .custom-layout-work-card figure.custom-layout-image-effect.image-frame-none,
.custom-layout-works-grid .custom-layout-work-card figure.custom-layout-image-effect.image-frame-none{
  padding:0 !important;
  border:0 !important;
  outline:0 !important;
}

.custom-layout-purpose.type-works .custom-layout-work-card figure.custom-layout-image-effect.image-frame-none + .custom-layout-work-body,
.custom-layout-works-grid .custom-layout-work-card figure.custom-layout-image-effect.image-frame-none + .custom-layout-work-body{
  margin-top:0 !important;
}

.custom-layout-purpose.type-works .custom-layout-work-card figure.custom-layout-image-effect.image-frame-photo + .custom-layout-work-body,
.custom-layout-purpose.type-works .custom-layout-work-card figure.custom-layout-image-effect.image-frame-simple + .custom-layout-work-body,
.custom-layout-works-grid .custom-layout-work-card figure.custom-layout-image-effect.image-frame-photo + .custom-layout-work-body,
.custom-layout-works-grid .custom-layout-work-card figure.custom-layout-image-effect.image-frame-simple + .custom-layout-work-body{
  margin-top:0 !important;
}

.custom-layout-purpose.type-works .custom-layout-work-card figure.custom-layout-image-effect img,
.custom-layout-works-grid .custom-layout-work-card figure.custom-layout-image-effect img{
  display:block !important;
  margin:0 !important;
  vertical-align:top !important;
}

.custom-layout-purpose.type-works .custom-layout-work-card figure.custom-layout-image-effect.image-frame-none img,
.custom-layout-works-grid .custom-layout-work-card figure.custom-layout-image-effect.image-frame-none img{
  border:0 !important;
  outline:0 !important;
}


/* CTA individual color settings */
.custom-layout-cta .custom-layout-content,
.custom-layout-cta .custom-layout-content p,
.custom-layout-cta .custom-layout-content li{
  color:var(--cl-cta-text,#fff);
}


/* Purpose contact/document individual colors */
.custom-layout-purpose.type-document .custom-layout-purpose-cta{
  color:var(--cl-purpose-cta-text,#1f1d1a);
}

.custom-layout-purpose.type-document .custom-layout-purpose-cta > strong{
  color:var(--cl-purpose-cta-heading,#1f1d1a);
}

.custom-layout-purpose.type-document .custom-layout-purpose-cta p{
  color:var(--cl-purpose-cta-text,#1f1d1a);
}

.custom-layout-purpose.type-document .custom-layout-purpose-cta .custom-layout-button{
  display:inline-flex;
  visibility:visible;
  opacity:1;
  background:var(--cl-purpose-cta-button-bg,#c67a2d);
  color:var(--cl-purpose-cta-button-text,#fff) !important;
}

.custom-layout-purpose.type-document .custom-layout-purpose-cta .custom-layout-button:hover,
.custom-layout-purpose.type-document .custom-layout-purpose-cta .custom-layout-button:focus{
  background:var(--cl-purpose-cta-button-hover,#ad641f);
  color:var(--cl-purpose-cta-button-text,#fff) !important;
}


/* =========================================================
   Public page parity for contact / document CTA v3.4.1
   Prevent theme editor-content heading and link rules from
   changing the appearance shown in the admin preview.
========================================================= */

.editor-content .custom-layout-purpose.type-document{
  display:block;
  width:100%;
  max-width:100%;
  margin:32px 0;
  box-sizing:border-box;
}



.editor-content .custom-layout-purpose.type-document .custom-layout-purpose-cta{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  margin:0 !important;
  padding:32px !important;
  border-style:solid !important;
  border-width:var(--cl-purpose-cta-border-width,1px) !important;
  border-color:var(--cl-purpose-cta-border-color,#ded2bf) !important;
  background:var(--cl-purpose-cta-bg,#f8f4ec) !important;
  color:var(--cl-purpose-cta-text,#1f1d1a) !important;
  text-align:center !important;
  box-sizing:border-box !important;
}

.editor-content .custom-layout-purpose.type-document .custom-layout-purpose-cta > strong{
  display:block !important;
  margin:0 0 8px !important;
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
  color:var(--cl-purpose-cta-heading,#1f1d1a) !important;
  font-size:18px !important;
  font-weight:700 !important;
  line-height:1.6 !important;
  letter-spacing:normal !important;
}

.editor-content .custom-layout-purpose.type-document .custom-layout-purpose-cta > div{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  margin:0 !important;
  padding:0 !important;
}

.editor-content .custom-layout-purpose.type-document .custom-layout-purpose-cta p{
  width:100% !important;
  max-width:100% !important;
  margin:0 0 .7em !important;
  padding:0 !important;
  color:var(--cl-purpose-cta-text,#1f1d1a) !important;
  font-size:inherit !important;
  line-height:1.8 !important;
  text-align:center !important;
}

.editor-content .custom-layout-purpose.type-document .custom-layout-purpose-cta p:last-child{
  margin-bottom:0 !important;
}

.editor-content .custom-layout-purpose.type-document .custom-layout-purpose-cta a.custom-layout-button{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:auto !important;
  min-width:180px !important;
  max-width:100% !important;
  margin:18px 0 0 !important;
  padding:12px 28px !important;
  border:0 !important;
  border-radius:0 !important;
  background:var(--cl-purpose-cta-button-bg,#c67a2d) !important;
  color:var(--cl-purpose-cta-button-text,#fff) !important;
  font-size:inherit !important;
  font-weight:400 !important;
  line-height:1.5 !important;
  letter-spacing:normal !important;
  text-align:center !important;
  text-decoration:none !important;
  box-shadow:none !important;
  opacity:1 !important;
  visibility:visible !important;
  box-sizing:border-box !important;
  transition:background-color .2s ease !important;
}

.editor-content .custom-layout-purpose.type-document .custom-layout-purpose-cta a.custom-layout-button:hover,
.editor-content .custom-layout-purpose.type-document .custom-layout-purpose-cta a.custom-layout-button:focus,
.editor-content .custom-layout-purpose.type-document .custom-layout-purpose-cta a.custom-layout-button:focus-visible{
  background:var(--cl-purpose-cta-button-hover,#ad641f) !important;
  color:var(--cl-purpose-cta-button-text,#fff) !important;
  text-decoration:none !important;
  opacity:1 !important;
}

@media(max-width:767px){


  .editor-content .custom-layout-purpose.type-document .custom-layout-purpose-cta{
    padding:24px 18px !important;
  }

  .editor-content .custom-layout-purpose.type-document .custom-layout-purpose-cta a.custom-layout-button{
    width:100% !important;
    min-width:0 !important;
  }
}


/* =========================================================
   Contact / document CTA public reset v3.4.2
   The heading stays outside the CTA box. Only the inner CTA
   receives the user-selected border.
========================================================= */

.editor-content .custom-layout-purpose.type-document,
.entry-content .custom-layout-purpose.type-document{
  display:block !important;
  position:relative !important;
  width:100% !important;
  max-width:100% !important;
  margin:32px 0 !important;
  padding:0 !important;
  border:0 !important;
  border-radius:0 !important;
  outline:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  overflow:visible !important;
  box-sizing:border-box !important;
}



.editor-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta,
.entry-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta{
  display:block !important;
  position:relative !important;
  clear:both !important;
  width:100% !important;
  max-width:100% !important;
  margin:0 !important;
  padding:32px !important;
  border-style:solid !important;
  border-width:var(--cl-purpose-cta-border-width,1px) !important;
  border-color:var(--cl-purpose-cta-border-color,#ded2bf) !important;
  border-radius:0 !important;
  outline:0 !important;
  background:var(--cl-purpose-cta-bg,#f8f4ec) !important;
  box-shadow:none !important;
  color:var(--cl-purpose-cta-text,#1f1d1a) !important;
  text-align:center !important;
  box-sizing:border-box !important;
}

.editor-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta::before,
.editor-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta::after,
.entry-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta::before,
.entry-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta::after{
  content:none !important;
  display:none !important;
}

.editor-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta > strong,
.entry-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta > strong{
  display:block !important;
  margin:0 0 12px !important;
  padding:0 !important;
  border:0 !important;
  outline:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  color:var(--cl-purpose-cta-heading,#1f1d1a) !important;
  font-size:18px !important;
  font-weight:700 !important;
  line-height:1.6 !important;
  text-align:center !important;
}

.editor-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta > div,
.entry-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta > div{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
  box-shadow:none !important;
}

.editor-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta p,
.entry-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta p{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  margin:0 0 .45em !important;
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
  color:var(--cl-purpose-cta-text,#1f1d1a) !important;
  line-height:1.8 !important;
  text-align:center !important;
}

.editor-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta p:last-child,
.entry-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta p:last-child{
  margin-bottom:0 !important;
}

.editor-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta > a.custom-layout-button,
.entry-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta > a.custom-layout-button{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:auto !important;
  min-width:180px !important;
  max-width:100% !important;
  margin:20px 0 0 !important;
  padding:12px 28px !important;
  border:0 !important;
  border-radius:0 !important;
  outline:0 !important;
  background:var(--cl-purpose-cta-button-bg,#c67a2d) !important;
  box-shadow:none !important;
  color:var(--cl-purpose-cta-button-text,#fff) !important;
  line-height:1.5 !important;
  text-align:center !important;
  text-decoration:none !important;
  opacity:1 !important;
  visibility:visible !important;
  box-sizing:border-box !important;
}

.editor-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta > a.custom-layout-button:hover,
.editor-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta > a.custom-layout-button:focus,
.entry-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta > a.custom-layout-button:hover,
.entry-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta > a.custom-layout-button:focus{
  background:var(--cl-purpose-cta-button-hover,#ad641f) !important;
  color:var(--cl-purpose-cta-button-text,#fff) !important;
  text-decoration:none !important;
}

@media(max-width:767px){
  .editor-content .custom-layout-purpose.type-document,
.entry-content .custom-layout-purpose.type-document{
    margin:24px 0 !important;
  }


  .editor-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta,
.entry-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta{
    padding:24px 18px !important;
  }

  .editor-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta > a.custom-layout-button,
.entry-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta > a.custom-layout-button{
    width:100% !important;
    min-width:0 !important;
  }
}


/* Keep document/contact button visible even before a URL is assigned */
.custom-layout-purpose.type-document .custom-layout-button.is-disabled,
.editor-content .custom-layout-purpose.type-document .custom-layout-button.is-disabled,
.entry-content .custom-layout-purpose.type-document .custom-layout-button.is-disabled{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-width:180px !important;
  margin-top:20px !important;
  padding:12px 28px !important;
  border:0 !important;
  background:var(--cl-purpose-cta-button-bg,#c67a2d) !important;
  color:var(--cl-purpose-cta-button-text,#fff) !important;
  text-decoration:none !important;
  opacity:.65 !important;
  cursor:not-allowed !important;
  box-sizing:border-box !important;
}

@media(max-width:767px){
  .custom-layout-purpose.type-document .custom-layout-button.is-disabled,
.editor-content .custom-layout-purpose.type-document .custom-layout-button.is-disabled,
.entry-content .custom-layout-purpose.type-document .custom-layout-button.is-disabled{
    width:100% !important;
    min-width:0 !important;
  }
}


/* =========================================================
   FAQ purpose layout parity and theme reset v3.4.5
========================================================= */
.custom-layout-purpose.type-faq,
.editor-content .custom-layout-purpose.type-faq,
.entry-content .custom-layout-purpose.type-faq{
  display:block !important;
  position:relative !important;
  clear:both !important;
  width:100% !important;
  max-width:100% !important;
  margin:32px 0 !important;
  padding:0 !important;
  border:0 !important;
  border-radius:0 !important;
  outline:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  overflow:visible !important;
  box-sizing:border-box !important;
}



.custom-layout-purpose.type-faq .custom-layout-faq-list,
.editor-content .custom-layout-purpose.type-faq .custom-layout-faq-list,
.entry-content .custom-layout-purpose.type-faq .custom-layout-faq-list{
  display:grid !important;
  width:100% !important;
  max-width:100% !important;
  gap:10px !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  box-sizing:border-box !important;
}

.custom-layout-purpose.type-faq .custom-layout-faq-item,
.editor-content .custom-layout-purpose.type-faq .custom-layout-faq-item,
.entry-content .custom-layout-purpose.type-faq .custom-layout-faq-item{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  margin:0 !important;
  padding:0 !important;
  border:1px solid var(--cl-faq-border-color,#ded2bf) !important;
  border-radius:0 !important;
  outline:0 !important;
  background:#fff !important;
  box-shadow:none !important;
  overflow:hidden !important;
  box-sizing:border-box !important;
}

.custom-layout-purpose.type-faq .custom-layout-faq-item summary,
.editor-content .custom-layout-purpose.type-faq .custom-layout-faq-item summary,
.entry-content .custom-layout-purpose.type-faq .custom-layout-faq-item summary{
  display:block !important;
  position:relative !important;
  margin:0 !important;
  padding:16px 44px 16px 18px !important;
  border:0 !important;
  border-radius:0 !important;
  outline:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  color:var(--ink,#1f1d1a) !important;
  font-weight:700 !important;
  line-height:1.6 !important;
  list-style:none !important;
  cursor:pointer !important;
  box-sizing:border-box !important;
}

.custom-layout-purpose.type-faq .custom-layout-faq-item summary::before,
.editor-content .custom-layout-purpose.type-faq .custom-layout-faq-item summary::before,
.entry-content .custom-layout-purpose.type-faq .custom-layout-faq-item summary::before{
  content:none !important;
  display:none !important;
}

.custom-layout-purpose.type-faq .custom-layout-faq-answer,
.editor-content .custom-layout-purpose.type-faq .custom-layout-faq-answer,
.entry-content .custom-layout-purpose.type-faq .custom-layout-faq-answer{
  margin:0 !important;
  padding:0 18px 18px !important;
  border:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  color:var(--cl-text,#1f1d1a) !important;
  box-sizing:border-box !important;
}

.custom-layout-purpose.type-faq .custom-layout-faq-answer > :first-child,
.editor-content .custom-layout-purpose.type-faq .custom-layout-faq-answer > :first-child,
.entry-content .custom-layout-purpose.type-faq .custom-layout-faq-answer > :first-child{
  margin-top:0 !important;
}

.custom-layout-purpose.type-faq .custom-layout-faq-answer > :last-child,
.editor-content .custom-layout-purpose.type-faq .custom-layout-faq-answer > :last-child,
.entry-content .custom-layout-purpose.type-faq .custom-layout-faq-answer > :last-child{
  margin-bottom:0 !important;
}


/* Split image hardening v3.4.7
   Prevent theme image styles from adding an unintended thick frame. */
.custom-layout-split .custom-layout-split-image.custom-layout-image-effect{
  margin:0 !important;
  padding:0 !important;
  background:transparent !important;
  outline:0 !important;
  box-sizing:border-box !important;
  border-style:solid !important;
  border-color:transparent !important;
  border-width:0 !important;
}

.custom-layout-split .custom-layout-split-image.custom-layout-image-effect.image-frame-none.image-border-1{
  border-color:var(--cl-image-border-color) !important;
  border-width:var(--cl-image-border-width) !important;
  border-style:var(--cl-image-border-style,solid) !important;
}

.custom-layout-split .custom-layout-split-image.custom-layout-image-effect.image-frame-none.image-border-0{
  border:0 !important;
}

.custom-layout-split .custom-layout-split-image.custom-layout-image-effect > img{
  display:block !important;
  margin:0 !important;
  padding:0 !important;
  width:100% !important;
  max-width:100% !important;
  height:auto;
  border:0 !important;
  border-radius:0;
  outline:0 !important;
  box-shadow:none !important;
  background:transparent !important;
  box-sizing:border-box !important;
}

.custom-layout-split .custom-layout-split-image.image-fit-original{
  aspect-ratio:auto !important;
  overflow:hidden;
}

.custom-layout-split .custom-layout-split-image.image-fit-original > img{
  aspect-ratio:auto !important;
  object-fit:contain !important;
  object-position:center center !important;
}

.custom-layout-split .custom-layout-split-image.image-fit-crop{
  aspect-ratio:4 / 3 !important;
  overflow:hidden !important;
}

.custom-layout-split .custom-layout-split-image.image-fit-crop > img{
  width:100% !important;
  height:100% !important;
  aspect-ratio:4 / 3 !important;
  object-fit:cover !important;
  object-position:center center !important;
}


/* Column content layouts v3.4.8 */
.custom-layout-column{
  min-width:0;
}

.custom-layout-column-image{
  min-width:0;
}

.custom-layout-column-image img{
  display:block;
  width:100%;
  max-width:100%;
  height:auto;
}

.custom-layout-column-text > :first-child{
  margin-top:0;
}

.custom-layout-column-text > :last-child{
  margin-bottom:0;
}

.custom-layout-column.column-layout-top.has-image.has-text .custom-layout-column-text{
  margin-top:16px;
}

.custom-layout-column.column-layout-left.has-image.has-text,
.custom-layout-column.column-layout-right.has-image.has-text{
  display:grid;
  grid-template-columns:minmax(0,.42fr) minmax(0,.58fr);
  gap:18px;
  align-items:start;
}

.custom-layout-column.column-layout-right.has-image.has-text{
  grid-template-columns:minmax(0,.58fr) minmax(0,.42fr);
}

@media (max-width:782px){
  .custom-layout-column.column-layout-left.has-image.has-text,
  .custom-layout-column.column-layout-right.has-image.has-text{
    grid-template-columns:1fr;
  }
  .custom-layout-column.column-layout-right.has-image.has-text .custom-layout-column-text{
    order:2;
  }
  .custom-layout-column.column-layout-right.has-image.has-text .custom-layout-column-image{
    order:1;
  }
}


/* Generic layout parts 3.5.1 */
.custom-layout-stats-grid,.custom-layout-generic-cards,.custom-layout-generic-gallery{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;margin:1.5em 0}
.custom-layout-stat-card,.custom-layout-generic-card,.custom-layout-gallery-card{margin:0;padding:24px;border:1px solid #ded2bf;background:#fff;box-sizing:border-box}
.custom-layout-stat-card{text-align:center}.custom-layout-stat-value{display:block;font-size:2.2em;line-height:1.15}.custom-layout-stat-label{display:block;font-weight:700;margin:.45em 0}
.custom-layout-generic-card figure,.custom-layout-gallery-card>span{display:block;margin:0 0 16px}.custom-layout-generic-card img,.custom-layout-gallery-card img{display:block;width:100%;height:auto}
.custom-layout-generic-card-body>strong,.custom-layout-gallery-card figcaption>strong{display:block;font-size:1.08em;margin-bottom:.45em}.custom-layout-generic-meta{display:block;font-size:.86em;margin-bottom:.45em;opacity:.72}
.custom-layout-checklist{list-style:none!important;margin:1.5em 0!important;padding:0!important;display:grid;gap:12px}.custom-layout-checklist li{display:flex;gap:12px;align-items:flex-start;padding:16px 18px;border:1px solid #ded2bf;background:#fff}.custom-layout-checkmark{flex:0 0 1.5em;font-weight:700;font-size:1.15em}.custom-layout-checklist strong{display:block;margin-bottom:.25em}
.custom-layout-gallery-card figcaption{padding-top:4px}
@media(max-width:782px){.custom-layout-stats-grid,.custom-layout-generic-cards,.custom-layout-generic-gallery{grid-template-columns:1fr}.custom-layout-stat-card,.custom-layout-generic-card,.custom-layout-gallery-card{padding:18px}}



/* Theme mode deliberately carries no heading decoration from this plugin. */
.heading-mode-theme > .custom-layout-heading,
.heading-mode-theme .custom-layout-heading{ }


/* CTA button controls v3.5.6 */
.custom-layout-button{
  box-sizing:border-box;
  border-radius:var(--cl-button-radius,0px);
  font-size:var(--cl-button-font-size,16px);
  font-weight:var(--cl-button-font-weight,400);
  border-style:var(--cl-button-border-style,solid);
  border-width:var(--cl-button-border-width,0px);
  border-color:var(--cl-button-border-color,var(--cl-cta-button-bg,#c67a2d));
  width:var(--cl-button-width,auto);
  text-align:center;
  padding:var(--cl-button-pad-y,12px) var(--cl-button-pad-x,28px);
}
.custom-layout-cta .custom-layout-button,
.custom-layout-purpose .custom-layout-button{margin-left:0;margin-right:0;}
.custom-layout-cta[style*="--cl-button-align:center"] .custom-layout-button,
.custom-layout-purpose[style*="--cl-button-align:center"] .custom-layout-button{display:flex;justify-content:center;margin-left:auto;margin-right:auto;}
.custom-layout-cta[style*="--cl-button-align:right"] .custom-layout-button,
.custom-layout-purpose[style*="--cl-button-align:right"] .custom-layout-button{display:flex;justify-content:center;margin-left:auto;margin-right:0;}


/* CTA button state parity v3.5.7
   Keep the same configured appearance before and after a URL is assigned,
   and on the public page. Earlier contact/document reset rules used fixed
   button dimensions and therefore overrode the v3.5.6 controls once the
   disabled preview button became a real <a>. */
.custom-layout-cta .custom-layout-button,
.custom-layout-purpose.type-document .custom-layout-purpose-cta > .custom-layout-button,
.editor-content .custom-layout-purpose.type-document .custom-layout-purpose-cta > .custom-layout-button,
.entry-content .custom-layout-purpose.type-document .custom-layout-purpose-cta > .custom-layout-button{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:var(--cl-button-width,auto) !important;
  min-width:0 !important;
  max-width:100% !important;
  padding:var(--cl-button-pad-y,12px) var(--cl-button-pad-x,28px) !important;
  border-style:solid !important;
  border-width:var(--cl-button-border-width,0px) !important;
  border-color:var(--cl-button-border-color,var(--cl-purpose-cta-button-bg,var(--cl-cta-button-bg,#c67a2d))) !important;
  border-radius:var(--cl-button-radius,0px) !important;
  font-size:var(--cl-button-font-size,16px) !important;
  font-weight:var(--cl-button-font-weight,400) !important;
  line-height:1.5 !important;
  text-align:center !important;
  text-decoration:none !important;
  box-sizing:border-box !important;
}

.custom-layout-purpose.type-document .custom-layout-purpose-cta > .custom-layout-button,
.editor-content .custom-layout-purpose.type-document .custom-layout-purpose-cta > .custom-layout-button,
.entry-content .custom-layout-purpose.type-document .custom-layout-purpose-cta > .custom-layout-button{
  background:var(--cl-purpose-cta-button-bg,#c67a2d) !important;
  color:var(--cl-purpose-cta-button-text,#fff) !important;
}

.custom-layout-cta .custom-layout-button{
  background:var(--cl-cta-button-bg,#c67a2d) !important;
  color:var(--cl-cta-button-text,#fff) !important;
}

.custom-layout-purpose.type-document .custom-layout-purpose-cta > .custom-layout-button.is-disabled,
.editor-content .custom-layout-purpose.type-document .custom-layout-purpose-cta > .custom-layout-button.is-disabled,
.entry-content .custom-layout-purpose.type-document .custom-layout-purpose-cta > .custom-layout-button.is-disabled{
  opacity:.65 !important;
  cursor:not-allowed !important;
}

.custom-layout-cta[style*="--cl-button-align:center"] .custom-layout-button,
.custom-layout-purpose[style*="--cl-button-align:center"] .custom-layout-button{
  margin-left:auto !important;
  margin-right:auto !important;
}
.custom-layout-cta[style*="--cl-button-align:right"] .custom-layout-button,
.custom-layout-purpose[style*="--cl-button-align:right"] .custom-layout-button{
  margin-left:auto !important;
  margin-right:0 !important;
}
.custom-layout-cta[style*="--cl-button-align:left"] .custom-layout-button,
.custom-layout-purpose[style*="--cl-button-align:left"] .custom-layout-button{
  margin-left:0 !important;
  margin-right:auto !important;
}

@media(max-width:767px){
  .custom-layout-purpose.type-document .custom-layout-purpose-cta > .custom-layout-button,
.editor-content .custom-layout-purpose.type-document .custom-layout-purpose-cta > .custom-layout-button,
.entry-content .custom-layout-purpose.type-document .custom-layout-purpose-cta > .custom-layout-button{
    width:var(--cl-button-width,auto) !important;
    min-width:0 !important;
  }
}


/* CTA hover + box width controls v3.5.9 */
.custom-layout-cta{
  width:var(--cl-cta-box-width,100%);
  max-width:100%;
  margin-left:auto;
  margin-right:auto;
  box-sizing:border-box;
}
.custom-layout-purpose.type-document .custom-layout-purpose-cta{
  width:var(--cl-cta-box-width,100%);
  max-width:100%;
  margin-left:auto;
  margin-right:auto;
  box-sizing:border-box;
}
.custom-layout-cta .custom-layout-button:hover,
.custom-layout-cta .custom-layout-button:focus-visible{
  background:var(--cl-cta-button-hover,#ad641f) !important;
}
.custom-layout-purpose.type-document .custom-layout-purpose-cta > .custom-layout-button:not(.is-disabled):hover,
.custom-layout-purpose.type-document .custom-layout-purpose-cta > .custom-layout-button:not(.is-disabled):focus-visible,
.editor-content .custom-layout-purpose.type-document .custom-layout-purpose-cta > .custom-layout-button:not(.is-disabled):hover,
.entry-content .custom-layout-purpose.type-document .custom-layout-purpose-cta > .custom-layout-button:not(.is-disabled):hover{
  background:var(--cl-purpose-cta-button-hover,#ad641f) !important;
}
@media(max-width:767px){
  .custom-layout-cta,
.custom-layout-purpose.type-document .custom-layout-purpose-cta{
    width:100%;
  }
}


/* CTA box width persistence / preview-public parity v3.5.10
 * Existing purpose CTA rules intentionally use !important to protect the theme-facing design.
 * Apply the saved box width at the same priority, and keep mobile at 100%.
 */
.custom-layout-cta,
.editor-content .custom-layout-cta,
.entry-content .custom-layout-cta{
  width:var(--cl-cta-box-width,100%) !important;
  max-width:100% !important;
  margin-left:auto !important;
  margin-right:auto !important;
  box-sizing:border-box !important;
}
.custom-layout-purpose.type-document .custom-layout-purpose-cta,
.editor-content .custom-layout-purpose.type-document .custom-layout-purpose-cta,
.entry-content .custom-layout-purpose.type-document .custom-layout-purpose-cta,
.editor-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta,
.entry-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta{
  width:var(--cl-cta-box-width,100%) !important;
  max-width:100% !important;
  margin-left:auto !important;
  margin-right:auto !important;
  box-sizing:border-box !important;
}
@media(max-width:767px){
  .custom-layout-cta,
.editor-content .custom-layout-cta,
.entry-content .custom-layout-cta,
.custom-layout-purpose.type-document .custom-layout-purpose-cta,
.editor-content .custom-layout-purpose.type-document .custom-layout-purpose-cta,
.entry-content .custom-layout-purpose.type-document .custom-layout-purpose-cta{
    width:100% !important;
  }
}


/* Column text vertical alignment v3.5.16 */
.custom-layout-column{
  box-sizing:border-box;
  height:100%;
}

.custom-layout-column.has-text:not(.column-layout-left):not(.column-layout-right){
  display:flex;
  flex-direction:column;
}

.custom-layout-column.column-text-valign-middle.has-text:not(.has-image) .custom-layout-column-text{
  margin-top:auto;
  margin-bottom:auto;
}

.custom-layout-column.column-text-valign-bottom.has-text:not(.has-image) .custom-layout-column-text{
  margin-top:auto;
}

.custom-layout-column.column-layout-top.has-image.has-text.column-text-valign-middle .custom-layout-column-text{
  margin-top:auto;
  margin-bottom:auto;
  padding-top:16px;
}

.custom-layout-column.column-layout-top.has-image.has-text.column-text-valign-bottom .custom-layout-column-text{
  margin-top:auto;
  padding-top:16px;
}

.custom-layout-column.column-layout-left.has-image.has-text.column-text-valign-middle .custom-layout-column-text,
.custom-layout-column.column-layout-right.has-image.has-text.column-text-valign-middle .custom-layout-column-text{
  align-self:center;
}

.custom-layout-column.column-layout-left.has-image.has-text.column-text-valign-bottom .custom-layout-column-text,
.custom-layout-column.column-layout-right.has-image.has-text.column-text-valign-bottom .custom-layout-column-text{
  align-self:end;
}

.custom-layout-column.column-layout-left.has-image.has-text.column-text-valign-top .custom-layout-column-text,
.custom-layout-column.column-layout-right.has-image.has-text.column-text-valign-top .custom-layout-column-text{
  align-self:start;
}


/* =========================================================
   Unified design controls v3.6.0
   Theme headings are intentionally not styled by this plugin.
========================================================= */
.custom-layout-box-image{
  display:block;
  width:100%;
  margin:0 0 20px;
}
.custom-layout-box-image img,
.custom-layout-purpose-card-image img{
  display:block;
  width:100%;
  height:auto;
}
.custom-layout-purpose-card-image{
  display:block;
  margin:0;
}
.custom-layout-purpose-card-body{
  padding:20px;
}
.custom-layout-purpose-card > .custom-layout-purpose-card-body:first-child{
  padding-top:24px;
}

.custom-layout-image-effect.image-border-1 img{
  border-style:var(--cl-image-border-style,solid) !important;
}

.custom-layout-columns > *{
  border-width:var(--cl-column-border-width,1px);
  border-style:var(--cl-column-border-style,solid);
  border-color:var(--cl-column-border-color,#ded2bf);
}

.custom-layout-box{
  border-width:var(--cl-box-border-width,1px);
  border-style:var(--cl-box-border-style,solid);
  border-color:var(--cl-box-border-color,#ded2bf) !important;
}

.custom-layout-cta{
  border-width:var(--cl-cta-border-width,0);
  border-style:var(--cl-cta-border-style,solid);
  border-color:var(--cl-cta-border-color,#ded2bf);
}

.custom-layout-flow-item{
  border-width:var(--cl-flow-border-width,1px);
  border-style:var(--cl-flow-border-style,solid);
  border-color:var(--cl-flow-border-color,#ded2bf);
}

.custom-layout-purpose.type-faq .custom-layout-faq-item,
.editor-content .custom-layout-purpose.type-faq .custom-layout-faq-item,
.entry-content .custom-layout-purpose.type-faq .custom-layout-faq-item{
  border-width:var(--cl-faq-border-width,1px) !important;
  border-style:var(--cl-faq-border-style,solid) !important;
  border-color:var(--cl-faq-border-color,#ded2bf) !important;
}

.custom-layout-purpose-cta,
.editor-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta,
.entry-content .custom-layout-purpose.type-document > .custom-layout-purpose-cta{
  border-width:var(--cl-purpose-cta-border-width,1px) !important;
  border-style:var(--cl-purpose-cta-border-style,solid) !important;
  border-color:var(--cl-purpose-cta-border-color,#ded2bf) !important;
}

.custom-layout-work-card,
.custom-layout-purpose.type-works .custom-layout-work-card,
.custom-layout-works-grid .custom-layout-work-card,
.custom-layout-purpose-card,
.custom-layout-purpose-block,
.custom-layout-stat-card,
.custom-layout-generic-card,
.custom-layout-gallery-card,
.custom-layout-checklist li,
.custom-layout-message-block{
  border-width:var(--cl-purpose-item-border-width,1px) !important;
  border-style:var(--cl-purpose-item-border-style,solid) !important;
  border-color:var(--cl-purpose-item-border-color,#ded2bf) !important;
}

.editor-content .custom-layout-table-wrap .custom-layout-table th,
.editor-content .custom-layout-table-wrap .custom-layout-table td,
.custom-layout-table-wrap .custom-layout-table th,
.custom-layout-table-wrap .custom-layout-table td,
.custom-layout-table th,
.custom-layout-table td{
  border-width:var(--cl-table-border-width,1px) !important;
  border-style:var(--cl-table-border-style,solid) !important;
  border-color:var(--cl-table-border,#ded2bf) !important;
}

@media(max-width:768px){
  .editor-content .custom-layout-table-wrap .custom-layout-table tr,
  .custom-layout-table-wrap .custom-layout-table tr{
    border-width:var(--cl-table-border-width,1px) !important;
    border-style:var(--cl-table-border-style,solid) !important;
    border-color:var(--cl-table-border,#ded2bf) !important;
  }
  .editor-content .custom-layout-table-wrap.has-headers .custom-layout-table td,
  .custom-layout-table-wrap.has-headers .custom-layout-table td,
  .editor-content .custom-layout-table-wrap.no-headers .custom-layout-table td,
  .custom-layout-table-wrap.no-headers .custom-layout-table td{
    border-left:0 !important;
    border-right:0 !important;
    border-top:0 !important;
    border-bottom-width:var(--cl-table-border-width,1px) !important;
    border-bottom-style:var(--cl-table-border-style,solid) !important;
    border-bottom-color:var(--cl-table-border,#ded2bf) !important;
  }
  .editor-content .custom-layout-table-wrap.has-headers .custom-layout-table td:last-child,
  .editor-content .custom-layout-table-wrap.no-headers .custom-layout-table td:last-child,
  .custom-layout-table-wrap.has-headers .custom-layout-table td:last-child,
  .custom-layout-table-wrap.no-headers .custom-layout-table td:last-child{
    border-bottom:0 !important;
  }
}


/* Purpose layout content / setting parity v3.6.3
 * Every visible setting in purpose layouts must use the same classes and values
 * in the instant preview, exact PHP preview and public output. */
.custom-layout-purpose-intro{
  display:block;
  width:100%;
  max-width:100%;
  margin:0 0 1.35em;
  box-sizing:border-box;
}
.custom-layout-purpose-intro > :first-child,
.custom-layout-generic-card-text > :first-child{
  margin-top:0;
}
.custom-layout-purpose-intro > :last-child,
.custom-layout-generic-card-text > :last-child{
  margin-bottom:0;
}
.custom-layout-generic-card-text{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  width:100%;
  max-width:100%;
  color:inherit;
  box-sizing:border-box;
}
.custom-layout-generic-card-text p{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  width:100%;
  max-width:100%;
  margin:.55em 0 0;
  color:inherit;
}

/* Common "文章インデント" for all purpose-layout text areas. */
.custom-layout-purpose.indent-small{--cl-purpose-text-indent:1em;}
.custom-layout-purpose.indent-medium{--cl-purpose-text-indent:2em;}
.custom-layout-purpose.indent-large{--cl-purpose-text-indent:3em;}
.custom-layout-purpose.indent-none{--cl-purpose-text-indent:0;}

.custom-layout-purpose .custom-layout-purpose-intro,
.custom-layout-purpose .custom-layout-message-body,
.custom-layout-purpose .custom-layout-faq-answer,
.custom-layout-purpose .custom-layout-flow-item > div,
.custom-layout-purpose .custom-layout-work-body,
.custom-layout-purpose .custom-layout-purpose-card-body,
.custom-layout-purpose .custom-layout-stat-card,
.custom-layout-purpose .custom-layout-checklist li > div,
.custom-layout-purpose .custom-layout-gallery-card figcaption,
.custom-layout-purpose .custom-layout-generic-card-body,
.custom-layout-purpose .custom-layout-purpose-cta > div,
.custom-layout-purpose .custom-layout-purpose-block > div{
  padding-left:var(--cl-purpose-text-indent,0);
  box-sizing:border-box;
}

/* Keep the selected indent on SP too; purpose cards already constrain content
 * inside their own width, so this does not create horizontal overflow. */
@media(max-width:768px){
  .custom-layout-purpose.indent-small{--cl-purpose-text-indent:1em;}
  .custom-layout-purpose.indent-medium{--cl-purpose-text-indent:2em;}
  .custom-layout-purpose.indent-large{--cl-purpose-text-indent:3em;}
}


/* 3.7.0 neutral builder + custom heading system */
.heading-mode-custom .custom-layout-heading{
  margin-top:0 !important;
  background:none !important;
  color:var(--cl-heading-color,#1d2327) !important;
  font-weight:var(--cl-heading-weight,600) !important;
  text-align:var(--cl-heading-align,left) !important;
  line-height:1.45 !important;
  box-shadow:none !important;
  border-radius:0 !important;
}
.heading-mode-custom.heading-size-custom .custom-layout-heading{
  font-size:var(--cl-heading-size) !important;
}

.heading-mode-custom .custom-layout-heading::before,
.heading-mode-custom .custom-layout-heading::after{
  content:none !important;
  display:none !important;
}
.heading-mode-custom.heading-style-plain .custom-layout-heading{
  padding:0 !important;
  border:0 !important;
}
.heading-mode-custom.heading-style-underline .custom-layout-heading{
  padding:0 0 .55em !important;
  border:0 !important;
  border-bottom:var(--cl-heading-border-width,1px) var(--cl-heading-border-style,solid) var(--cl-heading-border-color,#dcdcde) !important;
}
.heading-mode-custom.heading-style-leftbar .custom-layout-heading{
  padding:.15em 0 .15em .75em !important;
  border:0 !important;
  border-left:var(--cl-heading-border-width,2px) var(--cl-heading-border-style,solid) var(--cl-heading-border-color,#dcdcde) !important;
}
.custom-layout-split .custom-layout-content,
.custom-layout-box .custom-layout-content,
.custom-layout-cta .custom-layout-content,
.custom-layout-columns .custom-layout-column-text,
.custom-layout-purpose,
.custom-layout-table-wrap .custom-layout-table{
  font-size:var(--cl-body-font-size,inherit);
  line-height:var(--cl-body-line-height,inherit);
}
.custom-layout-content-link{ margin:1.1em 0 0; }
.custom-layout-content-link a{ display:inline-flex; align-items:center; gap:.35em; text-decoration:none; }
.custom-layout-content-link a::after{ content:"→"; }
.custom-layout-purpose .custom-layout-purpose-card,
.custom-layout-purpose .custom-layout-purpose-block,
.custom-layout-purpose .custom-layout-work-card,
.custom-layout-purpose .custom-layout-generic-card,
.custom-layout-purpose .custom-layout-stat-card,
.custom-layout-purpose .custom-layout-gallery-card,
.custom-layout-purpose .custom-layout-faq-item,
.custom-layout-purpose .custom-layout-flow-item{
  background:var(--cl-purpose-item-bg,inherit);
  color:var(--cl-purpose-item-text,inherit);
}


/* Category index v3.9.1 */

.custom-layout-category-index{
  display:grid;
  gap:20px;
  width:100%;
  margin:28px 0;
  box-sizing:border-box;
}

.custom-layout-category-index.columns-1{ grid-template-columns:1fr; }
.custom-layout-category-index.columns-2{ grid-template-columns:repeat(2,minmax(0,1fr)); }
.custom-layout-category-index.columns-3{ grid-template-columns:repeat(3,minmax(0,1fr)); }

.custom-layout-category-index-card{
  display:grid;
  grid-template-columns:minmax(96px,38%) minmax(0,1fr);
  min-height:132px;
  overflow:hidden;
  border:1px solid #dcdcde;
  border-radius:0;
  background:#fff;
  color:inherit !important;
  text-decoration:none !important;
  box-shadow:none;
  box-sizing:border-box;
}

a.custom-layout-category-index-card:hover,
a.custom-layout-category-index-card:focus{
  border-color:#8c8f94;
  color:inherit !important;
  text-decoration:none !important;
}

.custom-layout-category-index-image{
  display:block;
  min-width:0;
  background:#f6f7f7;
  overflow:hidden;
}

.custom-layout-category-index-image img{
  display:block;
  width:100%;
  height:100%;
  min-height:132px;
  object-fit:cover;
}

.custom-layout-category-index-body{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-width:0;
  padding:18px;
  box-sizing:border-box;
}

.custom-layout-category-index-body:only-child{
  grid-column:1 / -1;
}

.custom-layout-category-index-title{
  display:block;
  margin:0 0 8px;
  color:#1d2327;
  font-size:1.05em;
  line-height:1.45;
  font-weight:600;
}

.custom-layout-category-index-summary{
  display:block;
  color:#50575e;
  line-height:1.7;
}

.custom-layout-category-index-summary p{
  margin:0;
}

@media(max-width:1100px){
  .custom-layout-category-index.columns-3{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:680px){
  .custom-layout-category-index.columns-2,
  .custom-layout-category-index.columns-3{
    grid-template-columns:1fr;
  }
}

@media(max-width:420px){
  .custom-layout-category-index-card{
    grid-template-columns:minmax(92px,34%) minmax(0,1fr);
  }
  .custom-layout-category-index-body{
    padding:14px;
  }
}

/* =========================================================
   Responsive table: header-only mobile stacking v3.9.8
   IMPORTANT:
   - Do not alter .no-headers tables here. Their mobile behavior is the
     proven v3.9.4 behavior used by company/profile tables.
   - Only tables that explicitly have column headers are converted to
     stacked label/value cards on narrow screens.
========================================================= */
@media (max-width:768px){
  .editor-content .custom-layout-table-wrap.has-headers .custom-layout-table td,
  .custom-layout-preview-scope .custom-layout-table-wrap.has-headers .custom-layout-table td,
  .custom-layout-table-wrap.has-headers .custom-layout-table td{
    display:block !important;
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    padding:0 !important;
    border-left:0 !important;
    border-right:0 !important;
    border-top:0 !important;
    border-bottom-width:var(--cl-table-border-width,1px) !important;
    border-bottom-style:var(--cl-table-border-style,solid) !important;
    border-bottom-color:var(--cl-table-border,#ded2bf) !important;
    background:var(--cl-current-cell-bg,var(--cl-table-cell-bg,#fff)) !important;
    color:var(--cl-table-cell-text,#1f1d1a) !important;
    text-align:var(--cl-table-align,left) !important;
    box-sizing:border-box !important;
  }

  .editor-content .custom-layout-table-wrap.has-headers .custom-layout-table td:last-child,
  .custom-layout-preview-scope .custom-layout-table-wrap.has-headers .custom-layout-table td:last-child,
  .custom-layout-table-wrap.has-headers .custom-layout-table td:last-child{
    border-bottom:0 !important;
  }

  .editor-content .custom-layout-table-wrap.has-headers .custom-layout-table td::before,
  .custom-layout-preview-scope .custom-layout-table-wrap.has-headers .custom-layout-table td::before,
  .custom-layout-table-wrap.has-headers .custom-layout-table td::before{
    content:attr(data-label) !important;
    display:block !important;
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    padding:9px 14px !important;
    box-sizing:border-box !important;
    background:var(--cl-table-head-bg,#2a241f) !important;
    color:var(--cl-table-head-text,#fff) !important;
    font-weight:700 !important;
    line-height:1.5 !important;
    text-align:var(--cl-table-head-align,left) !important;
    white-space:normal !important;
    overflow-wrap:anywhere !important;
    word-break:normal !important;
  }

  .editor-content .custom-layout-table-wrap.has-headers .custom-layout-table td[data-label=""]::before,
  .custom-layout-preview-scope .custom-layout-table-wrap.has-headers .custom-layout-table td[data-label=""]::before,
  .custom-layout-table-wrap.has-headers .custom-layout-table td[data-label=""]::before{
    display:none !important;
  }

  .editor-content .custom-layout-table-wrap.has-headers .custom-layout-table .custom-layout-table-cell-inner,
  .custom-layout-preview-scope .custom-layout-table-wrap.has-headers .custom-layout-table .custom-layout-table-cell-inner,
  .custom-layout-table-wrap.has-headers .custom-layout-table .custom-layout-table-cell-inner{
    display:block !important;
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    padding:12px 14px !important;
    box-sizing:border-box !important;
    color:var(--cl-table-cell-text,#1f1d1a) !important;
    line-height:inherit !important;
    text-align:var(--cl-table-align,left) !important;
    white-space:normal !important;
    overflow-wrap:anywhere !important;
    word-break:normal !important;
  }
}
