/* Dynamic Blog Shortcode Styles */
.dynamic-blog-container { 
    max-width: 1550px;
    margin: 0 auto; 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fff;
    
}

.dynamic-blog-grid { 
    display: grid; 
    grid-template-columns: 1fr 480px; 
    gap: 60px; 
    align-items: start;
}

.dynamic-blog-grid.no-sidebar {
    grid-template-columns: 1fr;
}

.dynamic-blog-posts { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); 
    column-gap: 70px;
    row-gap: 85px;
    margin-bottom: 40px;
    padding-left: 10px;
}

.dynamic-blog-card { 
    background: white; 
    border-radius: 0;
    overflow: hidden; 
    transition: all 0.3s ease;
    border: none;
    box-shadow: none;
}

.dynamic-blog-card:hover { 
    transform: translateY(-2px);
}

.dynamic-blog-image { 
    height: 377px; 
    background: #f8f8f8; 
    background-size: cover; 
    background-position: center;
    border-radius: 2px;
    margin-bottom: 46px;
    position: relative;
    overflow: hidden;
}

.dynamic-blog-category-tag {
font-family: "DM Sans", Sans-serif;
       background: rgba(184, 161, 136, 0.9);
    color: white;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    margin-bottom: 10px;
}

.dynamic-blog-content { 
    
    padding: 0;
}

.dynamic-blog-date {
    font-family: "DM Sans", Sans-serif;
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.dynamic-blog-title { 
    font-family: "DM Sans", Sans-serif;
    font-size: 1.5rem; 
    line-height: 1.3;
    margin-bottom: 15px; 
    color: #2c2c2c; 
    font-weight: 600;
    letter-spacing: -0.02em;
}

.dynamic-blog-excerpt { 
    font-family: "DM Sans", Sans-serif;
    color: #666; 
    margin-bottom: 18px; 
    font-size: 1rem; 
    line-height: 1.6;
    font-weight: 400;
}

.dynamic-blog-read-more { 
    font-family: "DM Sans", Sans-serif;
    color: #000000ba;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.dynamic-blog-read-more:hover {
    color: #9d8670;
}

.dynamic-blog-read-more::after {
   content: '>';
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dynamic-blog-read-more:hover::after {
    transform: translateX(3px);
}

/* Sidebar Styles */
a.dynamic-blog-category-link {
    text-decoration: none;
}
.dynamic-blog-sidebar {
    position: sticky;
    top: 40px;
   
        padding: 0 30px 40px 30px;
    border-radius: 8px;
    height: fit-content;
}

.dynamic-blog-sidebar-title {
        font-family: "Times New Roman", Sans-serif;
        letter-spacing: 0;
    font-size: 1.75rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    
}

.dynamic-blog-categories { 
    list-style: none; 
    padding: 0; 
    margin: 0;
}

.dynamic-blog-categories li {
    border-bottom: 1px solid #eee;
}

.dynamic-blog-categories li:last-child {
    border-bottom: none;
}

.dynamic-blog-category-link { 
        font-family: "DM Sans", Sans-serif;
   display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 45px;
    color: #000000;
    text-decoration: none !important;
    cursor: pointer;
    font-size: 23px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}
#custom_contactform .wpcf7-form textarea {
   
    font-size: 21px;
    font-family: 'DM Sans';
}
#custom_contactform .wpcf7-form .wpcf7-list-item-label {
    color: #040404;
    font-size: 20px;
}
#custom_contactform .availability-section h3 {
    color: #000000;
    font-size: 21px;
    font-weight: 700;
    font-family: 'DM Sans';
}
#custom_contactform .availability-section{
    border-top: none;
}
#custom_contactform input.wpcf7-form-control {
    font-size: 21px !important;
    font-weight: 400 !important;
    border-color: #999 !important;
    border-width: 1px !important;
}
/* Contact Form Styling */
.wpcf7-form {
   
    margin: 0 auto;
    background: #faf9f4;
   padding: 120px 110px 100px 110px;
    border-radius: 8px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
      
}

.form-column {
    flex: 1;
}

.form-full-width {
    width: 100%;
    margin-bottom: 20px;
}

/* Input Fields */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-bottom: 2px solid #bfbfbf6e;
    background: transparent;
    font-size: 15px;
    color: #999;
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
        font-family: 'DM Sans';
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    border-bottom-color: #8B7355;
}

.wpcf7-form textarea {
	    height: 120px;
    min-height: 80px;
    resize: vertical;
}

/* Availability Section */
.availability-section {
    margin: 30px 0;
    padding: 20px 0;
    
}

.availability-section h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.wpcf7-form .wpcf7-checkbox {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wpcf7-form .wpcf7-list-item {
    margin: 0;
    display: flex;
    align-items: center;
}

.wpcf7-form .wpcf7-list-item input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    transform: scale(1.2);
}

.wpcf7-form .wpcf7-list-item-label {
    color: #666;
    font-size: 16px;
}

/* Submit Button */
#custom_contactform .submit-btn {
    background: #8B7355 ;
    color: white ;
    padding: 15px 180px ;
    border: none ;
   
    font-size: 16px ;
    font-weight: bold ;
    letter-spacing: 1px ;
    cursor: pointer ;
    transition: background 0.3st;
    display: block ;
    margin: 30px auto 0 ;
    
}

.submit-btn:hover {
    background: #6d5a42 !important;
}


.dynamic-blog-category-link::before {
    content: '→';
    position: absolute;
    left: 17px;
   
    transition: all 0.3s ease;
    color: #B8A188;
}

.dynamic-blog-category-link:hover, 
.dynamic-blog-category-link.active { 
   font-weight: 500;
   
    color: white;
    background: #B8A188;
}

.dynamic-blog-category-link:hover::before,
.dynamic-blog-category-link.active::before {
   color: white;
}

.dynamic-blog-category-count {
    background: #e8e8e8;
    color: #666;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.dynamic-blog-category-link.active .dynamic-blog-category-count {
    background: #B8A188;
    color: white;
}

/* Pagination */
.dynamic-blog-pagination { 
    text-align: center; 
    margin-top: 60px;
    margin-bottom: 40px;
}

/* .dynamic-blog-pagination button { 
    padding: 12px 20px; 
    margin: 0 5px; 
    background: none;
    cursor: pointer; 
    border-radius: 50%;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 50px;
} */

.dynamic-blog-pagination button:hover {
    border-color: #B8A188;
 background: white;
    color: #B8A188;
}

.dynamic-blog-pagination button.active { 
    background: #B8A188; 
    color: white; 
    border-color: #B8A188;
}
/* .dynamic-blog-pagination button{
    background: none;
    border: 0;
} */

.dynamic-blog-loading { 
    text-align: center; 
    padding: 60px; 
    color: #999;
    font-size: 1.1rem;
}


/* //pagination */

.dynamic-blog-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	margin: 30px 0;
	flex-wrap: wrap;
}

.dynamic-blog-pagination button {
	min-width: 35px;
    border: 0;
	height: 40px;
	color: #374151;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 14px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dynamic-blog-pagination button:hover:not(.disabled) {
	background: #f8fafc;
	border-color: #cbd5e1;
}
button.pagination-arrow {
    border: 2px solid #80808094;
        margin-inline: 30px;
}



.dynamic-blog-pagination button.disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.dynamic-blog-pagination .pagination-arrow {
	font-size: 18px;
	font-weight: bold;
}

.dynamic-blog-pagination .pagination-ellipsis {
	color: #9ca3af;
	font-size: 14px;
	padding: 0 4px;
	display: flex;
	align-items: center;
}

#custom_recentpost .elementor-post__text {
    display: flex !important;

}
#custom_recentpost h3.elementor-post__title {
    order: 2;
}
 #custom_recentpost .elementor-post__meta-data {
    order: 1;
    margin-bottom: 10px !important;
    line-height: 17px !important;
}
 #custom_recentpost a.elementor-post__read-more {
    order: 3;
    margin-top: 16px;
}
#custom_recentpost .elementor-posts-container{
    gap: 40px;
}
#custom_recentpost .elementor-posts-container>article{
    border-bottom: 1px solid #c0ab96;
    padding-bottom: 35px;
}
#custom_recentpost .elementor-posts-container>article:last-child{
    border-bottom: none;
}
div#custom_categories {
    width: 100%;
}
#custom_categories .menu-item {
    margin-top: 10px !important;
    
    padding-left: 30px !important;
}
#custom_categories .menu-item:hover{
    background:#c0ab96;
}
#custom_categories .menu-item:before {
    content: "🡪";
    position: absolute;
    height: 21px;
    color: #c0ab96;
    left: 24px;
    top: 18px;
    width: 21px;
}
#custom_categories .menu-item:hover::before {
    color: white;
}
#custom_recentpost h3.elementor-post__title>a:hover {
    color: #c0ab96;
    transition: all 120ms ease-in;
   
}
#commentform input#submit {
    background: #8a6e52;
    color: white;
    border: none;
    border-radius: 0;
    padding: 10px 115px;
        font-family: 'Dm Sans';
}
textarea#comment {
    border: none;
    border-bottom: 1px solid;
    height: 120px;
    outline: none;
}
form#commentform label {
    font-family: 'Dm Sans';
    font-size: 21px;
}
.elementor-element-59b08c8 p {
    margin: 0;
}
p.logged-in-as {
    font-family: 'Dm Sans';
    font-size: 18px;
    margin-bottom: 40px;
}
#comments p.comment-form-comment {
    margin-bottom: 40px;
}
p.logged-in-as>a {
    color: #8a6e52;
    
}
#comments .comment-body a {
    color: #8a6e52;
}
#comments .comment-meta {
    flex-wrap: wrap;
    gap: 20px;
}
.dynamic-blog-content a {
    text-decoration: none !important;
}
section#comments h2 {
    margin-top: 46px;
    font-family: "Times New Roman", Sans-serif;
    font-size: 47px;
    text-transform: uppercase;
    letter-spacing: -2px;
    font-weight: 400;
    line-height: 67px;
}
button.pagination-arrow:focus {
    background: #8a6e52;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required,
#custom_contactform .wpcf7-form textarea {
    padding-inline: 15px;
}
.mail_field_container{
    position: relative;
}

.form-column.mail_field_container>p>label {
    position: absolute;
    bottom: 38px;
    right: 40px;
    font-weight: 400;
   color: #9b9b9b;
}

p.secret_info {
    font-style: italic;
    font-family: 'DM Sans';
    font-size: 14px;
}
.availability-section h3, .availability-section .wpcf7-list-item-label {
    font-family: 'DM Sans';
}
#policies_sticky_nav {
        right: 0;
    max-width: 1980px;
    width: 100%;
  transition: all 0.3s ease;
}

div#cus_cont>b {
    width: 100%;
}
/* #title_sticker{
    width:100% !important;
} */


/* #fixed_navbar{
    left: 50%;
    transform: translatex(-50%);
} */


div#fixed_navbar {
        max-width: 1980px;
   left: 0;
    right: 0;
        margin-inline: auto;
}






@media(min-width:768px){
    #policies_sticky_nav {
        right: 0;
    max-width: 1980px;
    width: 100%;
}
    .form-row {
    
        align-items: end;
}
}
@media(min-width:2600px){
    div#hfe-flyout-content-id-2cc4af8.hfe-flyout-show {
    right: calc((100vw - 1610px) / 2) !important;
}
}
@media(max-width: 1366px){
    section#comments h2 {
    margin-top: 26px;
    font-size: 36px;
}
}

/* Responsive */
@media(max-width:1200px){
	.wpcf7-form {
    padding: 100px 80px 60px 80px;
}
}




/* Responsive Design */
@media (max-width: 1024px) { 
    .dynamic-blog-grid { 
        grid-template-columns: 1fr; 
        gap: 40px;
    }
    
    .dynamic-blog-sidebar {
        order: -1;
        position: static;
    }
    
    .dynamic-blog-posts { 
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    }
      section#comments h2 {
    margin-top: 16px;
    font-size: 30px;
    letter-spacing: -1px;
}
#commentform input#submit {
   
    padding: 10px 80px;
}
}

@media (max-width: 768px) {
    #wpcf7-f93-p63-o1 .form-column {
    
    width: 100%;
}
    #custom_contactform .submit-btn {
    padding-inline: 20px;
    width: 90%;
}
        .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .wpcf7-form {
        padding: 20px;
    }
    
    .wpcf7-form .wpcf7-checkbox {
        gap: 10px;
    }
    .dynamic-blog-pagination {
		gap: 4px;
	}
	
	.dynamic-blog-pagination button {
		min-width: 36px;
		height: 36px;
		font-size: 13px;
	}
    .dynamic-blog-container {
        padding: 0 15px;
    }
    
    .dynamic-blog-posts { 
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .dynamic-blog-image {
        height: 380px;
    }
    
    .dynamic-blog-title {
        font-size: 1.3rem;
    }
    
    .dynamic-blog-sidebar {
        padding: 30px 20px;
    }
    
    .dynamic-blog-sidebar-title {
        font-size: 1.5rem;
    }
    .dynamic-blog-posts {
   
    padding-left: 0px;
}
}
@media (max-width: 767px){
 #custom_recentpost article{
    flex-direction: column;
            gap: 20px;
}
}

@media(max-width:540px){
    #details_feat, #privacy_matters, #insurance_info, #schedulecancel, #stay_connected {
    scroll-margin-top: 110px;
}
    div#blog_hero_section {
    background-size: 580px;
}
    .dynamic-blog-image {
    height: 240px;
}
    .dynamic-blog-pagination button {
    min-width: unset;
    height: 28px;
    font-size: 14px;
    width: 28px;
    padding: 11px;
}
    button.pagination-arrow {
   
    margin-inline: 0px;
}
    a.dynamic-blog-category-link {
    font-size: 19px;
}
    .dynamic-blog-sidebar {
    padding: 0;
}
    #comments p.form-submit {
    display: flex;
    justify-content: center;
}
#commentform input#submit {
    padding: 10px 40px;
    width: 90%;
}
section#comments h2 {
   
    line-height: 30px;
}
}
/* @media(max-width:330px){
    .dynamic-blog-main {
    width: 90%;
}
.dynamic-blog-pagination.pagination-container {
    width: 110%;
}
} */

@media(max-width: 330px){
    span input, span textarea {
    padding-inline: 0 !important;
}
}