.elementor-48515 .elementor-element.elementor-element-1ce259b{--display:flex;--align-items:flex-start;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--gap:0px 0px;--row-gap:0px;--column-gap:0px;border-style:solid;--border-style:solid;border-width:0px 0px 1px 0px;--border-top-width:0px;--border-right-width:0px;--border-bottom-width:1px;--border-left-width:0px;border-color:var( --e-global-color-secondary );--border-color:var( --e-global-color-secondary );--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-48515 .elementor-element.elementor-element-83a939e{width:100%;max-width:100%;text-align:left;}.elementor-48515 .elementor-element.elementor-element-83a939e > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 5px 0px;}.elementor-48515 .elementor-element.elementor-element-83a939e .elementor-heading-title{font-size:1.2rem;font-weight:600;line-height:1.5;color:var( --e-global-color-444146c4 );}.elementor-48515 .elementor-element.elementor-element-d165c70 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-48515 .elementor-element.elementor-element-d165c70{font-size:var( --e-global-typography-36c6a1f-font-size );line-height:var( --e-global-typography-36c6a1f-line-height );}.e-loop-item-48515{--preview-width:100%;}@media(max-width:1024px){.elementor-48515 .elementor-element.elementor-element-d165c70{font-size:var( --e-global-typography-36c6a1f-font-size );line-height:var( --e-global-typography-36c6a1f-line-height );}}@media(max-width:767px){.elementor-48515 .elementor-element.elementor-element-d165c70{font-size:var( --e-global-typography-36c6a1f-font-size );line-height:var( --e-global-typography-36c6a1f-line-height );}}/* Start custom CSS for container, class: .elementor-element-1ce259b */<?php
function display_post_meta_shortcode( $atts ) {
  // Extract the attributes passed to the shortcode
  $atts = shortcode_atts( array(
    'meta_key' => '', // The key of the metadata you want to retrieve
    'post_id' => get_the_ID(), // Post ID, defaults to the current post
    'single' => false // Whether to return a single value or an array
  ), $atts, 'display_post_meta');

  // Get the post metadata
  $meta_value = get_post_meta( $atts['post_id'], $atts['meta_key'], $atts['single'] );

  // Return the metadata value
  return $meta_value;
}
add_shortcode( 'display_post_meta', 'display_post_meta_shortcode' );
?>/* End custom CSS */