.elementor-1014 .elementor-element.elementor-element-83c07e1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-archive-posts .elementor-button{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-widget-archive-posts .elementor-post__title, .elementor-widget-archive-posts .elementor-post__title a{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-archive-posts .elementor-post__meta-data{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-archive-posts .elementor-post__excerpt p{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-archive-posts .elementor-post__read-more{color:var( --e-global-color-accent );}.elementor-widget-archive-posts a.elementor-post__read-more{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-widget-archive-posts .elementor-post__card .elementor-post__badge{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-widget-archive-posts .elementor-pagination{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-archive-posts .e-load-more-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-archive-posts .elementor-posts-nothing-found{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-1014 .elementor-element.elementor-element-6f94442{--grid-row-gap:35px;--grid-column-gap:30px;}.elementor-1014 .elementor-element.elementor-element-6f94442 .elementor-post__title, .elementor-1014 .elementor-element.elementor-element-6f94442 .elementor-post__title a{color:#B23712;}.elementor-1014 .elementor-element.elementor-element-6f94442 .elementor-pagination{text-align:center;}.elementor-1014 .elementor-element.elementor-element-6f94442 .elementor-pagination .page-numbers:not(.dots){color:#323232;}body:not(.rtl) .elementor-1014 .elementor-element.elementor-element-6f94442 .elementor-pagination .page-numbers:not(:first-child){margin-left:calc( 10px/2 );}body:not(.rtl) .elementor-1014 .elementor-element.elementor-element-6f94442 .elementor-pagination .page-numbers:not(:last-child){margin-right:calc( 10px/2 );}body.rtl .elementor-1014 .elementor-element.elementor-element-6f94442 .elementor-pagination .page-numbers:not(:first-child){margin-right:calc( 10px/2 );}body.rtl .elementor-1014 .elementor-element.elementor-element-6f94442 .elementor-pagination .page-numbers:not(:last-child){margin-left:calc( 10px/2 );}.elementor-1014 .elementor-element.elementor-element-3d1b04a > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 20px 0px;}.elementor-1014 .elementor-element.elementor-element-3d1b04a.elementor-element{--align-self:center;}@media(min-width:768px){.elementor-1014 .elementor-element.elementor-element-83c07e1{--content-width:1050px;}}/* Start custom CSS for wp-widget-search, class: .elementor-element-3d1b04a *//* ----------------------------------- */
/* 1. CONTAINER / FORM STYLING */
/* ----------------------------------- */
.search-form {
    display: flex; /* Aligns input and button horizontally */
    align-items: center; /* Vertically aligns items in the middle */
    border: 1px solid #ccc; /* Light border around the whole form */
    border-radius: 25px; /* Creates rounded corners */
    overflow: hidden; /* Ensures contents respect the border-radius */
    max-width: 300px; /* Adjust the max width as needed */
    margin: 20px 0; /* Add some space above and below */
}

/* ----------------------------------- */
/* 2. SEARCH INPUT FIELD STYLING */
/* ----------------------------------- */
.search-form .search-field {
    flex-grow: 1; /* Makes the input field take up available space */
    padding: 10px 15px;
    border: none; /* Remove default input border */
    background-color: #f7f7f7; /* Light gray background */
    font-size: 16px;
    color: #333;
    line-height: normal; /* Important for vertical alignment */
    /* Remove any inner shadow/outline when focused */
    outline: none; 
    box-shadow: none; 
}

/* Change the placeholder text color */
.search-form .search-field::placeholder {
    color: #888;
    opacity: 1; /* Standard property for cross-browser consistency */
}

/* ----------------------------------- */
/* 3. SUBMIT BUTTON STYLING */
/* ----------------------------------- */
.search-form .search-submit {
    background-color: #0073aa; /* A nice WordPress-blue color */
    color: white;
    font-size: 16px;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

/* Hover effect for the button */
.search-form .search-submit:hover,
.search-form .search-submit:focus {
    background-color: #005177; /* Darker blue on hover */
}

/* Optionally, if you are using an icon for the button, you can hide the text */
/* If your button shows a search icon (like FontAwesome), you might need to adjust the padding/text-indent */
/* Example for hiding text and showing an icon (if you modify the HTML or use a block editor): */
/*
.search-form .search-submit {
    text-indent: -9999px; // Hide the text
    width: 45px; // Set a specific width for the icon
    background-image: url('path/to/search-icon.svg'); // Use a background image for the icon
    background-repeat: no-repeat;
    background-position: center center;
}
*//* End custom CSS */