/**
 * Modern Listing Style for listing-tb-1
 * Minimal yet elegant card design with separators
 * 
 * @package Publisher_Child
 * @since 1.0.0
 */

/* ==========================================================================
   Card Container with Separator
   ========================================================================== */

.listing-tb-1 .listing-item-tb-1 {
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden;
    border-bottom-color: #37415157;
    padding: 16px;
    background-color: #fff;
}

/* Hover Effect - Subtle Elevation */
.listing-tb-1 .listing-item-tb-1:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.listing-tb-1 .listing-item-tb-1 .post-meta .time {
    margin-right: 0 !important;
}

/* ==========================================================================
   Image Enhancement
   ========================================================================== */

.listing-tb-1 .featured-type-featured-image .img-holder {
    border-radius: 8px;
}

.listing-tb-1 .listing-item-tb-1:hover .featured-type-featured-image .img-holder {
    transform: scale(1.05);
}

/* ==========================================================================
   Typography
   ========================================================================== */

.listing-tb-1 .title {
    margin-top: 8px !important;
}

.listing-item .post-edit-link {
    border-radius: 4px;
}

.listing-tb-1 .title a {
    transition: color 0.2s ease;
}

/* ==========================================================================
   Meta Information
   ========================================================================== */

.listing-tb-1 .post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #6b7280;
    margin-top: 8px;
}

.listing-tb-1 .post-meta > * {
    display: flex;
    align-items: center;
}

/* ==========================================================================
   Category/Tag Badge
   ========================================================================== */

.listing-tb-1 .term-badge {
    display: inline-block;
    background: #f3f4f6;
    color: #374151;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* ==========================================================================
   Content Spacing
   ========================================================================== */

.listing-tb-1 .item-content {
    padding: 20px;
}

.listing-tb-1 .excerpt {
    color: #4b5563;
    line-height: 1.6;
    margin-top: 10px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media screen and (max-width: 768px) {
    .listing-tb-1 .listing-item-tb-1 {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .listing-tb-1 .item-content {
        padding: 16px;
    }
    
    .listing-tb-1 .listing-item-tb-1:hover {
        transform: translateY(-2px);
    }
}

