/**
 * 厂商详情页专用样式
 */

.company-header-bg {
    background: linear-gradient(135deg, var(--html-bg) 0%, var(--card-bg) 100%);
    border-radius: 2rem;
    padding: 4rem 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.company-header-bg::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.03) 0%, transparent 70%);
    z-index: 0;
}

.company-logo-lg {
    width: 140px;
    height: 140px;
    object-fit: contain;
    background: var(--card-bg);
    padding: 1.25rem;
    border-radius: 2rem;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.company-logo-placeholder-lg {
    width: 140px;
    height: 140px;
    background: var(--card-bg);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.news-item {
    border-left: 4px solid transparent;
    transition: var(--transition-base);
    padding: 1.25rem 1.5rem !important;
}

.news-item:hover {
    background-color: var(--soft-blue);
    border-left-color: var(--primary-color);
    padding-left: 1.75rem !important;
}

.badge-soft-info {
    background: rgba(var(--info-color-rgb), 0.08);
    color: var(--info-color);
    border: 1px solid rgba(var(--info-color-rgb), 0.1);
}

.info-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.info-value {
    color: var(--text-color);
    font-weight: 600;
}
