/**
 * Social Contribution - Frontend Styles
 */

.sc-contribution-wrapper {
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* 헤더 */
.sc-contribution-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #bababa;
}

.sc-contribution-title {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: #bd9b5c;
}

/* 리스트 */
.sc-contribution-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sc-contribution-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.sc-contribution-item:last-child {
    border-bottom: none;
}

/* 불렛 */
.sc-item-bullet {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    margin-top: 6px;
}

/* 날짜 */
.sc-item-date {
    min-width: 70px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* 내용 */
.sc-item-content {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

/* 날짜 없는 경우 */
.sc-item-date:empty {
    display: none;
}

.sc-item-date:empty + .sc-item-content {
    margin-left: 0;
}

/* 반응형 */
@media (max-width: 768px) {
    .sc-contribution-title {
        font-size: 20px;
    }
    
    .sc-contribution-item {
        flex-wrap: wrap;
    }
    
    .sc-item-date {
        min-width: auto;
    }
    
    .sc-item-content {
        width: 100%;
        padding-left: 20px;
    }
}

/* 인쇄 스타일 */
@media print {
    .sc-contribution-wrapper {
        margin: 10px 0;
    }
    
    .sc-contribution-item {
        page-break-inside: avoid;
    }
    
    .sc-item-bullet {
        border: 1px solid #333;
        background: transparent !important;
    }
}
