
.anniversary-nature {
    background: linear-gradient(to bottom, #f8faf7 0%, #ffffff 100%);
    border: 2px solid #d4e5d0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.nature-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e8f0e5;
}

.nature-header h4 {
    font-size: 22px;
    font-weight: 600;
    color: #2d5016;
    margin: 0 0 8px 0;
}

.nature-header .date {
    font-size: 14px;
    color: #5a7c3e;
    font-weight: 400;
}

.nature-section {
    margin-bottom: 20px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2d5016;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    padding-left: 5px;
}

.section-header .icon {
    font-size: 20px;
}

.personality-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.personality-item {
    background: white;
    border: 1px solid #e8f0e5;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: all 0.2s ease;
}

.personality-item:hover {
    border-color: #b8d4ab;
    box-shadow: 0 2px 8px rgba(93, 142, 60, 0.08);
}

.personality-photo {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e8f0e5;
    background: linear-gradient(135deg, #f0f7ed 0%, #e8f0e5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.personality-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.personality-photo .placeholder {
    font-size: 32px;
    color: #b8d4ab;
}

.personality-content {
    flex: 1;
}

.personality-name {
    font-size: 16px;
    font-weight: 600;
    color: #2d5016;
    margin: 0 0 8px 0;
}

.personality-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.personality-name a:hover {
    color: #5a7c3e;
}

.personality-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-line {
    font-size: 13px;
    color: #5a7c3e;
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-icon {
    font-size: 14px;
}

.age-badge {
    display: inline-block;
    background: #e8f0e5;
    color: #2d5016;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 5px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #d4e5d0;
    color: #2d5016;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.deathday-section .personality-item {
    border-color: #e5e5e5;
}

.deathday-section .personality-item:hover {
    border-color: #c5c5c5;
}

.deathday-section .personality-photo {
    border-color: #e5e5e5;
    background: linear-gradient(135deg, #f5f5f5 0%, #ececec 100%);
}

.deathday-section .age-badge {
    background: #f0f0f0;
    color: #666;
}

.deathday-section .section-header {
    color: #666;
}

.empty-message {
    text-align: center;
    padding: 30px 20px;
    color: #5a7c3e;
}

.empty-message .icon {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.empty-message p {
    font-size: 15px;
    margin: 0;
}

@media (max-width: 768px) {
    .anniversary-nature {
        padding: 18px;
    }
    
    .personality-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .personality-content {
        width: 100%;
    }
    
    .personality-details {
        align-items: center;
    }
}