.cpdoc-list,
.cpdoc-group {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.cpdoc-list {
display: flex;
flex-direction: column;
gap: 14px;
max-width: 1140px;
margin: 0 auto;
}
.cpdoc-card {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
background: #fafafa;
border: 1px solid #e5e5e5;
border-radius: 6px;
padding: 18px 20px;
}
.cpdoc-card-info {
flex: 1;
min-width: 0;
}
.cpdoc-card-title {
font-family: inherit;
font-weight: 700;
font-size: 15px;
line-height: 1.4;
color: #1a1a1a;
margin-bottom: 8px;
}
.cpdoc-card-tag {
display: inline-block;
font-family: inherit;
background: #e6e6e6;
color: #444;
font-size: 11px;
font-weight: 700;
padding: 3px 8px;
border-radius: 3px;
text-transform: none;
}
.cpdoc-btn {
flex-shrink: 0;
display: inline-block;
font-family: inherit;
background: var(--cpdoc-btn-bg, #8a1d2c);
color: var(--cpdoc-btn-text, #fff) !important;
text-decoration: none;
font-weight: 600;
font-size: 14px;
padding: 9px 22px;
border-radius: 4px;
transition: background .15s ease;
white-space: nowrap;
}
.cpdoc-btn:hover {
background: var(--cpdoc-btn-bg-hover, #6e1623);
color: var(--cpdoc-btn-text, #fff) !important;
}
.cpdoc-empty {
color: #777;
font-style: italic;
}
.cpdoc-group {
max-width: 1140px;
margin: 0 auto 32px;
}
.cpdoc-group-title {
font-size: 18px;
font-weight: 700;
color: var(--cpdoc-btn-bg, #8a1d2c);
margin: 0 0 14px;
padding-bottom: 8px;
border-bottom: 2px solid #e5e5e5;
}
@media (max-width: 600px) {
.cpdoc-card {
flex-direction: column;
align-items: stretch;
}
.cpdoc-btn {
text-align: center;
}
}