/* Accomplishments View Styles */

/* Container */
.accomplishments-container {
    padding: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

/* Empty State */
.accomplishments-container__empty {
    text-align: center;
    color: #777;
    margin-top: 20px;
}

/* Accomplishment Card */
.accomplishment-card {
    background: var(--theme-card-bg);
    border: 1px solid var(--theme-card-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease;
}

.accomplishment-card:hover {
    box-shadow: var(--theme-card-shadow);
}

/* Header */
.accomplishment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--theme-border-color);
}

.accomplishment-title {
    margin: 0;
    font-size: 1.25rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--theme-text-primary);
    flex: 1;
}

.accomplishment-date {
    font-size: 0.875rem;
    color: var(--theme-text-secondary);
    font-weight: 500;
    background: var(--theme-bg-tertiary);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    margin-left: var(--space-md);
}

/* Description */
.accomplishment-description {
    color: var(--theme-text-primary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

/* Details */
.accomplishment-details {
    background: var(--theme-bg-secondary);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.accomplishment-details>div {
    margin-bottom: 8px;
    color: var(--theme-text-primary);
    font-size: 0.9rem;
}

.accomplishment-details>div:last-child {
    margin-bottom: 0;
}

.accomplishment-details strong {
    color: var(--theme-text-primary);
    font-weight: 600;
}

/* Footer */
.accomplishment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--theme-border-color);
    font-size: 0.9rem;
}

.accomplishment-footer strong {
    color: var(--theme-text-primary);
    font-weight: 600;
}

.accomplishment-footer span {
    color: var(--theme-text-secondary);
}