/* ── Page Header ── */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 50px 0 40px;
}
.page-header h1 { font-size: 2.2rem; font-weight: 700; color: white; }
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.75);
    text-decoration: none; font-size: 14px;
}
.page-header .breadcrumb-item.active { color: white; }

/* ── Section ── */
.section-pad { padding: 80px 0; }
.title-line {
    width: 60px; height: 4px;
    background: var(--primary);
    border-radius: 2px; margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 700; color: var(--text-dark); margin-bottom: 8px;
}
.section-subtitle { color: var(--text-muted); font-size: 15px; }

/* ── Filter Tabs ── */
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
    padding: 8px 22px;
    border-radius: 50px;
    border: 1.5px solid var(--border-color);
    background: white;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ── Tender List ── */
.tender-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.tender-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.tender-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.tender-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}
.tender-status-dot.open   { background: #22C55E; }
.tender-status-dot.closed { background: #94A3B8; }

.tender-content { flex: 1; }
.tender-content h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}
.tender-status {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 50px;
    white-space: nowrap;
}
.tender-status.open {
    background: #DCFCE7;
    color: #16A34A;
}
.tender-status.closed {
    background: #F1F5F9;
    color: #64748B;
}
.tender-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}
.tender-actions { flex-shrink: 0; }

/* ── Downloads ── */
.downloads-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.download-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    text-decoration: none;
    transition: all 0.2s;
}
.download-item:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.download-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.download-icon.red { background: #FCEBEB; color: #A32D2D; }
.download-info { flex: 1; }
.download-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}
.download-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}
.download-btn {
    font-size: 16px;
    color: var(--primary);
}

/* ── Tender Notice ── */
.tender-notice {
    background: #FFF0E6;
    border: 1px solid #FAC775;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 13px;
    color: #633806;
    line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .section-pad { padding: 50px 0; }
    .tender-item { flex-direction: column; }
    .tender-actions { width: 100%; }
    .tender-actions .btn { width: 100%; }
}