/* Styling for Comment Edit Box - Customization */
.comment-edit {
    margin-top: 10px; /* Add some space above the edit box */
    padding: 0 20px 0 0;
    border-radius: 8px;
    background-color: transparent;
}

.comment-edit textarea.edit-box,
.comment-edit textarea.form-control {
    background-color: #19242b; /* Dark background for the textarea */
    color: #cdd3d6; /* Lighter text color for better readability, #7e909b can be too dark on a dark bg */
    border: 1px solid #283842; /* Subtle border */
    border-radius: 8px; /* Rounded corners */
    padding: 10px;
    width: 100%;
    min-height: 80px; /* A decent minimum height */
    box-shadow: none; /* Remove default shadows */
    transition: all 0.3s ease; /* Smooth transition for focus */
}

.comment-edit textarea.edit-box:focus,
.comment-edit textarea.form-control:focus {
    border-color: #a952ec; /* Purple border on focus */
    box-shadow: 0 0 5px rgba(169, 82, 236, 0.5); /* Soft purple glow on focus */
    outline: none; /* Remove default browser outline */
}

/* Cancel Edit Button Styling */
.comment-edit .btn-default {
    margin-top: 10px;
    float: right;
    background-color: #7e909b;
    color: white;
    border: none;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
}
.comment-edit .btn-default:hover {
    background-color: #91a1ab;
    color: white;
}

/* Adjusting comment-edit container to clear the floated button */
.comment-edit {
    overflow: auto;
}
/* ================================== */
/* Modal Redesign (Layout-Myc Style)  */
/* ================================== */

.modal-content {
    background-color: #19242b;
    color: #cdd3d6;
    border: 1px solid #283842;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.modal-header {
    background-color: #0b0f14;
    border-bottom: 1px solid #283842;
    padding: 15px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.modal-header .modal-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.modal-header .close {
    color: #fff;
    opacity: 0.7;
    text-shadow: none;
}
.modal-header .close:hover {
    color: #a952ec;
    opacity: 1;
}

.modal-body {
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.modal-body p {
    color: #cdd3d6;
}

.modal-footer {
    background-color: #19242b;
    border-top: 1px solid #283842;
    padding: 15px;
    text-align: right;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

.modal-footer .btn {
    border: none;
    border-radius: 5px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modal-footer .btn-default {
    background-color: #7e909b;
    color: #fff;
}
.modal-footer .btn-default:hover {
    background-color: #91a1ab;
}

.modal-footer .btn.main,
.modal-footer .btn-danger {
    background-color: #a952ec;
    color: #fff;
}
.modal-footer .btn.main:hover,
.modal-footer .btn-danger:hover {
    background-color: #8A41BF;
}

/* ===================================== */
/* Redesign for Publisher Page (/publicar) - V2 */
/* ===================================== */

/* Apply dark background to the page */
body.page-publicar,
body.page-publicar .content-container {
    background-color: #0b0f14;
}

/* Painel visível do publicador (.panel está dentro do form, não no form) */
#publisher-box-focus .panel.sun_pub_box {
    background-color: #19242b;
    border: 1px solid #283842;
    box-shadow:
        0 2px 12px rgba(124, 58, 237, 0.28),
        0 6px 28px rgba(124, 58, 237, 0.14),
        0 1px 3px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

/* Publisher name */
#publisher-box-focus .sun_pub_name span {
    color: #a9b6bf;
}

/* Main Textarea (cores finas em theme-brand.css — aqui fundo/borda) */
#publisher-box-focus textarea.postText {
    background-color: #0b0f14;
    border: 1px solid #283842;
    border-radius: 8px;
}
#publisher-box-focus textarea.postText::placeholder {
    opacity: 1;
}
#publisher-box-focus textarea.postText:focus {
    border-color: #a952ec;
    box-shadow: 0 0 5px rgba(169, 82, 236, 0.5);
}

/* Action buttons container (Photos, Video, etc.) */
#publisher-box-focus .sun_pub_mid_foot {
    border-top: 1px solid #283842;
}

/* Individual action buttons */
#publisher-box-focus .sun_pub_mid_foot .poster-left-buttons .btn {
    background-color: #283842 !important;
    color: #cdd3d6;
    border-radius: 5px;
}
#publisher-box-focus .sun_pub_mid_foot .poster-left-buttons .btn:hover {
    background-color: #3a4c57 !important;
    color: #fff;
}
#publisher-box-focus .sun_pub_mid_foot .poster-left-buttons .btn svg.wo-pub-stroke-ico,
#publisher-box-focus .sun_pub_mid_foot .poster-left-buttons .btn svg.wo-pub-stroke-ico * {
    fill: none !important;
    stroke: currentColor !important;
}
#publisher-box-focus .sun_pub_mid_foot .poster-left-buttons .btn svg:not(.wo-pub-stroke-ico) {
    color: inherit;
}
#publisher-box-focus .sun_pub_mid_foot .poster-left-buttons .btn svg:not(.wo-pub-stroke-ico) path {
    fill: currentColor !important;
}
#publisher-box-focus .sun_pub_mid_foot .poster-left-buttons .btn:hover svg:not(.wo-pub-stroke-ico) path {
    fill: #fff !important;
}

/* Modo simplificado: mesma vista que “expandido”, sem pub-focus no body */
#publisher-box-focus.wo-publisher-simplified .publisher-box-footer {
    display: block !important;
}
#publisher-box-focus.wo-publisher-simplified textarea.postText {
    padding: 16px 45px 10px 60px !important;
    min-height: 112px !important;
}
#publisher-box-focus.wo-publisher-simplified .sun_pub_name {
    display: none !important;
}
#publisher-box-focus.wo-publisher-simplified .sun_pub_mid_foot .poster-left-buttons {
    max-width: 33.3333333333%;
    min-width: 33.3333333333%;
    margin: 0;
}
#publisher-box-focus.wo-publisher-simplified .sun_pub_mid_foot .poster-left-buttons .btn {
    width: 100%;
    margin: 0 5px;
}
#publisher-box-focus.wo-publisher-simplified .sun_pub_mid_foot .poster-left-buttons .btn.mor {
    display: none !important;
}
#publisher-box-focus.wo-publisher-simplified .sun_pub_mid_foot:not(:has(.poster-left-buttons)):not(:has(.all_colors)) {
    display: none !important;
    border: none;
    margin: 0;
    padding: 0;
}
#publisher-box-focus.wo-publisher-simplified .sun_pub_more {
    align-items: flex-start;
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 10px;
}

/* Rodapé expandido: grelha de mais opções */
#publisher-box-focus .publisher-box-footer {
    background-color: #19242b;
    border-top: 1px solid #283842;
}
#publisher-box-focus .sun_pub_more {
    justify-content: center;
    padding: 6px 4px 14px;
    row-gap: 4px;
}
#publisher-box-focus .sun_pub_more_items {
    margin: 6px 12px;
}
#publisher-box-focus .sun_pub_more_items .btn {
    color: #cdd3d6;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.25;
    text-align: center;
}
#publisher-box-focus .sun_pub_more_items .btn:hover {
    color: #fff;
}
#publisher-box-focus .sun_pub_more_items .btn > span {
    width: 40px !important;
    height: 40px !important;
    padding: 8px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #283842 !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-sizing: border-box !important;
}
#publisher-box-focus .sun_pub_more_items .btn:hover > span {
    background: #3a4c57 !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}
#publisher-box-focus .sun_pub_more_items .btn.img span,
#publisher-box-focus .sun_pub_more_items .btn.gif span,
#publisher-box-focus .sun_pub_more_items .btn.rec span,
#publisher-box-focus .sun_pub_more_items .btn.fel span,
#publisher-box-focus .sun_pub_more_items .btn.fil span,
#publisher-box-focus .sun_pub_more_items .btn.sel span,
#publisher-box-focus .sun_pub_more_items .btn.loc span,
#publisher-box-focus .sun_pub_more_items .btn.aud span {
    background: #283842 !important;
}
#publisher-box-focus .sun_pub_more_items .btn svg.wo-pub-stroke-ico,
#publisher-box-focus .sun_pub_more_items .btn svg.wo-pub-stroke-ico * {
    fill: none !important;
    stroke: currentColor !important;
}
#publisher-box-focus .sun_pub_more_items .btn svg:not(.wo-pub-stroke-ico) path {
    fill: currentColor !important;
    stroke: none !important;
}
#publisher-box-focus .sun_pub_more_items .btn svg {
    width: 22px;
    height: 22px;
    color: inherit;
}

/* Ícone + nome na mesma linha (evita column do style.css global) */
#publisher-box-focus .sun_pub_mid_foot .poster-left-buttons .btn,
#publisher-box-focus .publisher-box-footer .poster-left-buttons .btn {
    flex-direction: row !important;
    flex-wrap: nowrap;
    align-items: center !important;
    justify-content: center;
    gap: 8px;
}
#publisher-box-focus .sun_pub_mid_foot .poster-left-buttons .btn > span:first-child,
#publisher-box-focus .publisher-box-footer .poster-left-buttons .btn > span:first-child {
    margin-bottom: 0 !important;
    flex-shrink: 0;
}
#publisher-box-focus .sun_pub_more_items .poster-left-buttons .btn.btn-file,
#publisher-box-focus .sun_pub_more_items a.btn.btn-file {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start;
    gap: 8px;
    text-align: left;
}
#publisher-box-focus .sun_pub_more_items .btn > span:first-of-type {
    margin-bottom: 0 !important;
}


@media (max-width: 480px) {
    body.pub-focus #publisher-box-focus .sun_pub_mid_foot .poster-left-buttons .btn,
    #publisher-box-focus.wo-publisher-simplified .sun_pub_mid_foot .poster-left-buttons .btn {
        background-color: transparent !important;
        color: #cdd3d6;
    }
    body.pub-focus #publisher-box-focus .sun_pub_mid_foot .poster-left-buttons .btn:hover,
    #publisher-box-focus.wo-publisher-simplified .sun_pub_mid_foot .poster-left-buttons .btn:hover {
        color: #fff;
    }
    body.pub-focus #publisher-box-focus .sun_pub_mid_foot .poster-left-buttons .btn:not(.gif),
    #publisher-box-focus.wo-publisher-simplified .sun_pub_mid_foot .poster-left-buttons .btn:not(.gif) {
        text-transform: capitalize;
    }
    body.pub-focus #publisher-box-focus .sun_pub_mid_foot .poster-left-buttons .btn.gif,
    #publisher-box-focus.wo-publisher-simplified .sun_pub_mid_foot .poster-left-buttons .btn.gif {
        text-transform: uppercase;
    }
    body.pub-focus #publisher-box-focus .sun_pub_mid_foot .poster-left-buttons .btn svg,
    #publisher-box-focus.wo-publisher-simplified .sun_pub_mid_foot .poster-left-buttons .btn svg {
        margin: 0 auto 6px !important;
        width: 40px !important;
        height: 40px !important;
        padding: 8px !important;
        box-sizing: border-box !important;
        border-radius: 50% !important;
        background: #283842 !important;
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
        color: #cdd3d6 !important;
    }
    body.pub-focus #publisher-box-focus .sun_pub_mid_foot .poster-left-buttons .btn:hover svg,
    #publisher-box-focus.wo-publisher-simplified .sun_pub_mid_foot .poster-left-buttons .btn:hover svg {
        background: #3a4c57 !important;
        color: #fff !important;
    }
    body.pub-focus #publisher-box-focus .sun_pub_mid_foot .poster-left-buttons .btn svg.wo-pub-stroke-ico path,
    body.pub-focus #publisher-box-focus .sun_pub_mid_foot .poster-left-buttons .btn svg.wo-pub-stroke-ico circle,
    body.pub-focus #publisher-box-focus .sun_pub_mid_foot .poster-left-buttons .btn svg.wo-pub-stroke-ico line,
    body.pub-focus #publisher-box-focus .sun_pub_mid_foot .poster-left-buttons .btn svg.wo-pub-stroke-ico polyline,
    body.pub-focus #publisher-box-focus .sun_pub_mid_foot .poster-left-buttons .btn svg.wo-pub-stroke-ico rect,
    #publisher-box-focus.wo-publisher-simplified .sun_pub_mid_foot .poster-left-buttons .btn svg.wo-pub-stroke-ico path,
    #publisher-box-focus.wo-publisher-simplified .sun_pub_mid_foot .poster-left-buttons .btn svg.wo-pub-stroke-ico circle,
    #publisher-box-focus.wo-publisher-simplified .sun_pub_mid_foot .poster-left-buttons .btn svg.wo-pub-stroke-ico line,
    #publisher-box-focus.wo-publisher-simplified .sun_pub_mid_foot .poster-left-buttons .btn svg.wo-pub-stroke-ico polyline,
    #publisher-box-focus.wo-publisher-simplified .sun_pub_mid_foot .poster-left-buttons .btn svg.wo-pub-stroke-ico rect {
        fill: none !important;
        stroke: currentColor !important;
    }
    body.pub-focus #publisher-box-focus .sun_pub_mid_foot .poster-left-buttons .btn svg:not(.wo-pub-stroke-ico) path,
    #publisher-box-focus.wo-publisher-simplified .sun_pub_mid_foot .poster-left-buttons .btn svg:not(.wo-pub-stroke-ico) path {
        fill: currentColor !important;
    }
}

/* Footer with Share button */
#publisher-box-focus .pub-footer-bottom {
    background-color: #19242b;
    border-top: 1px solid #283842;
}

/* Main Share button */
#publisher-button.btn-main {
    background-color: #a952ec;
    color: #fff;
    border: none;
    border-radius: 5px;
}
#publisher-button.btn-main:hover {
    background-color: #8A41BF;
}

/* Dropdown for emojis */
#publisher-box-focus .add-emoticons .dropdown-toggle {
    background-color: #283842;
}
#publisher-box-focus .add-emoticons .dropdown-toggle svg {
    fill: #cdd3d6;
}
/* Notification Redesign Styles */
.notification-list {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Vertically align items */
    position: relative;
    padding: 10px 15px;
    border-bottom: 1px solid #283842; /* Subtle separator */
    background-color: #19242b; /* Default background */
    transition: background-color 0.2s ease-in-out;
}

/* Dropdown de mensagens: avatar + texto são filhos diretos (sem <a> envolvendo) */
.notification-list.messages-list {
    gap: 12px;
}

.messages-list .notification-text {
    min-width: 0;
    flex: 1 1 auto;
}

.notification-list:hover {
    background-color: #283842; /* Slightly darker on hover */
}

/* Não lidas: marcador verde à direita (sem fundo diferente do tema) */
.notification-list.unread {
    background-color: #19242b;
    border-left: none;
}
.notification-list .wo-notif-unread-marker {
    display: inline-block;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    border-radius: 50%;
    background: #22c55e;
    background: var(--wo-online, #22c55e);
    box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.35);
    pointer-events: none;
    z-index: 2;
    vertical-align: middle;
}
/* Página /notifications (fundo claro): bolinha visível */
.notification-list-page .notification-list {
    overflow: visible;
}
.notification-list-page .notification-list .wo-notif-unread-marker {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 3px rgba(11, 15, 20, 0.12);
}
[dir="rtl"] .notification-list .wo-notif-unread-marker {
    right: auto;
    left: 14px;
}
[dir="rtl"] .notification-list a {
    padding-right: 0;
    padding-left: 36px;
}

.notification-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit; /* Inherit color from parent */
    width: 100%;
    padding-right: 36px;
    box-sizing: border-box;
}

.notification-list.wo-notif-rich .wo-notif-rich__link {
    width: auto;
    flex: 1 1 auto;
    padding-right: 0;
    min-width: 0;
}

.notification-list.wo-notif-rich {
    align-items: stretch;
}

.notification-avatar-wrapper {
    position: relative;
    flex-shrink: 0; /* Prevent avatar from shrinking */
    margin-right: 10px;
}

/* Alinhar com style.css (56×56 no img): o wrapper não pode ser 40×40 com borda —
   senão o placeholder maior “vaza”, sobrepõe o texto e parece um duplo círculo. */
.notification-user-avatar {
    flex-shrink: 0;
    width: 56px;
    min-width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    border: none;
    background: transparent;
    border-radius: 0;
}

.notification-list .notification-user-avatar .wo-user-avatar-placeholder,
.notification-list .notification-user-avatar .wo-avatar-img,
.messages-list .notification-user-avatar .wo-user-avatar-placeholder,
.messages-list .notification-user-avatar .wo-avatar-img {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.notification-list .notification-user-avatar .wo-user-avatar-placeholder,
.notification-list .notification-user-avatar .wo-avatar-img,
.messages-list .notification-user-avatar .wo-user-avatar-placeholder,
.messages-list .notification-user-avatar .wo-avatar-img {
    box-sizing: border-box;
    border: 1px solid rgba(58, 76, 87, 0.85);
}

.notification-list .notification-user-avatar .wo-user-avatar-placeholder__letter,
.messages-list .notification-user-avatar .wo-user-avatar-placeholder__letter {
    background: transparent !important;
    box-shadow: none !important;
}

/* Badge “open to work” (LinkedIn): segundo <span> dentro do avatar */
.notification-user-avatar > span:not(.wo-user-avatar-placeholder) {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    padding: 0;
    border-radius: 50%;
    background: rgba(25, 36, 43, 0.92);
    border: 1px solid rgba(58, 76, 87, 0.85);
    box-sizing: border-box;
}

.notification-user-avatar > span:not(.wo-user-avatar-placeholder) svg {
    width: 12px !important;
    height: 12px !important;
    margin: 0 !important;
}

[dir="rtl"] .notification-user-avatar > span:not(.wo-user-avatar-placeholder) {
    right: auto;
    left: 0;
}

/* Texto ao lado do avatar: pode encolher dentro da linha flex */
.notification-list .notification-text {
    min-width: 0;
    flex: 1 1 auto;
}

.notification-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #4caf50; /* Green for "open to work" */
    border-radius: 50%;
    padding: 2px;
    line-height: 1;
    border: 1px solid #19242b; /* Match notification list background */
}

.notification-badge svg {
    width: 12px;
    height: 12px;
    vertical-align: middle;
}

.notification-content {
    flex-grow: 1; /* Allow content to take available space */
    display: flex;
    flex-direction: column;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px; /* Small space between header and body */
}

.notification-sender-name {
    font-weight: 600;
    color: #cdd3d6; /* Prominent color for sender name */
    font-size: 14px;
}

.notification-time {
    font-size: 12px;
    color: #7e909b; /* Subtler color for time */
    flex-shrink: 0; /* Prevent time from shrinking */
}

.notification-body {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #cdd3d6; /* Default text color */
}

.notification-body svg,
.notification-body .inline_post_emoji { /* Target existing inline SVG/emoji containers */
    margin-right: 5px;
    width: 18px; /* Adjust icon size */
    height: 18px;
    flex-shrink: 0;
}

.notification-body .inline_post_emoji img {
    width: 100%;
    height: 100%;
}

.notification-text-message {
    line-height: 1.4;
}

/* Adjust divider style if needed */
li.divider {
    border-color: #283842; /* Match other borders */
    margin: 0; /* Remove default margin */
}

/* Override existing notification icon styles if necessary */
.notification-time.active {
    display: none; /* Hide old icon container if it conflicts */
}

/* General adjustments for notification dropdown */
.dropdown-menu.notification-container {
    padding: 0;
    border: 1px solid #283842;
    border-radius: 8px;
    background-color: #19242b;
}

.dropdown-menu.notification-container li:last-child .notification-list {
    border-bottom: none; /* No border for the last item */
}

.dropdown-menu.notification-container li.divider:last-of-type {
    display: none; /* Hide the last divider */
}

.dropdown-menu.notification-container .empty_state {
    padding: 20px;
    text-align: center;
    color: #7e909b;
}

.dropdown-menu.notification-container .empty_state svg {
    fill: #7e909b;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.dropdown-menu.notification-container .empty_state .single {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Specific overrides for the notification dropdown to ensure visibility and positioning */
.navbar-default li.dropdown.notification-container {
    position: relative; /* Ensure dropdown menu is positioned relative to this parent */
}

/* Removed forced visibility, let Bootstrap handle open/close */
.notifications-dropdown {
    opacity: 0;
    visibility: hidden;
    display: block; /* Keep display block for transition, but rely on opacity/visibility */
    transition: opacity 150ms cubic-bezier(0.4, 0.0, 0.2, 1) 0ms, transform 150ms cubic-bezier(0.4, 0.0, 0.2, 1) 0ms;
    transform: translateY(10px); /* Add a subtle animation */
}

.open > .notifications-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Make sure the scrollbar is visible if content overflows */
.notifications-dropdown ul {
    overflow-y: auto;
    max-height: 500px; /* Adjust as needed */
}

/* Multi-Image Carousel Styles */
.multi-image-carousel-wrapper {
    position: relative;
    width: 100%;
/*    padding-top: 15px; /* Space between text and carousel */
}

.multi-image-carousel {
    width: 100%;
}

.multi-image-carousel .carousel-item {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #000; /* Fallback for loading/empty areas */
}

.multi-image-carousel .carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain; /* Ensure image fits within its container */
    max-height: 500px; /* Limit height for large images */
}

/* Photo Count Overlay */
.carousel-photo-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 10;
}

/* Slick Carousel Custom Arrows */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s ease;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

.slick-next {
    right: 10px;
}

.slick-prev svg,
.slick-next svg {
    width: 24px;
    height: 24px;
    fill: currentColor; /* Use current color for SVG fill */
}

/* Hide default slick dots if desired (already set dots: false in JS) */
.slick-dots {
    display: none !important;
}

/*
 * Correção para Conflito de Layout (Flexbox vs Float)
 * Desativa o comportamento de float antigo para permitir que o Flexbox funcione corretamente.
 */
.notification-list .pull-left {
    float: none !important;
}

.notification-list .clear {
    display: none !important;
}

/* Post header: estado civil, cidade e género (discreto) */
.post .post-heading {
    min-height: 70px;
    height: auto;
}
.post .wow_shared_posts .post-heading {
    min-height: 65px;
    height: auto;
}
.post .post-heading .meta .wo-post-publisher-meta,
.post .post-heading .wo-post-publisher-meta {
    font-size: 12px;
    line-height: 1.35;
    color: #9197a3;
    margin-top: 2px;
    margin-bottom: 0;
    font-weight: 400;
}
/* Mesma tipografia da linha da hora (h6) */
.post .post-heading .meta > h6 {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;
}
.post .post-heading .meta > h6 .time,
.post .post-heading .meta > h6 .ajax-time {
    font-size: inherit;
    font-weight: inherit;
}
.post .post-heading .meta .wo-post-publisher-meta .wo-post-publisher-meta-sep,
.post .post-heading .wo-post-publisher-meta .wo-post-publisher-meta-sep {
    opacity: 0.85;
}
