.elementor-kit-9{--e-global-color-primary:#C9010E;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-9b9341c:#C9010E;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;background-color:#FFFFFF;}.elementor-kit-9 button,.elementor-kit-9 input[type="button"],.elementor-kit-9 input[type="submit"],.elementor-kit-9 .elementor-button{background-color:#C9010E;font-family:"Roboto", Sans-serif;font-size:12px;font-weight:700;color:#FFFFFF;border-radius:0px 15px 0px 15px;}.elementor-kit-9 e-page-transition{background-color:#FFBC7D;}.elementor-kit-9 a{color:#FA3333;font-family:"Roboto", Sans-serif;}.elementor-kit-9 a:hover{color:#FF0000;}.elementor-kit-9 h1{color:#000000;font-family:"Roboto", Sans-serif;font-size:45px;font-weight:700;}.elementor-kit-9 h2{color:#181818;font-family:"Roboto", Sans-serif;font-size:25px;}.elementor-kit-9 h3{color:#181818;font-family:"Roboto", Sans-serif;font-size:20px;}.elementor-kit-9 h4{color:#181818;font-family:"Roboto", Sans-serif;font-size:20px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1280px;}.e-con{--container-max-width:1280px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-9 h1{font-size:25px;}.elementor-kit-9 h2{font-size:20px;}.elementor-kit-9 h3{font-size:15px;}.elementor-kit-9 h4{font-size:15px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Container principal */
.posts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

/* Card individual */
.post-card {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: auto !important; /* Será sobrescrito pelo JS */
}

/* Conteúdo do card */
.post-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Descrição limitada a 3 linhas */
.post-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    min-height: 4.2em; /* 3 linhas * 1.4 line-height */
}

/* Rodapé fixo */
.post-footer {
    margin-top: auto;
    padding: 10px 15px;
    border-top: 1px solid #eee;
}/* End custom CSS */