/* ============================================
   COMPONENT STYLES - Shared Components
   ============================================ */

/* Breadcrumb Styles */
.breadcrumb-nav {
    margin-bottom: 0;
    padding: 10px 0;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.breadcrumb-list {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    font-size: 14px;
    gap: 0;
}

.breadcrumb-item {
    color: #9ca3af;
    display: flex;
    align-items: center;
}

.breadcrumb-separator {
    color: #9ca3af;
    margin: 0 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-link:hover {
    color: #dc2626;
}

.breadcrumb-item.active {
    color: #1f2937;
    font-weight: 600;
}

/* Hero Component */
.hero-image {
    height: 500px;
    object-fit: cover;
}

.hero-placeholder {
    height: 500px;
}

.hero-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.hero-title-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Article Grid Component */
.article-grid-image-large {
    height: 400px;
    object-fit: cover;
}

.article-grid-image-small {
    height: 200px;
    object-fit: cover;
}

.article-grid-title-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.view-more-link {
    color: #dc2626;
    transition: color 0.2s;
}

.view-more-link:hover {
    color: #b91c1c;
}

/* Featured Articles Component */
.featured-image {
    width: 120px;
    height: 90px;
    object-fit: cover;
}

.featured-placeholder {
    width: 120px;
    height: 90px;
}

.featured-title-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

/* Trending List Component */
.trending-image {
    height: 300px;
    object-fit: cover;
}

.trending-placeholder {
    height: 300px;
}

.trending-summary-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

/* Category Articles Grid Component */
.category-article-image {
    height: 240px;
    object-fit: cover;
}

.category-article-placeholder {
    height: 240px;
}

.category-article-title-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.category-article-summary-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

/* Other Categories List Component */
.other-category-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.other-category-placeholder {
    width: 80px;
    height: 80px;
}

.other-category-title-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

/* Other States List Component Styles */
.other-state-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.other-state-placeholder {
    width: 80px;
    height: 80px;
}

.other-state-title-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

/* Ad Component */
.ad-container {
    margin: 20px 0;
    text-align: center;
}

/* Image Placeholder */
.image-placeholder {
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder-text {
    color: #9ca3af;
}

