/* QuadMenu Category Posts - Custom Styles */

/* Category post items in dropdown */
.quadmenu-item-type-category-post {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.quadmenu-item-type-category-post:last-child {
    border-bottom: none;
}

.quadmenu-item-type-category-post .quadmenu-item-link {
    display: flex;
    align-items: flex-start;
    padding: 12px 15px;
    transition: background-color 0.2s ease;
}

.quadmenu-item-type-category-post .quadmenu-item-link:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

/* Thumbnail styling */
.quadmenu-item-type-category-post .quadmenu-thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    margin-right: 12px;
    overflow: hidden;
    border-radius: 4px;
}

.quadmenu-item-type-category-post .quadmenu-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text wrapper */
.quadmenu-item-type-category-post .quadmenu-text-wrapper {
    flex: 1;
    min-width: 0;
}

/* Post title */
.quadmenu-item-type-category-post .quadmenu-text {
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 4px;
    color: #1d2327;
}

.quadmenu-item-type-category-post .quadmenu-item-link:hover .quadmenu-text {
    color: #2271b1;
}

/* Post excerpt (subtitle) */
.quadmenu-item-type-category-post .quadmenu-subtitle {
    display: block;
    font-size: 12px;
    line-height: 1.5;
    color: #646970;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Post date */
.quadmenu-item-type-category-post .quadmenu-post-date {
    display: block;
    font-size: 11px;
    color: #8c8f94;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quadmenu-item-type-category-post .quadmenu-thumbnail {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }
    
    .quadmenu-item-type-category-post .quadmenu-text {
        font-size: 13px;
    }
    
    .quadmenu-item-type-category-post .quadmenu-subtitle {
        font-size: 11px;
        -webkit-line-clamp: 1;
    }
}

/* No thumbnail variant */
.quadmenu-item-type-category-post:not(.quadmenu-has-image) .quadmenu-text-wrapper {
    padding-left: 0;
}
