.ce-tender-wrapper {
    max-width: 100%;
    margin: 20px 0;
}

.ce-tender-card {
    display: flex;
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ce-tender-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.ce-tender-accent { width: 6px; flex-shrink: 0; }
.status-active .ce-tender-accent { background: #2ecc71; }
.status-closed .ce-tender-accent { background: #e74c3c; }

.ce-tender-main { flex: 1; padding: 20px; }
.ce-t-date { font-size: 12px; color: #888; }
.ce-t-title { margin: 5px 0 10px 0; color: #333; font-size: 17px; font-weight: 700; line-height: 1.3; }
.ce-t-excerpt { color: #666; font-size: 14px; line-height: 1.5; }

.ce-tender-action {
    width: 180px;
    padding: 20px;
    background: #fafbfc;
    border-left: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ce-status-indicator { display: flex; align-items: center; margin-bottom: 12px; }
.ce-lamp { width: 9px; height: 9px; border-radius: 50%; margin-right: 7px; }

.status-active .ce-lamp { 
    background: #2ecc71; 
    box-shadow: 0 0 6px #2ecc71; 
    animation: pulseLamp 2s infinite; 
}
.status-closed .ce-lamp { background: #e74c3c; }

.ce-status-text { font-size: 11px; font-weight: 700; text-transform: uppercase; }
.status-active .ce-status-text { color: #2ecc71; }
.status-closed .ce-status-text { color: #e74c3c; }

.ce-btn-tender {
    text-decoration: none;
    background: #005b99;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    transition: 0.2s;
}

.ce-btn-tender.secondary { background: #7f8c8d; }
.ce-btn-tender:hover { filter: brightness(1.1); }

@keyframes pulseLamp {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

@media (max-width: 768px) {
    .ce-tender-card { flex-direction: column; }
    .ce-tender-action { width: 100%; border-left: none; border-top: 1px solid #eee; }
}